/* RetroRevive production fixes. Loaded after the main stylesheet. */

.header {
  background: #10140e;
}

.header .container {
  width: min(1480px, calc(100% - 56px));
}

.header-inner {
  min-height: 82px;
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr) auto;
  gap: 28px;
}

.brand {
  min-width: 0;
  display: flex;
  align-items: center;
}

.brand img,
.footer img {
  width: 300px;
  max-height: 76px;
  object-fit: contain;
  mix-blend-mode: screen;
}

.nav {
  min-width: 0;
}

.nav ul {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.2vw, 34px);
  width: 100%;
}

.nav a {
  display: flex;
  align-items: center;
  min-height: 44px;
  white-space: nowrap;
  color: rgba(241, 235, 221, .9);
  font-size: 12px;
  font-weight: 850;
  line-height: 1;
  letter-spacing: .075em;
}

.actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 16px;
}

.icon-btn {
  width: 34px;
  height: 34px;
}

.icon-btn svg {
  width: 25px;
  height: 25px;
}

.header-search-panel {
  display: none;
  border-top: 1px solid var(--rr-border);
  border-bottom: 1px solid var(--rr-border);
  background: rgba(16, 20, 14, .98);
}

.header-search-panel.is-open {
  display: block;
}

.header-search-panel__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  padding: 16px 0;
}

.header-search-panel input[type="search"] {
  min-height: 48px;
  border: 1px solid var(--rr-border);
  border-radius: 8px;
  background: rgba(0, 0, 0, .22);
  color: var(--rr-text);
  padding: 0 16px;
}

.product-grid,
.woocommerce ul.products,
.cgs-product-grid {
  align-items: stretch;
}

.woocommerce ul.products li.product,
.product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: rgba(20, 25, 18, .74);
}

.heart {
  display: none !important;
}

.product-image {
  aspect-ratio: 1.16;
}

.product-info {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px 22px 22px;
}

.meta {
  min-height: 18px;
  color: #c4b990;
  font-size: 11px;
  line-height: 1.15;
}

.product-title {
  margin: 10px 0 8px;
  font-size: 21px;
  line-height: 1.12;
}

.product-desc {
  min-height: 44px;
  margin: 0 0 18px;
  color: rgba(241, 235, 221, .72);
  font-size: 15px;
  line-height: 1.45;
}

.product-bottom {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: auto;
  align-items: end;
}

.product-bottom .price,
.woocommerce ul.products li.product .price {
  display: block;
  min-height: 34px;
  color: #6f864f;
  font-size: 26px;
  line-height: 1.1;
}

.product-bottom .price del,
.woocommerce ul.products li.product .price del {
  display: block;
  color: rgba(180, 191, 205, .75);
  font-size: 20px;
  line-height: 1.05;
}

.buy-now,
.woocommerce ul.products li.product .button.buy-now {
  width: 100%;
  min-height: 46px;
  border-color: var(--rr-accent);
  background: var(--rr-accent);
  color: var(--rr-text);
  font-size: 12px;
  text-align: center;
}

.buy-now.added {
  opacity: .75;
}

.added_to_cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  color: #c4b990;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.footer {
  background: #10140e;
}

.footer img {
  width: 260px;
  margin-bottom: 10px;
}

.rr-account {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.rr-account--split {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.rr-account-panel {
  border: 1px solid var(--rr-border);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(241, 235, 221, .04), rgba(241, 235, 221, .015));
  padding: clamp(24px, 4vw, 42px);
}

.rr-account-panel h1,
.rr-account-panel h2 {
  margin: 10px 0 12px;
}

.rr-account-panel p,
.rr-muted-link {
  color: var(--rr-muted);
}

.rr-form {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.rr-form label {
  color: var(--rr-muted);
  font-size: 14px;
}

.rr-check {
  display: flex !important;
  align-items: center;
  gap: 10px;
}

.rr-check input {
  width: auto !important;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation a {
  display: block;
  padding: 10px 0;
  color: var(--rr-muted);
}

.woocommerce-cart table.cart .product-remove a {
  color: #c4b990 !important;
}

@media (max-width: 1180px) {
  .header-inner {
    grid-template-columns: 250px minmax(0, 1fr) auto;
    gap: 20px;
  }

  .brand img {
    width: 250px;
  }

  .nav ul {
    gap: 16px;
  }

  .nav a {
    font-size: 11px;
  }
}

@media (max-width: 980px) {
  .header .container {
    width: min(100% - 28px, var(--rr-container));
  }

  .header-inner {
    grid-template-columns: 230px auto;
  }

  .brand img {
    width: 230px;
  }

  .nav {
    top: 82px;
  }

  .rr-account--split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .header-inner {
    grid-template-columns: 190px auto;
  }

  .brand img {
    width: 190px;
  }

  .header-search-panel__inner {
    grid-template-columns: 1fr;
  }
}

body .header .header-inner {
  min-height: 82px !important;
  display: grid !important;
  grid-template-columns: 300px minmax(0, 1fr) auto !important;
}

body .header .brand {
  flex: none !important;
  min-width: 0 !important;
}

body .header .brand img {
  width: 300px !important;
  max-height: 76px !important;
}

@media (max-width: 1180px) {
  body .header .header-inner {
    grid-template-columns: 250px minmax(0, 1fr) auto !important;
  }

  body .header .brand img {
    width: 250px !important;
  }
}

@media (max-width: 980px) {
  body .header .header-inner {
    grid-template-columns: 230px auto !important;
  }

  body .header .brand img {
    width: 230px !important;
  }
}

@media (max-width: 680px) {
  body .header .header-inner {
    grid-template-columns: 190px auto !important;
  }

  body .header .brand img {
    width: 190px !important;
  }
}

/* Final header tabs and clean logo treatment. */
body .header {
  background: #11140f !important;
}

body .header .header-inner {
  grid-template-columns: 310px minmax(620px, 1fr) 132px !important;
  min-height: 88px !important;
  gap: 24px !important;
}

body .header .brand img {
  width: 310px !important;
  max-height: 82px !important;
  mix-blend-mode: normal !important;
}

body .footer img {
  mix-blend-mode: normal !important;
}

body .header .nav ul {
  display: grid !important;
  grid-template-columns: repeat(6, minmax(92px, 1fr)) !important;
  gap: 8px !important;
  align-items: center !important;
}

body .header .nav li {
  min-width: 0 !important;
}

body .header .nav a {
  width: 100% !important;
  min-height: 42px !important;
  justify-content: center !important;
  border: 1px solid rgba(241, 235, 221, .12) !important;
  border-radius: 8px !important;
  background: rgba(241, 235, 221, .035) !important;
  color: rgba(241, 235, 221, .88) !important;
  font-size: 11px !important;
  font-weight: 850 !important;
  letter-spacing: .06em !important;
  text-align: center !important;
  transition: background .16s ease, border-color .16s ease, color .16s ease;
}

body .header .nav .current-menu-item > a,
body .header .nav a:hover {
  border-color: rgba(196, 185, 144, .42) !important;
  background: rgba(79, 97, 58, .34) !important;
  color: #f1ebdd !important;
}

body .header .actions {
  justify-content: flex-end !important;
  gap: 12px !important;
}

body .header .icon-btn {
  border: 1px solid rgba(241, 235, 221, .12) !important;
  border-radius: 8px !important;
  background: rgba(241, 235, 221, .035) !important;
}

body .header .icon-btn:hover {
  border-color: rgba(196, 185, 144, .42) !important;
  background: rgba(79, 97, 58, .34) !important;
}

/* Final account/register view. */
.rr-account {
  max-width: 1180px;
  margin: 0 auto;
}

.rr-account--split {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  align-items: stretch;
}

.rr-account-panel {
  position: relative;
  overflow: hidden;
  border-color: rgba(196, 185, 144, .22);
  background:
    linear-gradient(135deg, rgba(79, 97, 58, .22), transparent 44%),
    linear-gradient(180deg, rgba(241, 235, 221, .055), rgba(241, 235, 221, .018));
  box-shadow: 0 24px 70px rgba(0, 0, 0, .26);
}

.rr-account-panel h1,
.rr-account-panel h2 {
  font-size: clamp(34px, 4vw, 54px);
}

.rr-form input[type="text"],
.rr-form input[type="email"],
.rr-form input[type="password"] {
  min-height: 52px;
  border: 1px solid rgba(241, 235, 221, .14);
  border-radius: 8px;
  background: rgba(0, 0, 0, .22);
  color: var(--rr-text);
  padding: 0 16px;
}

.rr-form input:focus {
  border-color: rgba(196, 185, 144, .55);
  outline: none;
}

.rr-form .button {
  width: 100%;
  margin-top: 8px;
}

.rr-muted-link {
  display: inline-flex;
  margin-top: 4px;
  color: #c4b990;
}

@media (max-width: 1240px) {
  body .header .header-inner {
    grid-template-columns: 260px minmax(520px, 1fr) 120px !important;
  }

  body .header .brand img {
    width: 260px !important;
  }

  body .header .nav a {
    font-size: 10px !important;
    letter-spacing: .045em !important;
  }
}

@media (max-width: 980px) {
  body .header .header-inner {
    grid-template-columns: 230px auto !important;
  }

  body .header .nav {
    top: 88px !important;
  }

  body .header .nav ul {
    grid-template-columns: 1fr !important;
  }

  .rr-account--split {
    grid-template-columns: 1fr !important;
  }
}

/* Back to the cleaner text menu. */
body .header .header-inner {
  grid-template-columns: 310px minmax(0, 1fr) 132px !important;
  gap: 30px !important;
}

body .header .nav ul {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: clamp(22px, 2.7vw, 42px) !important;
}

body .header .nav a {
  position: relative !important;
  width: auto !important;
  min-height: 44px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: rgba(241, 235, 221, .9) !important;
  font-size: 12px !important;
  font-weight: 850 !important;
  letter-spacing: .075em !important;
  text-align: center !important;
}

body .header .nav a::after {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 4px !important;
  height: 1px !important;
  background: #c4b990 !important;
  opacity: 0 !important;
  transform: scaleX(.35) !important;
  transition: opacity .16s ease, transform .16s ease !important;
}

body .header .nav .current-menu-item > a,
body .header .nav a:hover {
  border: 0 !important;
  background: transparent !important;
  color: #f1ebdd !important;
}

body .header .nav .current-menu-item > a::after,
body .header .nav a:hover::after {
  opacity: 1 !important;
  transform: scaleX(1) !important;
}

@media (max-width: 1240px) {
  body .header .header-inner {
    grid-template-columns: 260px minmax(0, 1fr) 120px !important;
  }

  body .header .nav ul {
    gap: clamp(14px, 1.8vw, 28px) !important;
  }

  body .header .nav a {
    font-size: 11px !important;
    letter-spacing: .055em !important;
  }
}

@media (max-width: 980px) {
  body .header .header-inner {
    grid-template-columns: 230px auto !important;
  }

  body .header .nav ul {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

body .header .nav a {
    justify-content: flex-start !important;
  }
}

/* Visual cleanup requested after review: fewer boxes, cleaner icons, better archives. */
body .header .icon-btn,
body .header .icon-btn:hover,
body .header .icon-btn:focus {
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #f1ebdd !important;
}

body .header .icon-btn:hover {
  color: #c4b990 !important;
}

body .header .cart-count .count {
  top: -7px !important;
  right: -9px !important;
  background: #6f864f !important;
  color: #f1ebdd !important;
}

.trust-strip {
  border: 0 !important;
  background: transparent !important;
}

.hero-card {
  border: 0 !important;
  box-shadow: none !important;
}

.trust-grid {
  border: 0 !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: clamp(22px, 4vw, 72px) !important;
  padding-block: clamp(42px, 6vw, 82px) !important;
}

.trust-item,
.trust-item:first-child {
  border: 0 !important;
  background: transparent !important;
  padding: 0 !important;
}

.trust-item svg {
  color: #c4b990 !important;
}

.trust-item strong {
  font-size: clamp(15px, 1.2vw, 20px) !important;
  letter-spacing: .09em !important;
}

.trust-item span {
  max-width: 260px !important;
}

.rr-shop-archive {
  overflow: hidden;
}

.rr-shop-hero {
  padding: clamp(56px, 7vw, 104px) 0 clamp(28px, 4vw, 56px);
  background:
    linear-gradient(90deg, rgba(17, 20, 15, .98), rgba(17, 20, 15, .82) 48%, rgba(17, 20, 15, .28)),
    url("../images/playstation-poster.png") center right / cover no-repeat;
}

.rr-shop-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 720px) auto;
  gap: clamp(28px, 5vw, 80px);
  align-items: end;
}

.rr-shop-hero h1,
.rr-legal-hero h1 {
  max-width: 760px;
  margin: 14px 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 6vw, 76px);
  line-height: .92;
}

.rr-shop-hero p,
.rr-legal-hero p {
  max-width: 660px;
  margin: 0;
  color: rgba(241, 235, 221, .74);
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.55;
}

.rr-shop-hero__meta {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  color: #c4b990;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.rr-shop-products {
  padding: clamp(36px, 5vw, 72px) 0 clamp(70px, 7vw, 110px);
}

.rr-shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
  color: rgba(241, 235, 221, .7);
}

.rr-shop-toolbar .woocommerce-result-count {
  margin: 0 !important;
}

.rr-shop-toolbar select {
  min-height: 42px;
  border: 0;
  border-bottom: 1px solid rgba(196, 185, 144, .42);
  border-radius: 0;
  background: transparent;
  color: #f1ebdd;
  padding: 0 6px;
}

.rr-shop-archive .woocommerce ul.products,
.rr-shop-archive ul.products {
  gap: clamp(28px, 3vw, 46px) !important;
}

.rr-shop-archive .woocommerce ul.products li.product,
.rr-shop-archive .product-card {
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.rr-shop-archive .product-image {
  overflow: hidden;
  border-radius: 8px;
  background: rgba(0, 0, 0, .2);
}

.rr-shop-archive .product-info {
  padding: 18px 0 0 !important;
}

.rr-shop-archive .product-title {
  font-size: clamp(20px, 1.7vw, 28px) !important;
}

.rr-shop-archive .product-desc {
  max-width: 340px;
}

.rr-shop-archive .buy-now,
.rr-shop-archive .woocommerce ul.products li.product .button.buy-now {
  width: auto !important;
  min-width: 150px;
  border: 0 !important;
  border-radius: 0 !important;
  border-bottom: 1px solid #c4b990 !important;
  background: transparent !important;
  color: #f1ebdd !important;
  padding-inline: 0 !important;
  justify-content: flex-start !important;
}

.rr-shop-archive .buy-now:hover {
  color: #c4b990 !important;
}

.rr-empty-state {
  max-width: 620px;
  padding-block: 40px;
}

.rr-empty-state h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 58px);
}

.rr-account {
  width: min(1180px, calc(100% - 48px));
  padding-block: clamp(50px, 7vw, 96px);
}

.rr-account--split {
  gap: clamp(34px, 6vw, 88px) !important;
}

.rr-account-panel {
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.rr-account-panel + .rr-account-panel {
  border-left: 1px solid rgba(196, 185, 144, .22) !important;
  padding-left: clamp(32px, 5vw, 72px) !important;
}

.rr-account-panel h1,
.rr-account-panel h2 {
  margin-bottom: 16px !important;
  font-size: clamp(36px, 4.2vw, 58px) !important;
  line-height: .95 !important;
}

.rr-form,
.woocommerce form.rr-form,
.woocommerce form.login.rr-form,
.woocommerce form.register.rr-form {
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.rr-form input[type="text"],
.rr-form input[type="email"],
.rr-form input[type="password"] {
  border: 0 !important;
  border-bottom: 1px solid rgba(196, 185, 144, .36) !important;
  border-radius: 0 !important;
  background: transparent !important;
  padding-inline: 0 !important;
}

.rr-form .button {
  width: auto !important;
  min-width: 190px;
  border: 0 !important;
  border-radius: 0 !important;
  background: #4f613a !important;
  padding-inline: 24px !important;
}

.rr-legal-hero {
  padding: clamp(56px, 7vw, 108px) 0 clamp(30px, 4vw, 60px);
}

.rr-legal-content,
.rr-article-list {
  padding: 0 0 clamp(70px, 8vw, 120px);
}

.rr-legal-content article {
  max-width: 920px;
}

.rr-legal-content h2,
.rr-article-row h2 {
  margin: 38px 0 12px;
  color: #f1ebdd;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.1;
}

.rr-legal-content p,
.rr-article-row p {
  max-width: 860px;
  color: rgba(241, 235, 221, .75);
  font-size: 17px;
  line-height: 1.75;
}

.rr-article-row {
  max-width: 920px;
  padding: 30px 0;
  border-top: 1px solid rgba(196, 185, 144, .18);
}

@media (max-width: 980px) {
  .trust-grid,
  .rr-shop-hero__inner,
  .rr-account--split {
    grid-template-columns: 1fr !important;
  }

  .rr-account-panel + .rr-account-panel {
    border-left: 0 !important;
    border-top: 1px solid rgba(196, 185, 144, .22) !important;
    padding: 34px 0 0 !important;
  }

  .rr-shop-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Cart and sell page polish. */
.rr-cart-hero,
.rr-sell-hero {
  padding: clamp(50px, 6vw, 88px) 0 clamp(24px, 3vw, 42px);
}

.rr-cart-hero h1,
.rr-sell-hero h1 {
  max-width: 920px;
  margin: 14px 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 7vw, 90px);
  line-height: .92;
}

.rr-cart-hero p,
.rr-sell-hero p,
.rr-sell-aside p {
  max-width: 720px;
  color: rgba(241, 235, 221, .74);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.55;
}

.rr-cart-content {
  padding: 0 0 clamp(70px, 8vw, 120px);
}

.rr-cart-page .woocommerce {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(340px, .72fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
}

.rr-cart-page .woocommerce-notices-wrapper,
.rr-cart-page .woocommerce-cart-form {
  grid-column: 1;
}

.rr-cart-page .cart-collaterals {
  grid-column: 2;
  grid-row: 1 / span 3;
}

.rr-cart-page .woocommerce-cart-form,
.rr-cart-page .cart_totals {
  float: none !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.rr-cart-page table.shop_table,
.rr-cart-page .cart_totals table {
  width: 100% !important;
  table-layout: fixed;
  overflow: hidden;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
}

.rr-cart-page table.cart th.product-remove,
.rr-cart-page table.cart td.product-remove {
  width: 46px !important;
}

.rr-cart-page table.cart th.product-thumbnail,
.rr-cart-page table.cart td.product-thumbnail {
  width: 104px !important;
}

.rr-cart-page table.cart th.product-name,
.rr-cart-page table.cart td.product-name {
  width: auto !important;
}

.rr-cart-page table.cart th.product-price,
.rr-cart-page table.cart td.product-price,
.rr-cart-page table.cart th.product-quantity,
.rr-cart-page table.cart td.product-quantity {
  width: 130px !important;
}

.rr-cart-page table.cart th.product-subtotal,
.rr-cart-page table.cart td.product-subtotal {
  width: 160px !important;
}

.rr-cart-page .cart-collaterals {
  float: none !important;
  width: auto !important;
}

.rr-cart-page table.shop_table thead {
  color: #c4b990;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.rr-cart-page table.shop_table th,
.rr-cart-page table.shop_table td {
  border: 0 !important;
  border-bottom: 1px solid rgba(196, 185, 144, .18) !important;
  padding: 22px 16px !important;
  vertical-align: middle;
}

.rr-cart-page table.cart td.product-remove {
  width: 46px;
  padding-left: 0 !important;
}

.rr-cart-page table.cart .product-remove a {
  display: inline-grid !important;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(196, 185, 144, .24);
  border-radius: 50%;
  color: #c4b990 !important;
  font-size: 22px;
  line-height: 1;
}

.rr-cart-page table.cart img {
  width: 78px !important;
  height: 78px !important;
  border-radius: 8px;
  object-fit: cover;
}

.rr-cart-page table.cart .product-name a {
  color: #f1ebdd;
  font-size: clamp(18px, 1.6vw, 24px);
  font-weight: 800;
  line-height: 1.18;
}

.rr-cart-page .amount {
  color: #6f864f;
  font-weight: 900;
}

.rr-cart-page .quantity .qty {
  width: 74px !important;
  min-height: 46px !important;
  border: 1px solid rgba(196, 185, 144, .26) !important;
  border-radius: 8px !important;
  background: transparent !important;
  color: #f1ebdd !important;
  text-align: center;
}

.rr-cart-page .actions {
  display: grid !important;
  grid-template-columns: minmax(220px, 1fr) auto;
  gap: 14px;
  align-items: end;
}

.rr-cart-page .coupon {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
}

.rr-cart-page .coupon label {
  display: none !important;
}

.rr-cart-page .coupon .input-text {
  min-height: 48px;
  border: 0 !important;
  border-bottom: 1px solid rgba(196, 185, 144, .35) !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #f1ebdd !important;
  padding: 0 !important;
}

.rr-cart-page .coupon .input-text::placeholder {
  color: rgba(241, 235, 221, .45);
}

.rr-cart-page .button,
.rr-cart-page button.button {
  border-radius: 0 !important;
}

.rr-cart-page .cart_totals {
  position: sticky;
  top: 118px;
  padding: clamp(26px, 3vw, 42px) !important;
  border-left: 1px solid rgba(196, 185, 144, .22) !important;
}

@media (max-width: 1400px) {
  .rr-cart-page .woocommerce {
    grid-template-columns: 1fr;
  }

  .rr-cart-page .cart-collaterals,
  .rr-cart-page .woocommerce-cart-form {
    grid-column: auto;
    grid-row: auto;
  }

  .rr-cart-page .cart_totals {
    position: static;
    border-left: 0 !important;
    border-top: 1px solid rgba(196, 185, 144, .22) !important;
    padding-top: 28px !important;
  }
}

.rr-cart-page .cart_totals h2 {
  margin: 0 0 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 3.4vw, 50px);
  line-height: 1;
}

.rr-cart-page .cart_totals table th,
.rr-cart-page .cart_totals table td {
  padding: 16px 0 !important;
}

.rr-cart-page .woocommerce-shipping-methods {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.rr-cart-page .woocommerce-shipping-methods label {
  color: rgba(241, 235, 221, .82);
  font-weight: 800;
}

.rr-cart-page .woocommerce-shipping-destination,
.rr-cart-page .woocommerce-shipping-calculator {
  margin: 8px 0 0 !important;
  color: rgba(241, 235, 221, .56);
  font-size: 13px;
  line-height: 1.45;
}

.rr-cart-page .shipping-calculator-button {
  color: #c4b990 !important;
  font-weight: 800;
}

.rr-cart-page .wc-proceed-to-checkout {
  padding: 20px 0 0 !important;
}

.rr-cart-page .checkout-button {
  width: 100%;
  min-height: 64px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  background: #5f7645 !important;
  border: 0 !important;
  border-radius: 8px !important;
  color: #f1ebdd !important;
  font-size: clamp(17px, 1.5vw, 22px) !important;
  letter-spacing: .08em;
}

.rr-sell-hero__inner,
.rr-sell-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: start;
}

.rr-sell-copy h1 {
  max-width: 720px;
  font-size: clamp(42px, 5.2vw, 72px);
  line-height: .94;
}

.rr-sell-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 28px;
}

.rr-sell-points span {
  color: #c4b990;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.rr-sell-steps {
  display: grid;
  gap: 20px;
  padding-top: 18px;
}

.rr-sell-steps div {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  align-items: baseline;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(196, 185, 144, .18);
}

.rr-sell-steps strong {
  color: #c4b990;
  letter-spacing: .08em;
}

.rr-sell-steps span {
  color: rgba(241, 235, 221, .76);
  font-size: 18px;
  line-height: 1.45;
}

.rr-sell-form-section {
  padding: 0 0 clamp(70px, 8vw, 120px);
}

.rr-sell-aside {
  border-top: 1px solid rgba(196, 185, 144, .22);
  padding-top: 28px;
}

.rr-sell-aside h2 {
  max-width: 420px;
  margin: 0 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 3.2vw, 48px);
  line-height: 1;
}

.rr-sell-aside ul {
  margin: 24px 0 0;
  padding-left: 20px;
  color: rgba(241, 235, 221, .72);
  font-size: 17px;
  line-height: 1.65;
}

.rr-sell-form {
  display: grid;
  gap: 6px;
}

.rr-sell-form,
.rr-sell-form input,
.rr-sell-form textarea,
.rr-sell-form select {
  border-radius: 0 !important;
}

.rr-sell-form input,
.rr-sell-form textarea,
.rr-sell-form select {
  border: 0 !important;
  border-bottom: 1px solid rgba(196, 185, 144, .34) !important;
  background: transparent !important;
  padding-inline: 0 !important;
}

.rr-sell-form input[type="file"] {
  min-height: 52px;
  padding-top: 12px !important;
}

.rr-sell-submit {
  width: fit-content;
  min-width: 260px;
  margin-top: 12px;
  border: 0 !important;
  background: #5f7645 !important;
}

.rr-sell-note {
  max-width: 540px;
  margin: 12px 0 0;
  color: rgba(241, 235, 221, .58);
  font-size: 14px;
  line-height: 1.55;
}

.cgs-form-notice {
  margin: 0 0 18px;
  padding: 14px 0;
  border-top: 1px solid rgba(196, 185, 144, .26);
  border-bottom: 1px solid rgba(196, 185, 144, .26);
  color: rgba(241, 235, 221, .82);
  font-size: 15px;
  line-height: 1.45;
}

.cgs-form-notice--success {
  color: #c4d49a;
}

.cgs-form-notice--error {
  color: #f0b6a8;
}

.footer .newsletter {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 48px;
  overflow: visible;
  border: 0;
  border-radius: 0;
}

.footer .newsletter input[type="email"] {
  min-height: 48px;
  border: 1px solid rgba(196, 185, 144, .26);
  border-right: 0;
  border-radius: 7px 0 0 7px;
}

.footer .newsletter button {
  min-height: 48px;
  border-radius: 0 7px 7px 0;
}

.cgs-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.newsletter-consent,
.rr-sell-consent {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: rgba(241, 235, 221, .62);
  font-size: 13px;
  line-height: 1.45;
}

.newsletter-consent {
  grid-column: 1 / -1;
  margin-top: 10px;
}

.rr-sell-consent {
  margin-top: 6px;
}

.newsletter-consent input,
.rr-sell-consent input {
  width: 16px !important;
  height: 16px;
  margin-top: 2px;
  accent-color: #6f864f;
}

@media (max-width: 980px) {
  .rr-cart-page .woocommerce,
  .rr-sell-hero__inner,
  .rr-sell-layout {
    grid-template-columns: 1fr;
  }

  .rr-cart-page .cart-collaterals,
  .rr-cart-page .woocommerce-cart-form {
    grid-column: auto;
    grid-row: auto;
  }

  .rr-cart-page .cart_totals {
    position: static;
    border-left: 0 !important;
    border-top: 1px solid rgba(196, 185, 144, .22) !important;
  }

  .rr-cart-page .actions,
  .rr-cart-page .coupon,
  .cgs-form__split {
    grid-template-columns: 1fr !important;
  }
}

/* Mobile hardening: no horizontal drift, readable cart, clean checkout path. */
@media (max-width: 760px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .container,
  .header .container,
  body .header .container,
  .rr-account,
  .rr-shop-archive .container {
    width: min(100% - 24px, var(--rr-container, 1180px)) !important;
  }

  body .header .header-inner {
    min-height: 72px !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    gap: 10px !important;
  }

  body .header .brand {
    min-width: 0 !important;
  }

  body .header .brand img {
    width: min(186px, 46vw) !important;
    max-height: 58px !important;
  }

  body .header .actions {
    min-width: 0 !important;
    gap: 8px !important;
  }

  body .header .icon-btn {
    flex: 0 0 30px !important;
    width: 30px !important;
    height: 30px !important;
  }

  body .header .icon-btn svg {
    width: 22px !important;
    height: 22px !important;
  }

  body .header .cart-count .count {
    top: -6px !important;
    right: -7px !important;
    min-width: 18px !important;
    height: 18px !important;
    font-size: 11px !important;
  }

  body .header .nav {
    top: 72px !important;
    right: 12px !important;
    left: 12px !important;
    width: auto !important;
  }

  .header-search-panel__inner {
    grid-template-columns: 1fr !important;
  }

  .header-search-panel button {
    width: 100%;
  }

  .rr-cart-hero,
  .rr-sell-hero {
    padding: 34px 0 22px;
  }

  .rr-cart-hero h1,
  .rr-sell-hero h1,
  .rr-sell-copy h1,
  .rr-legal-hero h1,
  .rr-shop-hero h1 {
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: clamp(42px, 14vw, 62px) !important;
    line-height: .94 !important;
  }

  .rr-cart-hero p,
  .rr-sell-hero p,
  .rr-sell-aside p {
    max-width: 100%;
    font-size: 16px;
  }

  .rr-cart-page .woocommerce {
    display: block !important;
  }

  .rr-cart-page .woocommerce-notices-wrapper,
  .rr-cart-page .woocommerce-message,
  .rr-cart-page .woocommerce-info,
  .rr-cart-page .woocommerce-error {
    width: 100% !important;
    margin: 0 0 18px !important;
    padding: 14px 0 !important;
    border: 0 !important;
    border-top: 1px solid rgba(196, 185, 144, .22) !important;
    border-bottom: 1px solid rgba(196, 185, 144, .22) !important;
    background: transparent !important;
    color: rgba(241, 235, 221, .82) !important;
    line-height: 1.45 !important;
  }

  .rr-cart-page .woocommerce-message .button,
  .rr-cart-page .woocommerce-info .button {
    width: 100%;
    margin: 10px 0 0 !important;
  }

  .rr-cart-page .woocommerce-cart-form,
  .rr-cart-page table.shop_table,
  .rr-cart-page table.cart,
  .rr-cart-page table.cart tbody,
  .rr-cart-page table.cart tr,
  .rr-cart-page table.cart td {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .rr-cart-page table.cart {
    table-layout: auto !important;
    overflow: visible !important;
  }

  .rr-cart-page table.cart thead {
    display: none !important;
  }

  .rr-cart-page table.cart tr.cart_item {
    position: relative;
    display: grid !important;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 6px 14px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(196, 185, 144, .2);
  }

  .rr-cart-page table.shop_table th,
  .rr-cart-page table.shop_table td,
  .rr-cart-page table.cart td {
    border: 0 !important;
    padding: 0 !important;
  }

  .rr-cart-page table.cart td.product-remove {
    position: absolute;
    top: 12px;
    right: 0;
    z-index: 2;
    width: auto !important;
  }

  .rr-cart-page table.cart .product-remove a {
    width: 32px;
    height: 32px;
  }

  .rr-cart-page table.cart td.product-thumbnail {
    grid-column: 1;
    grid-row: 1 / span 4;
  }

  .rr-cart-page table.cart img {
    width: 66px !important;
    height: 66px !important;
  }

  .rr-cart-page table.cart td.product-name {
    grid-column: 2;
    padding-right: 40px !important;
  }

  .rr-cart-page table.cart .product-name a {
    display: block;
    max-width: 100%;
    font-size: 19px !important;
    line-height: 1.2 !important;
    overflow-wrap: anywhere;
  }

  .rr-cart-page table.cart td.product-price,
  .rr-cart-page table.cart td.product-quantity,
  .rr-cart-page table.cart td.product-subtotal {
    grid-column: 2;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 8px !important;
    color: rgba(241, 235, 221, .78);
  }

  .rr-cart-page table.cart td::before {
    content: attr(data-title);
    color: #c4b990;
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .08em;
    line-height: 1.2;
    text-transform: uppercase;
  }

  .rr-cart-page table.cart td.product-remove::before,
  .rr-cart-page table.cart td.product-thumbnail::before,
  .rr-cart-page table.cart td.product-name::before,
  .rr-cart-page table.cart td.actions::before {
    content: "" !important;
    display: none !important;
  }

  .rr-cart-page .quantity .qty {
    width: 64px !important;
    min-height: 40px !important;
  }

  .rr-cart-page table.cart td.actions {
    display: block !important;
    padding-top: 18px !important;
  }

  .rr-cart-page .actions {
    display: grid !important;
    float: none !important;
    width: 100% !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    clear: both !important;
  }

  .rr-cart-page .coupon {
    display: grid !important;
    float: none !important;
    width: 100% !important;
    max-width: none !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .rr-cart-page .coupon .input-text,
  .rr-cart-page .coupon .button,
  .rr-cart-page button[name="update_cart"] {
    display: flex !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    min-height: 50px !important;
    margin: 0 !important;
    align-items: center;
    justify-content: center;
    white-space: normal !important;
  }

  .rr-cart-page .coupon .input-text {
    justify-content: flex-start;
    padding: 0 0 8px !important;
    text-align: left;
  }

  .rr-cart-page .cart_totals {
    margin-top: 30px !important;
    padding: 24px 0 0 !important;
  }

  .rr-cart-page .cart_totals h2 {
    font-size: clamp(34px, 10vw, 44px) !important;
  }

  .rr-cart-page .cart_totals table,
  .rr-cart-page .cart_totals tbody,
  .rr-cart-page .cart_totals tr,
  .rr-cart-page .cart_totals th,
  .rr-cart-page .cart_totals td {
    display: block !important;
    width: 100% !important;
  }

  .rr-cart-page .cart_totals tr {
    padding: 14px 0 !important;
    border-bottom: 1px solid rgba(196, 185, 144, .18) !important;
  }

  .rr-cart-page .cart_totals table th,
  .rr-cart-page .cart_totals table td {
    padding: 4px 0 !important;
    border: 0 !important;
  }

  .rr-cart-page .woocommerce-shipping-methods label,
  .rr-cart-page .woocommerce-shipping-destination,
  .rr-cart-page .woocommerce-shipping-calculator {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .rr-cart-page .checkout-button {
    min-height: 58px !important;
    padding: 12px 14px !important;
    font-size: 17px !important;
    line-height: 1.2 !important;
    text-align: center;
  }

  .product-grid,
  .woocommerce ul.products,
  .rr-shop-archive .woocommerce ul.products,
  .cgs-product-grid,
  .category-grid,
  .rr-sell-layout,
  .rr-sell-hero__inner,
  .rr-account--split {
    grid-template-columns: 1fr !important;
  }

  .product-card,
  .woocommerce ul.products li.product {
    min-width: 0 !important;
  }

  .product-title,
  .woocommerce ul.products li.product .woocommerce-loop-product__title,
  .rr-legal-content p,
  .rr-article-row p,
  .rr-sell-aside li,
  .rr-sell-steps span {
    overflow-wrap: anywhere;
  }

  .rr-sell-form input,
  .rr-sell-form textarea,
  .rr-sell-form select,
  .rr-form input,
  .rr-form textarea,
  .rr-form select {
    width: 100% !important;
    max-width: 100% !important;
  }

  .rr-sell-submit,
  .rr-form .button {
    width: 100% !important;
    min-width: 0 !important;
  }
}

@media (max-width: 420px) {
  body .header .brand img {
    width: min(164px, 42vw) !important;
  }

  body .header .actions {
    gap: 6px !important;
  }

  body .header .icon-btn {
    flex-basis: 28px !important;
    width: 28px !important;
    height: 28px !important;
  }

  body .header .icon-btn svg {
    width: 20px !important;
    height: 20px !important;
  }
}
