/* ==========================================================================
   RGS Theme — Component Styles
   Roxanne Grant Studios
   ========================================================================== */

/* ==========================================================================
   Top Announcement Bar
   ========================================================================== */

.rgs-topbar {
  text-align: center;
  padding: 10px 24px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: none;
  line-height: 1.4;
  z-index: 1001;
  position: relative;
}

.rgs-topbar__text {
  margin: 0;
}

/* ==========================================================================
   Header
   ========================================================================== */

/* --- Sticky header (scrolls with page, sticks at top when reached) --- */
.rgs-header--sticky {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.rgs-header {
  background: rgba(255, 255, 255, 0.98);
  height: var(--header-height);
  transition: box-shadow 0.4s ease, backdrop-filter 0.4s ease;
  z-index: 1000;
  position: relative;
}

.rgs-header--scrolled {
  box-shadow: 0 1px 0 rgba(232, 226, 222, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.rgs-header--sticky {
  transition: box-shadow 0.4s ease, backdrop-filter 0.4s ease, transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.rgs-header--hidden {
  transform: translateY(-100%);
  box-shadow: none;
}

/* Default 3-col grid: left / center / right */
.rgs-header__inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}

/* Two-col: logo left, nav+cart right */
.rgs-header__inner--two-col {
  grid-template-columns: auto 1fr;
}

/* Stacked: logo row on top, nav below */
.rgs-header__inner--stacked {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  padding: 8px 24px;
}

.rgs-header__inner--stacked .rgs-header__logo-row {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  position: relative;
}

.rgs-header__inner--stacked .rgs-header__cart-float {
  position: absolute;
  right: 0;
}

.rgs-header__inner--stacked .rgs-nav__list {
  justify-content: center;
}

/* Split nav: left nav / center logo / right nav + cart */
.rgs-header__inner--split {
  grid-template-columns: 1fr auto 1fr;
}

.rgs-header__inner--split .rgs-header__right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
}

/* Right column with nav: flex layout */
.rgs-header__right--with-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 32px;
}

/* Center nav */
.rgs-nav--center .rgs-nav__list {
  justify-content: center;
}

body {
  padding-top: 0;
}

/* No body padding needed — sticky header stays in flow */

/* Navigation */
.rgs-nav__list {
  list-style: none;
  display: flex;
  gap: 32px;
  margin: 0;
  padding: 0;
}

.rgs-nav__link {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.04em;
  color: var(--rgs-black);
  text-decoration: none;
  transition: color 0.35s ease;
  position: relative;
  padding-bottom: 4px;
}

.rgs-nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--rgs-accent);
  transition: width 0.35s ease, left 0.35s ease;
}

.rgs-nav__link:hover::after,
.rgs-nav__item--active .rgs-nav__link::after {
  width: 100%;
  left: 0;
}

.rgs-nav__link:hover,
.rgs-nav__item--active .rgs-nav__link {
  color: var(--rgs-accent-dark);
}

/* Logo */
.rgs-header__center {
  display: flex;
  justify-content: center;
}

/* Logo image in any header position */
.rgs-header__left .custom-logo-link,
.rgs-header__center .custom-logo-link,
.rgs-header__right .custom-logo-link,
.rgs-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.rgs-header__left .custom-logo,
.rgs-header__center .custom-logo,
.rgs-header__right .custom-logo,
.rgs-header-logo {
  max-height: 52px;
  width: auto;
  display: block;
}

.rgs-logo-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  line-height: 1;
}

.rgs-logo-monogram {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 34px;
  color: var(--rgs-accent-dark);
  letter-spacing: -0.03em;
  line-height: 1;
  transition: color 0.35s ease;
}

.rgs-logo-wordmark {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--rgs-muted);
  margin-top: 2px;
}

/* Right: Cart + Search */
.rgs-header__right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
}

/* Search Toggle */
.rgs-search-toggle {
  background: none !important;
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 4px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  color: var(--rgs-black);
  transition: color 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
}

.rgs-search-toggle:hover {
  color: var(--rgs-accent-dark);
  background: none !important;
}

/* Search Overlay */
.rgs-search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255,255,255,0.97);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.rgs-search-overlay--open {
  opacity: 1;
  visibility: visible;
}

.rgs-search-overlay__inner {
  width: 100%;
  max-width: 600px;
  padding: 0 24px;
  position: relative;
}

.rgs-search-form {
  display: flex;
  border-bottom: 2px solid var(--rgs-black);
  padding-bottom: 8px;
}

.rgs-search-form__input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 400;
  color: var(--rgs-black);
  outline: none;
  padding: 8px 0;
}

.rgs-search-form__input::placeholder {
  color: var(--rgs-muted);
}

.rgs-search-form__submit {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--rgs-black);
  padding: 8px;
}

.rgs-search-overlay__close {
  position: absolute;
  top: -60px;
  right: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--rgs-black);
  padding: 8px;
}

.rgs-search-overlay__close:hover {
  color: var(--rgs-accent-dark);
}

.rgs-cart-link {
  position: relative;
  display: flex;
  align-items: center;
  color: var(--rgs-black);
}

.rgs-cart-link:hover {
  color: var(--rgs-accent-dark);
}

.rgs-cart-icon {
  width: 22px;
  height: 22px;
}

.rgs-cart-count {
  position: absolute;
  top: -6px;
  right: -10px;
  background: var(--rgs-accent-dark);
  color: var(--rgs-white);
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 500;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: transform 0.3s ease;
}

.rgs-cart-link:hover .rgs-cart-count {
  transform: scale(1.15);
}

/* Hamburger — mobile only */
.rgs-hamburger {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1001;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.rgs-hamburger__line {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--rgs-black);
  transition: all 0.3s ease;
}

.rgs-hamburger--open .rgs-hamburger__line:first-child {
  transform: rotate(45deg) translateY(3.75px);
}

.rgs-hamburger--open .rgs-hamburger__line:last-child {
  transform: rotate(-45deg) translateY(-3.75px);
}

/* Mobile Menu Overlay */
.rgs-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--rgs-white);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 0.5s;
}

.rgs-mobile-menu--open {
  opacity: 1;
  visibility: visible;
}

.rgs-mobile-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}

.rgs-mobile-menu__list .rgs-nav__item {
  margin-bottom: 24px;
}

.rgs-mobile-menu__list .rgs-nav__link {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 32px;
  color: var(--rgs-black);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease, color 0.3s ease;
}

.rgs-mobile-menu--open .rgs-mobile-menu__list .rgs-nav__item:nth-child(1) .rgs-nav__link { opacity: 1; transform: none; transition-delay: 0.1s; }
.rgs-mobile-menu--open .rgs-mobile-menu__list .rgs-nav__item:nth-child(2) .rgs-nav__link { opacity: 1; transform: none; transition-delay: 0.15s; }
.rgs-mobile-menu--open .rgs-mobile-menu__list .rgs-nav__item:nth-child(3) .rgs-nav__link { opacity: 1; transform: none; transition-delay: 0.2s; }
.rgs-mobile-menu--open .rgs-mobile-menu__list .rgs-nav__item:nth-child(4) .rgs-nav__link { opacity: 1; transform: none; transition-delay: 0.25s; }
.rgs-mobile-menu--open .rgs-mobile-menu__list .rgs-nav__item:nth-child(5) .rgs-nav__link { opacity: 1; transform: none; transition-delay: 0.3s; }
.rgs-mobile-menu--open .rgs-mobile-menu__list .rgs-nav__item:nth-child(6) .rgs-nav__link { opacity: 1; transform: none; transition-delay: 0.35s; }

.rgs-mobile-menu__list .rgs-nav__link:hover {
  color: var(--rgs-accent-dark);
}

.rgs-mobile-menu__list .rgs-nav__link::after {
  display: none;
}

/* ==========================================================================
   Hero — Front Page
   ========================================================================== */

.rgs-hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--rgs-white);
  padding: 0 24px;
  position: relative;
  overflow: hidden;
}

.rgs-hero__content {
  animation: rgs-hero-entrance 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes rgs-hero-entrance {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero default — rich dark gradient when no image set */
.rgs-hero:not(.rgs-hero--has-image) {
  background: linear-gradient(160deg, #2e2020 0%, #3b2f2f 45%, #7a5c52 100%);
}

.rgs-hero:not(.rgs-hero--has-image) .rgs-hero__heading {
  color: #fff !important;
  text-shadow: 0 2px 24px rgba(0,0,0,0.25);
}

.rgs-hero:not(.rgs-hero--has-image) .rgs-hero__scroll-indicator svg {
  stroke: rgba(255,255,255,0.7);
}

/* Hero with background image */
.rgs-hero--has-image {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.rgs-hero__overlay {
  position: absolute;
  inset: 0;
  background: #1a1414;
  z-index: 1;
  pointer-events: none;
}

.rgs-hero__content {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.rgs-hero__heading {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(72px, 11vw, 130px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--rgs-black);
  text-shadow: none;
  text-wrap: balance;
}

/* White text on image with shadow for readability */
.rgs-hero--has-image .rgs-hero__heading {
  color: var(--rgs-white);
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.35), 0 1px 6px rgba(0, 0, 0, 0.2);
}

/* Scroll indicator */
.rgs-hero__scroll-indicator {
  margin-top: 60px;
  animation: rgs-bounce 2.5s ease-in-out infinite;
  opacity: 0;
  animation-delay: 1.5s;
  animation-fill-mode: forwards;
}

.rgs-hero--has-image .rgs-hero__scroll-indicator svg {
  stroke: var(--rgs-white);
}

@keyframes rgs-bounce {
  0% { transform: translateY(0); opacity: 0.7; }
  50% { transform: translateY(10px); opacity: 0.4; }
  100% { transform: translateY(0); opacity: 0.7; }
}

/* ==========================================================================
   Inner Page Title Bar (replaces oversized page hero on interior pages)
   ========================================================================== */

.rgs-inner-title-bar {
  padding: 18px 24px 14px;
  border-bottom: 1px solid var(--rgs-border);
  text-align: center;
}

.rgs-inner-title-bar .rgs-eyebrow {
  display: block;
  margin-bottom: 4px;
}

.rgs-inner-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--rgs-black);
  margin: 0;
}

.rgs-inner-sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  color: var(--rgs-muted);
  max-width: 520px;
  margin: 8px auto 0;
  line-height: 1.6;
}

/* Reduce top padding on the first section after a title bar */
.rgs-inner-title-bar + .rgs-section,
.rgs-inner-title-bar + .rgs-section[class*="rgs-"] {
  padding-top: 48px !important;
}

/* Override inline styles on Contact and FAQ pages */
.rgs-contact-details[style*="padding-top"],
.rgs-faqs[style*="padding-top"] {
  padding-top: 48px !important;
}

/* ==========================================================================
   Page Hero — Interior Pages (legacy / kept for backward compat)
   ========================================================================== */

.rgs-page-hero {
  display: none; /* replaced by .rgs-inner-title-bar */
}

.rgs-page-hero--has-image {
  display: flex;
  min-height: 240px;
  background-size: cover;
  background-position: center;
  align-items: center;
  justify-content: center;
}

.rgs-page-hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--rgs-black);
}

.rgs-page-hero__sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  color: var(--rgs-muted);
  max-width: 520px;
  margin: 12px auto 0;
  line-height: 1.7;
}

/* ==========================================================================
   Product Grid
   ========================================================================== */

.rgs-product-grid {
  display: grid;
  gap: 16px;
}

.rgs-product-grid--3col {
  grid-template-columns: repeat(3, 1fr);
}

/* Product Card */
.rgs-product-card {
  display: block;
  text-decoration: none;
  color: var(--rgs-black);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.rgs-product-card:hover {
  transform: translateY(-6px);
  color: var(--rgs-black);
}

.rgs-product-card__image {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--rgs-off-white);
}

.rgs-product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.rgs-product-card:hover .rgs-product-card__image img {
  transform: scale(1.04);
}

.rgs-product-card__placeholder {
  width: 100%;
  height: 100%;
  background: var(--rgs-off-white);
}

.rgs-product-card__info {
  padding: 16px 0 0;
}

.rgs-product-card__category {
  display: block;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--rgs-muted);
  margin-bottom: 4px;
}

.rgs-product-card__name {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 17px;
  color: var(--rgs-black);
  margin: 0 0 4px;
  line-height: 1.3;
}

.rgs-product-card__meta {
  display: block;
  font-family: var(--font-body);
  font-weight: 300;
  font-style: italic;
  font-size: 13px;
  color: var(--rgs-muted);
  margin-bottom: 6px;
}

.rgs-product-card__price {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--rgs-black);
}

/* WooCommerce product list card styling */
.woocommerce ul.products li.product.rgs-product-card {
  margin: 0;
  padding: 0;
  float: none;
  width: auto;
}

/* ==========================================================================
   Studio Statement
   ========================================================================== */

.rgs-studio-statement__inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.rgs-studio-statement__quote {
  font-family: var(--font-heading);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(20px, 2.5vw, 24px);
  line-height: 1.75;
  color: var(--rgs-black);
  margin: 40px 0 28px;
  border: none;
  padding: 0;
  quotes: '\201C' '\201D';
}

.rgs-studio-statement__quote::before {
  content: open-quote;
  font-family: var(--font-display);
  font-size: 1.3em;
  color: var(--rgs-accent);
  margin-right: 2px;
}

.rgs-studio-statement__quote::after {
  content: close-quote;
  font-family: var(--font-display);
  font-size: 1.3em;
  color: var(--rgs-accent);
  margin-left: 2px;
}

/* ==========================================================================
   Category Cards — Home Section 4
   ========================================================================== */

.rgs-categories__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.rgs-categories__grid--1 {
  grid-template-columns: 1fr;
}

.rgs-categories__grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.rgs-categories__grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.rgs-category-card {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--rgs-off-white);
  text-decoration: none;
}

.rgs-category-card__bg {
  position: absolute;
  inset: 0;
  background-color: var(--rgs-border);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 0.4s ease;
}

.rgs-category-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 20, 20, 0.5) 0%, rgba(26, 20, 20, 0.1) 50%, transparent 100%);
  transition: background 0.5s ease;
  z-index: 1;
}

.rgs-category-card:hover::after {
  background: rgba(26, 20, 20, 0.45);
}

.rgs-category-card:hover .rgs-category-card__bg {
  transform: scale(1.06);
}

.rgs-category-card__label {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  z-index: 2;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 28px;
  color: var(--rgs-white);
  white-space: nowrap;
  opacity: 0.9;
  transition: opacity 0.4s ease, transform 0.4s ease;
  text-shadow: 0 1px 20px rgba(0, 0, 0, 0.2);
}

.rgs-category-card:hover .rgs-category-card__label {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ==========================================================================
   Commissions Callout — Home Section 5
   ========================================================================== */

.rgs-commissions-callout__inner {
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
}

.rgs-commissions-callout__heading {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 46px);
  color: var(--rgs-black);
  margin-top: 32px;
  letter-spacing: -0.01em;
}

.rgs-commissions-callout__text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  color: var(--rgs-muted);
  line-height: 1.9;
  margin: 24px 0 36px;
}

/* ==========================================================================
   Instagram Feed — Home Section 6
   ========================================================================== */

.rgs-instagram__header {
  margin-bottom: 32px;
}

.rgs-instagram__eyebrow {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #7e6b64;
  margin-bottom: 6px;
}

.rgs-instagram__handle {
  font-family: var(--font-heading);
  font-weight: 400;
  font-style: italic;
  font-size: 18px;
  color: var(--rgs-black);
  text-decoration: none;
}

.rgs-instagram__handle:hover {
  color: var(--rgs-accent-dark);
}

.rgs-instagram__static {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}

.rgs-instagram__placeholder {
  display: block;
  aspect-ratio: 1 / 1;
  background: var(--rgs-off-white);
  transition: background 0.4s ease, transform 0.4s ease;
  position: relative;
}

.rgs-instagram__placeholder:hover {
  background: var(--rgs-border);
}

.rgs-instagram__placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  transition: background 0.4s ease;
}

.rgs-instagram__placeholder:hover::after {
  background: rgba(26, 20, 20, 0.08);
}

/* ==========================================================================
   About Page
   ========================================================================== */

.rgs-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #7e6b64;
  margin-bottom: 14px;
}

.rgs-about-bio__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.rgs-about-bio__image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.rgs-about-bio__image:hover img {
  transform: scale(1.02);
}

.rgs-about-bio__image-placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: var(--rgs-off-white);
}

.rgs-about-bio__name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 52px);
  color: var(--rgs-black);
  margin: 0;
  letter-spacing: -0.01em;
}

.rgs-about-bio__text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.9;
  color: var(--rgs-black);
}

/* About — What We Offer */
.rgs-about-offer__title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-style: italic;
  font-size: 28px;
  color: var(--rgs-black);
  margin-bottom: 48px;
}

.rgs-about-offer__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  text-align: center;
}

.rgs-about-offer__number {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 56px;
  color: var(--rgs-accent);
  display: block;
  margin-bottom: 20px;
  transition: color 0.3s ease;
}

.rgs-about-offer__col:hover .rgs-about-offer__number {
  color: var(--rgs-accent-dark);
}

.rgs-about-offer__heading {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 20px;
  color: var(--rgs-black);
  margin-bottom: 12px;
}

.rgs-about-offer__text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  color: var(--rgs-muted);
  line-height: 1.8;
}

/* About — CTA */
.rgs-about-cta__heading {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(32px, 5vw, 42px);
  letter-spacing: -0.01em;
}

.rgs-about-cta__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==========================================================================
   Commissions Page Steps
   ========================================================================== */

.rgs-commission-steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  text-align: center;
}

.rgs-commission-steps__number {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 56px;
  color: var(--rgs-accent);
  display: block;
  margin-bottom: 20px;
  transition: color 0.3s ease;
}

.rgs-commission-steps__col:hover .rgs-commission-steps__number {
  color: var(--rgs-accent-dark);
}

.rgs-commission-steps__heading {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 20px;
  color: var(--rgs-black);
  margin-bottom: 12px;
}

.rgs-commission-steps__text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  color: var(--rgs-muted);
  line-height: 1.8;
}

/* ==========================================================================
   Commission / Contact Form
   ========================================================================== */

.rgs-commission-form__inner,
.rgs-contact-form__inner {
  max-width: 680px;
  margin: 0 auto;
}

.rgs-commission-form__title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-style: italic;
  font-size: 28px;
  margin-bottom: 40px;
}

/* Form success / error banners */
.rgs-commission-form__success,
.rgs-commission-form__error {
  text-align: center;
  padding: 40px 24px;
  margin-bottom: 40px;
  border: 1px solid var(--rgs-border);
}

.rgs-commission-form__success {
  background: #f8faf8;
  border-color: #b8d8b8;
}

.rgs-commission-form__success svg {
  color: #4a7c4a;
  margin-bottom: 16px;
}

.rgs-commission-form__success p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: var(--rgs-black);
  max-width: 480px;
  margin: 0 auto;
}

.rgs-commission-form__error {
  background: #fdf6f6;
  border-color: #e8c4c4;
}

.rgs-commission-form__error p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  color: #8b3a3a;
}

.rgs-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.rgs-form__field {
  margin-bottom: 20px;
}

.rgs-form__field label .required {
  color: var(--rgs-accent-dark);
}

.rgs-form__submit {
  margin-top: 32px;
}

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */

.rgs-faqs__inner {
  max-width: 760px;
  margin: 0 auto;
}

.rgs-accordion__item {
  border-top: 1px solid var(--rgs-border);
}

.rgs-accordion__item:last-child {
  border-bottom: 1px solid var(--rgs-border);
}

.rgs-accordion__trigger {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 28px 0 !important;
  margin: 0;
  cursor: pointer;
  text-align: left;
  font-size: inherit !important;
  letter-spacing: normal !important;
  text-transform: none !important;
  color: inherit !important;
  box-shadow: none !important;
  transition: padding 0.3s ease;
}

.rgs-accordion__trigger:hover {
  padding-left: 8px;
}

.rgs-accordion__question {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 18px;
  color: var(--rgs-black);
  flex: 1;
  padding-right: 16px;
  transition: color 0.3s ease;
}

.rgs-accordion__trigger:hover .rgs-accordion__question {
  color: var(--rgs-accent-dark);
}

.rgs-accordion__icon {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 24px;
  color: var(--rgs-muted);
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  line-height: 1;
}

.rgs-accordion__trigger[aria-expanded="true"] .rgs-accordion__icon {
  transform: rotate(45deg);
}

.rgs-accordion__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 0;
}

.rgs-accordion__panel--open {
  padding: 0 0 24px;
}

.rgs-accordion__panel p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  color: var(--rgs-muted);
  line-height: 1.8;
}

.rgs-accordion__panel a {
  color: var(--rgs-accent-dark);
  border-bottom: 1px solid transparent;
}

.rgs-accordion__panel a:hover {
  border-bottom-color: var(--rgs-accent-dark);
}

/* ==========================================================================
   Contact Details Grid
   ========================================================================== */

.rgs-contact-details__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 48px;
}

.rgs-contact-details__item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  transition: transform 0.3s ease;
}

.rgs-contact-details__item:hover {
  transform: translateY(-2px);
}

.rgs-contact-details__item svg {
  flex-shrink: 0;
  color: var(--rgs-accent);
}

.rgs-contact-details__item a,
.rgs-contact-details__item span {
  color: var(--rgs-black);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.rgs-contact-details__item a:hover {
  border-bottom-color: var(--rgs-accent-dark);
}

/* ==========================================================================
   Shop Page — Layout
   ========================================================================== */

.rgs-shop-breadcrumb {
  padding: 12px 0 0;
}

.rgs-shop-header {
  padding: 24px 0 32px;
}

.rgs-shop-header__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 56px);
  color: var(--rgs-black);
  margin: 8px 0 0;
  letter-spacing: -0.02em;
}

/* Sidebar + Grid Layout */
.rgs-shop-layout {
  padding: 0 0 80px;
}

.rgs-shop-layout__grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  align-items: start;
}

/* Sidebar */
.rgs-shop-sidebar__section {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--rgs-border);
}

.rgs-shop-sidebar__section:last-child {
  border-bottom: none;
}

.rgs-shop-sidebar__heading {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--rgs-black);
  margin: 0 0 16px;
}

.rgs-shop-sidebar__cat-list,
.rgs-shop-sidebar__price-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.rgs-shop-sidebar__cat-list li,
.rgs-shop-sidebar__price-list li {
  margin-bottom: 6px;
}

.rgs-shop-sidebar__cat-link,
.rgs-shop-sidebar__price-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  color: var(--rgs-muted);
  text-decoration: none;
  padding: 5px 0;
  transition: color 0.2s ease;
  cursor: pointer;
}

.rgs-shop-sidebar__cat-link:hover,
.rgs-shop-sidebar__price-link:hover,
.rgs-shop-sidebar__cat-link--active,
.rgs-shop-sidebar__price-link--active {
  color: var(--rgs-black);
  font-weight: 400;
}

.rgs-shop-sidebar__count {
  font-size: 12px;
  color: var(--rgs-muted);
  font-weight: 300;
}

.rgs-shop-sidebar__sort {
  width: 100%;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--rgs-black);
  border: 1px solid var(--rgs-border);
  padding: 8px 12px;
  background: var(--rgs-white);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237d6d66' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
}

/* Products Area */
.rgs-shop-products__toolbar {
  margin-bottom: 16px;
}

.rgs-shop-products__count,
.rgs-shop-products__count .woocommerce-result-count {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 13px;
  color: var(--rgs-muted);
  margin: 0;
}

.rgs-shop-products__empty {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  color: var(--rgs-muted);
  text-align: center;
  padding: 60px 0;
}

/* Loading state */
.rgs-shop-products__grid.rgs-loading {
  opacity: 0.4;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* Shop Pagination */
.rgs-shop-pagination {
  margin-top: 48px;
  text-align: center;
}

.rgs-shop-pagination .page-numbers {
  list-style: none;
  display: flex;
  gap: 4px;
  justify-content: center;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.rgs-shop-pagination .page-numbers li {
  display: inline-block;
}

.rgs-shop-pagination .page-numbers a,
.rgs-shop-pagination .page-numbers span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--rgs-muted);
  text-decoration: none;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.rgs-shop-pagination .page-numbers a:hover {
  color: var(--rgs-black);
  border-color: var(--rgs-border);
}

.rgs-shop-pagination .page-numbers .current {
  color: var(--rgs-white);
  background: var(--rgs-black);
  border-color: var(--rgs-black);
}

.rgs-shop-pagination .page-numbers .prev,
.rgs-shop-pagination .page-numbers .next {
  font-size: 16px;
}

/* Mobile sidebar toggle */
.rgs-shop-sidebar__toggle {
  display: none;
  background: none;
  border: 1px solid var(--rgs-border);
  font-family: var(--font-body);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--rgs-black);
  padding: 10px 20px;
  cursor: pointer;
  margin-bottom: 20px;
  width: 100%;
}

/* ==========================================================================
   Breadcrumb
   ========================================================================== */

.rgs-breadcrumb {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--rgs-muted);
}

.rgs-breadcrumb a {
  color: var(--rgs-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.rgs-breadcrumb a:hover {
  color: var(--rgs-black);
}

.rgs-breadcrumb__sep {
  margin: 0 6px;
  color: var(--rgs-border);
}

/* ==========================================================================
   Single Product Page
   ========================================================================== */

.rgs-single-product__gallery .woocommerce-product-gallery {
  max-width: 100%;
}

.rgs-single-product__gallery .woocommerce-product-gallery__image img,
.rgs-single-product__gallery .woocommerce-product-gallery img {
  width: 100%;
  max-height: 600px;
  object-fit: contain;
  display: block;
}

.rgs-single-product__gallery .flex-viewport,
.rgs-single-product__gallery .woocommerce-product-gallery__wrapper {
  max-height: 600px;
}

.rgs-single-product__gallery .flex-control-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  list-style: none;
  padding: 0;
}

.rgs-single-product__gallery .flex-control-thumbs li {
  width: 72px;
  height: 72px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.rgs-single-product__gallery .flex-control-thumbs li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rgs-single-product__gallery .flex-control-thumbs li:hover,
.rgs-single-product__gallery .flex-control-thumbs li .flex-active {
  opacity: 1;
}

.rgs-single-product__grid {
  display: grid;
  grid-template-columns: 60fr 40fr;
  gap: 60px;
  align-items: start;
}

.rgs-single-product__category {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #7e6b64;
  margin-bottom: 8px;
}

.rgs-single-product__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 36px;
  line-height: 1.15;
  color: var(--rgs-black);
  margin: 0 0 12px;
}

.rgs-single-product__meta {
  font-family: var(--font-body);
  font-weight: 300;
  font-style: italic;
  font-size: 14px;
  color: var(--rgs-muted);
  margin: 0;
}

.rgs-single-product__price {
  margin: 16px 0;
}

.rgs-single-product__price .price {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 20px;
  color: var(--rgs-black);
}

.rgs-single-product__note p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 13px;
  color: var(--rgs-muted);
  line-height: 1.7;
}

.rgs-single-product__trust {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #7e6b64;
  margin-top: 24px;
}

/* Related Products */
.rgs-related-products__heading {
  font-family: var(--font-heading);
  font-weight: 400;
  font-style: italic;
  font-size: 24px;
  color: var(--rgs-black);
  margin-bottom: 32px;
}

/* ==========================================================================
   Contact Page
   ========================================================================== */

.rgs-contact-details__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rgs-contact-details__list a {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  color: var(--rgs-black);
}

.rgs-contact-details__list a:hover {
  color: var(--rgs-accent-dark);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.rgs-footer {
  background: var(--ft-bg, #3b2f2f);
  color: var(--ft-text, #ede6df);
  padding: 0;
}

.rgs-footer a {
  color: var(--ft-link, #b5a09a);
  transition: color 0.3s ease;
}

.rgs-footer a:hover {
  color: var(--ft-text, #ede6df);
}

/* Newsletter Row */
.rgs-footer__newsletter {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 48px 0;
}

.rgs-footer__newsletter-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.rgs-footer__newsletter-logo {
  display: none; /* logo lives in footer columns */
}

.rgs-footer__newsletter-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rgs-footer__newsletter-text {
  font-family: var(--font-heading);
  font-weight: 400;
  font-style: italic;
  font-size: 20px;
  color: var(--ft-text, #ede6df);
  margin: 0 0 16px;
  letter-spacing: 0;
}

.rgs-footer__newsletter-form {
  display: flex;
  gap: 0;
  width: 100%;
  max-width: 420px;
}

.rgs-footer__newsletter-input {
  flex: 1;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  border-right: none;
  color: var(--ft-text, #ede6df);
  font-family: var(--font-body);
  font-size: 13px;
  padding: 10px 14px;
}

.rgs-footer__newsletter-input::placeholder {
  color: rgba(255,255,255,0.4);
}

.rgs-footer__newsletter-btn {
  background: var(--ft-link, #b5a09a);
  color: #fff;
  border: none;
  font-family: var(--font-body);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 10px 20px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.rgs-footer__newsletter-btn:hover {
  background: var(--ft-text, #ede6df);
  color: var(--ft-bg, #3b2f2f);
}

.rgs-footer__columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 60px 0;
}

.rgs-footer__logo .custom-logo,
.rgs-footer__logo-img {
  max-height: 48px;
  width: auto;
}

.rgs-footer .rgs-logo-text--footer .rgs-logo-monogram,
.rgs-footer .rgs-logo-text--footer .rgs-logo-wordmark {
  color: var(--ft-text, #ede6df);
}

.rgs-footer__social {
  margin-top: 20px;
  display: flex;
  gap: 16px;
}

.rgs-footer__social-link {
  color: var(--ft-text, #ede6df);
  display: inline-flex;
}

.rgs-footer__social-link:hover {
  color: var(--ft-link, #b5a09a);
}

.rgs-footer__heading {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ft-heading, #ffffff) !important;
  margin-bottom: 20px;
}

.rgs-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.rgs-footer__links li {
  margin-bottom: 10px;
}

.rgs-footer__links a {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  color: var(--ft-text, #ede6df);
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.rgs-footer__links a:hover {
  color: var(--ft-link, #b5a09a);
  padding-left: 4px;
}

.rgs-footer__contact-list {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
}

.rgs-footer__contact-list li {
  margin-bottom: 8px;
}

.rgs-footer__contact-list a {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  color: var(--ft-text, #ede6df);
}

.rgs-footer__note {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 13px;
  color: var(--ft-link, #b5a09a);
}

.rgs-footer__bottom {
  border-top: 1px solid rgba(237, 230, 223, 0.15);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.rgs-footer__copyright {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 12px;
  color: var(--ft-text, #ede6df);
  opacity: 0.7;
  margin: 0;
}

.rgs-footer__legal {
  display: flex;
  gap: 24px;
}

.rgs-footer__legal a {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 12px;
  color: var(--ft-text, #ede6df);
  opacity: 0.7;
}

.rgs-footer__legal a:hover {
  opacity: 1;
  color: var(--ft-link, #b5a09a);
}

/* ==========================================================================
   Posts Grid (blog / archive)
   ========================================================================== */

.rgs-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.rgs-post-card {
  transition: transform 0.3s ease;
}

.rgs-post-card:hover {
  transform: translateY(-4px);
}

.rgs-post-card__image img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.rgs-post-card__title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 18px;
  margin: 12px 0 6px;
}

.rgs-post-card__title a {
  color: var(--rgs-black);
  text-decoration: none;
}

.rgs-post-card__title a:hover {
  color: var(--rgs-accent-dark);
}

.rgs-post-card__excerpt {
  font-size: 14px;
  color: var(--rgs-muted);
}

/* Pagination */
.rgs-pagination {
  margin-top: 48px;
  text-align: center;
}

.rgs-pagination .nav-links {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.rgs-pagination a,
.rgs-pagination span {
  font-family: var(--font-body);
  font-size: 14px;
  padding: 8px 14px;
  color: var(--rgs-muted);
}

.rgs-pagination .current {
  color: var(--rgs-black);
  border-bottom: 1px solid var(--rgs-black);
}

/* ==========================================================================
   Page Content — Narrow
   ========================================================================== */

.rgs-page-content--narrow {
  max-width: 760px;
  margin: 0 auto;
}

.rgs-page-content--narrow p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.8;
}

/* Page header */
.rgs-page-header {
  margin-bottom: 48px;
}

.rgs-page-header__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 56px);
}

.rgs-page-header__desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  color: var(--rgs-muted);
  margin-top: 8px;
}

/* ==========================================================================
   Responsive — Tablet
   ========================================================================== */

@media (max-width: 1024px) {

  .rgs-product-grid--3col {
    grid-template-columns: repeat(2, 1fr);
  }

  .rgs-categories__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .rgs-about-bio__grid {
    gap: 40px;
  }

  .rgs-single-product__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .rgs-footer__columns {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .rgs-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rgs-instagram__static {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Shop sidebar collapses on tablet */
  .rgs-shop-layout__grid {
    grid-template-columns: 200px 1fr;
    gap: 32px;
  }

  .rgs-footer__newsletter-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}

/* ==========================================================================
   Responsive — Mobile
   ========================================================================== */

@media (max-width: 767px) {

  :root {
    --header-height: 60px;
  }

  /* Top bar */
  .rgs-topbar {
    font-size: 10px;
    padding: 8px 16px;
  }

  /* Header — mobile layout: logo | [space] | cart | hamburger */
  .rgs-header__inner {
    grid-template-columns: auto 1fr auto;
    padding: 0 20px;
    /* extra right padding so cart doesn't sit under the hamburger */
    padding-right: 56px;
  }

  /* Show logo on mobile */
  .rgs-header__left {
    display: flex;
  }

  /* Hide desktop nav on mobile — mobile menu overlay handles navigation */
  .rgs-header__center {
    display: none;
  }

  /* Cart + search stay visible */
  .rgs-header__right {
    display: flex;
  }

  /* Hamburger: absolutely positioned at far right inside the header */
  .rgs-hamburger {
    display: flex;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }

  /* Shop sidebar goes full width on mobile */
  .rgs-shop-layout__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .rgs-shop-sidebar {
    display: none;
  }

  .rgs-shop-sidebar--open {
    display: block;
  }

  .rgs-shop-sidebar__toggle {
    display: block;
  }

  .rgs-shop-header__title {
    font-size: clamp(28px, 8vw, 40px);
  }

  /* Hero */
  .rgs-hero__heading {
    font-size: clamp(52px, 12vw, 72px);
  }

  .rgs-page-hero {
    min-height: 40vh;
    padding: 60px 20px;
  }

  /* Product Grid */
  .rgs-product-grid--3col {
    grid-template-columns: 1fr;
  }

  /* Categories */
  .rgs-categories__grid {
    grid-template-columns: 1fr;
  }

  .rgs-category-card {
    aspect-ratio: 16 / 9;
  }

  .rgs-category-card__label {
    opacity: 1;
  }

  .rgs-category-card::after {
    background: rgba(26, 20, 20, 0.35);
  }

  /* About */
  .rgs-about-bio__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .rgs-about-offer__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Commission Steps */
  .rgs-commission-steps__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Forms */
  .rgs-form__row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .rgs-form__submit .rgs-btn {
    width: 100%;
  }

  /* Single Product */
  .rgs-single-product__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Footer */
  .rgs-footer__columns {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .rgs-footer__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .rgs-footer__legal {
    justify-content: center;
  }

  .rgs-footer__newsletter-form {
    max-width: 100%;
  }

  /* Posts */
  .rgs-posts-grid {
    grid-template-columns: 1fr;
  }

  /* Instagram */
  .rgs-instagram__static {
    grid-template-columns: repeat(2, 1fr);
  }

  /* CTA Buttons */
  .rgs-about-cta__buttons {
    flex-direction: column;
    align-items: center;
  }

  .rgs-about-cta__buttons .rgs-btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}

/* ==========================================================================
   WooCommerce Grid Override (used by archive-product)
   ========================================================================== */

.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none;
}

.woocommerce ul.products li.product {
  float: none !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
}

@media (max-width: 1024px) {
  .woocommerce ul.products {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .woocommerce ul.products {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Scroll Animations — Subtle Fade-In
   ========================================================================== */

.rgs-animate {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.rgs-animate.rgs-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Fade-in from scale (for sections) */
.rgs-animate--scale {
  opacity: 0;
  transform: scale(0.97);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.rgs-animate--scale.rgs-visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger children in grids */
.rgs-product-grid .rgs-animate:nth-child(2) { transition-delay: 0.1s; }
.rgs-product-grid .rgs-animate:nth-child(3) { transition-delay: 0.2s; }
.rgs-product-grid .rgs-animate:nth-child(4) { transition-delay: 0.3s; }
.rgs-product-grid .rgs-animate:nth-child(5) { transition-delay: 0.4s; }
.rgs-product-grid .rgs-animate:nth-child(6) { transition-delay: 0.5s; }
.rgs-product-grid .rgs-animate:nth-child(7) { transition-delay: 0.6s; }
.rgs-product-grid .rgs-animate:nth-child(8) { transition-delay: 0.7s; }
.rgs-product-grid .rgs-animate:nth-child(9) { transition-delay: 0.8s; }

/* Stagger for offer/step grids */
.rgs-about-offer__grid .rgs-animate:nth-child(2) { transition-delay: 0.15s; }
.rgs-about-offer__grid .rgs-animate:nth-child(3) { transition-delay: 0.3s; }
.rgs-commission-steps__grid .rgs-animate:nth-child(2) { transition-delay: 0.15s; }
.rgs-commission-steps__grid .rgs-animate:nth-child(3) { transition-delay: 0.3s; }

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  .rgs-animate,
  .rgs-animate--scale {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ==========================================================================
   Laurie Anne Art Inspired Overrides — v2
   Topbar · Header · Shop Sidebar · Breadcrumbs · Footer
   ========================================================================== */

/* ── Topbar: Laurie Anne Art amber style ── */
.rgs-topbar {
  background-color: var(--rgs-topbar-bg, #c8966c);
  color: var(--rgs-topbar-color, #fff);
  padding: 9px 24px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: none;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  z-index: 1001;
  position: relative;
}


.rgs-header__left {
  display: flex;
  align-items: center;
}

/* Keep logo left-aligned in logo-nav-cart */
.rgs-header--logo-nav-cart .rgs-header__center,
.rgs-header__center {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Nav font tweak — Laurie Anne Art uses clean body font */
.rgs-nav__link {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: none;
}

.rgs-nav__list {
  gap: 28px;
}

/* ── Breadcrumb: centered ── */
.rgs-shop-breadcrumb {
  text-align: center;
  padding: 16px 0 0;
}

.rgs-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── Shop header: centered ── */
.rgs-shop-header {
  text-align: center;
  padding: 20px 0 36px;
  border-bottom: 1px solid var(--rgs-border);
}

.rgs-shop-header .rgs-eyebrow {
  display: block;
  margin-bottom: 8px;
}

.rgs-shop-header__title {
  margin: 0;
}

.rgs-page-header {
  text-align: center;
  padding: 20px 0 16px;
}

.rgs-page-header__title {
  margin: 0 0 12px;
}

/* ── Shop sidebar: Laurie Anne Art collapsible style ── */
.rgs-shop-sidebar__section {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 1px solid var(--rgs-border);
}

.rgs-shop-sidebar__section:first-child {
  border-top: 1px solid var(--rgs-border);
}

.rgs-shop-sidebar__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  margin: 0;
  cursor: pointer;
  user-select: none;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--rgs-black);
  transition: color 0.2s ease;
}

.rgs-shop-sidebar__heading:hover {
  color: var(--rgs-accent-dark);
}

.rgs-shop-sidebar__toggle-icon {
  font-size: 16px;
  font-weight: 300;
  color: var(--rgs-muted);
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.rgs-shop-sidebar__section--open .rgs-shop-sidebar__toggle-icon {
  transform: rotate(45deg);
}

.rgs-shop-sidebar__body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease, padding 0.25s ease;
  padding-bottom: 0;
}

.rgs-shop-sidebar__section--open .rgs-shop-sidebar__body {
  max-height: 500px;
  padding-bottom: 16px;
}

/* Sort section always open (no collapse) */
.rgs-shop-sidebar__section--sort .rgs-shop-sidebar__body {
  max-height: 500px;
  padding-bottom: 16px;
}

.rgs-shop-sidebar__section--sort .rgs-shop-sidebar__heading {
  cursor: default;
}

.rgs-shop-sidebar__section--sort .rgs-shop-sidebar__toggle-icon {
  display: none;
}

/* ── Loading state for AJAX shop filter ── */
.rgs-shop-products__grid.rgs-loading {
  position: relative;
  min-height: 200px;
  opacity: 0.45;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.rgs-shop-products__grid.rgs-loading::after {
  content: '';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24' fill='none' stroke='%23b5a09a' stroke-width='1.5'%3E%3Cpath d='M21 12a9 9 0 1 1-6.219-8.56'/%3E%3C/svg%3E") center/32px no-repeat;
  animation: rgs-spin 0.8s linear infinite;
}

@keyframes rgs-spin {
  to { background-position: center, 50% 50%; transform: rotate(360deg); }
}

/* ── Footer: 4-column alignment fixes ── */
.rgs-footer__columns {
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 56px 0;
  align-items: start;
}

/* Newsletter: compact centered row */
.rgs-footer__newsletter {
  padding: 40px 0;
}

/* Eyebrow helper */
.rgs-eyebrow {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--rgs-muted);
}

/* ── Pagination: minimal dots style ── */
.rgs-shop-pagination .page-numbers {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0;
  margin: 40px 0 0;
}

.rgs-shop-pagination .page-numbers a,
.rgs-shop-pagination .page-numbers span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 6px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--rgs-muted);
  border: 1px solid transparent;
  text-decoration: none;
  transition: all 0.2s ease;
}

.rgs-shop-pagination .page-numbers a:hover {
  border-color: var(--rgs-border);
  color: var(--rgs-black);
}

.rgs-shop-pagination .page-numbers .current {
  border-color: var(--rgs-black);
  color: var(--rgs-black);
  font-weight: 500;
}

/* ── Mobile responsive ── */
@media (max-width: 900px) {
  .rgs-footer__columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (max-width: 600px) {
  .rgs-footer__columns {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 40px 0;
  }
  .rgs-footer__newsletter-inner {
    flex-direction: column;
    gap: 20px;
  }
  .rgs-footer__bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

/* ==========================================================================
   Elementor Header — search & cart overrides
   ========================================================================== */

/* Cart: hide price/subtotal text — show icon only */
.elementor-menu-cart__subtotal,
.elementor-menu-cart__total,
.elementor-menu-cart__container .elementor-menu-cart__main .elementor-menu-cart__subtotal {
  display: none !important;
}

/* Search: ensure icon-only skin has no stray background */
.elementor-search-form--skin-icon .elementor-search-form__toggle {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  color: #1A1414;
}

.elementor-search-form--skin-icon .elementor-search-form__toggle:hover {
  color: #B5A09A;
}

/* Cart icon colour */
.elementor-menu-cart__toggle .elementor-button {
  background: transparent !important;
  border: none !important;
  padding: 4px !important;
  color: #1A1414 !important;
}

.elementor-menu-cart__toggle .elementor-button:hover {
  color: #B5A09A !important;
}

/* Keep Elementor header sticky on top of everything */
.e-con.elementor-sticky--active {
  z-index: 1000 !important;
}

/* ==========================================================================
   Site-Wide Buttons — .rgs-btn
   ========================================================================== */

.rgs-btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  text-decoration: none;
  padding: 14px 36px;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  line-height: 1.5;
  border: 1px solid transparent;
  appearance: none;
  -webkit-appearance: none;
}

/* Primary — filled dark */
.rgs-btn--primary {
  background: var(--rgs-black);
  color: #fff;
  border-color: var(--rgs-black);
}

.rgs-btn--primary:hover {
  background: var(--rgs-accent-dark);
  border-color: var(--rgs-accent-dark);
  color: #fff;
}

/* Ghost — transparent, dark border */
.rgs-btn--ghost {
  background: transparent;
  color: var(--rgs-black);
  border-color: var(--rgs-black);
}

.rgs-btn--ghost:hover {
  background: var(--rgs-black);
  color: #fff;
  border-color: var(--rgs-black);
}

/* Muted text link (no border) */
.rgs-link--muted {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--rgs-muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.rgs-link--muted:hover {
  color: var(--rgs-black);
  border-bottom-color: var(--rgs-black);
}

/* View-all arrow link */
.rgs-link--view-all {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--rgs-black);
  text-decoration: none;
  border-bottom: 1px solid var(--rgs-border);
  padding-bottom: 2px;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.rgs-link--view-all:hover {
  border-bottom-color: var(--rgs-black);
  color: var(--rgs-accent-dark);
}

/* ==========================================================================
   Cart Count Badge
   ========================================================================== */

.rgs-cart-count--empty {
  display: none !important;
}

/* ==========================================================================
   Mini-Cart Sidebar
   ========================================================================== */

.rgs-cart-sidebar {
  position: fixed;
  inset: 0;
  z-index: 9997;
  pointer-events: none;
  visibility: hidden;
  transition: visibility 0s linear 0.4s;
}

.rgs-cart-sidebar--open {
  visibility: visible;
  pointer-events: all;
  transition-delay: 0s;
}

.rgs-cart-sidebar__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 20, 20, 0.45);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.rgs-cart-sidebar--open .rgs-cart-sidebar__overlay {
  opacity: 1;
}

.rgs-cart-sidebar__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 380px;
  max-width: 100vw;
  height: 100%;
  background: var(--rgs-white);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: -4px 0 32px rgba(26, 20, 20, 0.12);
}

.rgs-cart-sidebar--open .rgs-cart-sidebar__panel {
  transform: translateX(0);
}

.rgs-cart-sidebar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--rgs-border);
  flex-shrink: 0;
}

.rgs-cart-sidebar__title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 18px;
  color: var(--rgs-black);
  margin: 0;
}

.rgs-cart-sidebar__close {
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  color: var(--rgs-muted);
  display: inline-flex;
  align-items: center;
  transition: color 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
}

.rgs-cart-sidebar__close:hover {
  color: var(--rgs-black);
}

.rgs-cart-sidebar__body {
  flex: 1;
  overflow-y: auto;
  padding: 0;
}

/* WooCommerce mini-cart inside sidebar */
.rgs-cart-sidebar__body .woocommerce-mini-cart {
  list-style: none;
  margin: 0;
  padding: 0;
}

.rgs-cart-sidebar__body .woocommerce-mini-cart__item {
  display: flex;
  gap: 16px;
  padding: 16px 24px;
  border-bottom: 1px solid var(--rgs-border);
}

.rgs-cart-sidebar__body .woocommerce-mini-cart__item img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  flex-shrink: 0;
}

.rgs-cart-sidebar__body .woocommerce-mini-cart__item a.remove {
  float: right;
  font-size: 18px;
  color: var(--rgs-muted);
  text-decoration: none;
  margin-left: 8px;
}

.rgs-cart-sidebar__body .woocommerce-mini-cart__item a.remove:hover {
  color: #c44;
}

.rgs-cart-sidebar__body .woocommerce-mini-cart__item .woocommerce-loop-product__link {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 15px;
  color: var(--rgs-black);
  text-decoration: none;
}

.rgs-cart-sidebar__body .woocommerce-mini-cart-item .quantity {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--rgs-muted);
  display: block;
  margin-top: 4px;
}

.rgs-cart-sidebar__body .woocommerce-Price-amount {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--rgs-black);
}

/* Empty cart message */
.rgs-cart-sidebar__body .woocommerce-mini-cart__empty-message {
  padding: 48px 24px;
  text-align: center;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  color: var(--rgs-muted);
}

/* Cart total + buttons bar at bottom */
.rgs-cart-sidebar__body .woocommerce-mini-cart__total {
  padding: 16px 24px;
  border-top: 1px solid var(--rgs-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--rgs-black);
}

.rgs-cart-sidebar__body .woocommerce-mini-cart__total strong {
  font-weight: 600;
}

.rgs-cart-sidebar__body .woocommerce-mini-cart__buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 24px 24px;
}

.rgs-cart-sidebar__body .woocommerce-mini-cart__buttons a {
  display: block;
  width: 100%;
  text-align: center;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 14px 24px;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.rgs-cart-sidebar__body .woocommerce-mini-cart__buttons .button.wc-forward {
  background: var(--rgs-black);
  color: #fff;
  border: 1px solid var(--rgs-black);
}

.rgs-cart-sidebar__body .woocommerce-mini-cart__buttons .button.wc-forward:hover {
  background: var(--rgs-accent-dark);
  border-color: var(--rgs-accent-dark);
}

.rgs-cart-sidebar__body .woocommerce-mini-cart__buttons .button.checkout {
  background: transparent;
  color: var(--rgs-black);
  border: 1px solid var(--rgs-black);
}

.rgs-cart-sidebar__body .woocommerce-mini-cart__buttons .button.checkout:hover {
  background: var(--rgs-black);
  color: #fff;
}

/* Loading spinner for ATC */
.rgs-cart-sidebar__loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
}

/* ==========================================================================
   Add to Cart — Button Loading State
   ========================================================================== */

.single_add_to_cart_button.loading {
  opacity: 0.65;
  cursor: not-allowed;
  position: relative;
}

.single_add_to_cart_button.loading::after {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255,255,255,0.5);
  border-top-color: #fff;
  border-radius: 50%;
  animation: rgs-btn-spin 0.6s linear infinite;
  margin-left: 8px;
  vertical-align: middle;
}

@keyframes rgs-btn-spin {
  to { transform: rotate(360deg); }
}

.single_add_to_cart_button.added::after {
  display: none;
}

/* ==========================================================================
   Footer — Force visible text/links on dark background
   ========================================================================== */

.rgs-footer,
.rgs-footer p,
.rgs-footer li,
.rgs-footer span {
  color: #ede6df !important;
}

.rgs-footer a {
  color: #b5a09a !important;
}

.rgs-footer a:hover {
  color: #ede6df !important;
}

.rgs-footer__heading {
  color: #ffffff !important;
}

.rgs-footer__copyright {
  color: rgba(237,230,223,0.65) !important;
}

.rgs-footer__legal a {
  color: rgba(237,230,223,0.65) !important;
}

.rgs-footer__legal a:hover {
  color: #b5a09a !important;
}

.rgs-footer__links a {
  color: #b5a09a !important;
}

.rgs-footer__links a:hover {
  color: #ede6df !important;
}

/* Newsletter form colors */
.rgs-footer__newsletter-text {
  color: #ede6df !important;
}

.rgs-footer__newsletter-input {
  color: #ede6df !important;
}

/* ==========================================================================
   WooCommerce Cart & Checkout — compact title bars (no big hero)
   ========================================================================== */

.woocommerce-cart .rgs-inner-title-bar,
.woocommerce-checkout .rgs-inner-title-bar {
  padding: 18px 24px 14px;
  border-bottom: 1px solid var(--rgs-border);
  text-align: center;
  margin-bottom: 0;
}

/* Force woocommerce cart/checkout pages to have consistent page padding */
.woocommerce-cart .rgs-main,
.woocommerce-checkout .rgs-main {
  padding-top: 0;
}

/* ==========================================================================
   Qty Stepper — +/- buttons beside quantity input
   ========================================================================== */

.rgs-qty-wrap {
  display: inline-flex;
  align-items: stretch;
  border: 1px solid var(--rgs-border);
  height: 46px;
}

.rgs-qty-btn {
  background: transparent;
  border: none;
  width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 300;
  color: var(--rgs-black);
  cursor: pointer;
  transition: background 0.2s ease;
  flex-shrink: 0;
}

.rgs-qty-btn:hover {
  background: var(--rgs-off-white);
}

.rgs-qty-btn:first-child {
  border-right: 1px solid var(--rgs-border);
}

.rgs-qty-btn:last-child {
  border-left: 1px solid var(--rgs-border);
}

.rgs-qty-wrap .qty {
  border: none !important;
  width: 50px !important;
  text-align: center;
  padding: 0 !important;
  height: 100% !important;
  flex-shrink: 0;
  -moz-appearance: textfield;
}

.rgs-qty-wrap .qty::-webkit-outer-spin-button,
.rgs-qty-wrap .qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  appearance: none;
}

/* ==========================================================================
   Variation Swatches — button-style size/attribute pickers
   ========================================================================== */

.rgs-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.rgs-swatch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  height: 36px;
  padding: 0 12px;
  border: 1px solid var(--rgs-border);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--rgs-black);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
  background: transparent;
  white-space: nowrap;
}

.rgs-swatch:hover {
  border-color: var(--rgs-black);
}

.rgs-swatch--selected {
  border-color: var(--rgs-black);
  background: var(--rgs-black);
  color: #fff;
}

.rgs-swatch--disabled {
  opacity: 0.35;
  cursor: not-allowed;
  text-decoration: line-through;
}

/* Hide the native select when swatches are active */
.rgs-swatches-active select.rgs-native-select {
  display: none !important;
}

/* ==========================================================================
   Single Product — Variation label styling
   ========================================================================== */

.woocommerce div.product form.cart .variations_form .variations td.label label {
  font-family: var(--font-body) !important;
  font-weight: 400 !important;
  font-size: 11px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.12em !important;
  color: var(--rgs-muted) !important;
  display: block;
  margin-bottom: 10px;
}

.woocommerce div.product form.cart .variations {
  border: none !important;
  margin-bottom: 20px;
}

.woocommerce div.product form.cart .variations td,
.woocommerce div.product form.cart .variations th {
  padding: 0 0 12px !important;
  display: block;
  width: 100%;
  border: none !important;
}

.woocommerce div.product form.cart .variations tr {
  display: block;
}

/* ==========================================================================
   WooCommerce Cart + Checkout page title bar inject via CSS pseudo
   ========================================================================== */

/* Cart page section padding */
.woocommerce-cart .woocommerce {
  padding-top: 0;
}

.woocommerce-cart .shop_table.cart thead th,
.woocommerce-cart .shop_table.cart thead td {
  font-family: var(--font-body) !important;
  font-weight: 400 !important;
  font-size: 10px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.14em !important;
  color: var(--rgs-muted) !important;
}

/* Cart item image — square and consistent */
.woocommerce-cart table.cart .product-thumbnail {
  width: 90px !important;
}

.woocommerce-cart table.cart .product-thumbnail a {
  display: block;
  width: 80px;
  height: 80px;
  overflow: hidden;
  flex-shrink: 0;
}

.woocommerce-cart table.cart .product-thumbnail img {
  width: 80px !important;
  height: 80px !important;
  object-fit: cover !important;
}

/* Cart item name */
.woocommerce-cart table.cart .product-name a {
  font-family: var(--font-heading) !important;
  font-weight: 500 !important;
  font-size: 15px !important;
  color: var(--rgs-black) !important;
  text-decoration: none;
}

.woocommerce-cart table.cart .product-name .variation {
  font-family: var(--font-body) !important;
  font-size: 12px !important;
  color: var(--rgs-muted) !important;
  font-weight: 300 !important;
  margin-top: 4px;
}

/* Cart variation display — clean dt/dd */
.woocommerce-cart table.cart .product-name .variation dt,
.woocommerce-cart table.cart .product-name .variation dd {
  font-size: 12px !important;
  color: var(--rgs-muted) !important;
  font-weight: 300 !important;
}

/* Cart quantity — stepper friendly */
.woocommerce-cart table.cart .product-quantity .qty {
  width: 60px !important;
}

/* Cart totals panel */
.woocommerce-cart .cart_totals h2 {
  font-family: var(--font-heading) !important;
  font-weight: 500 !important;
  font-size: 17px !important;
  color: var(--rgs-black) !important;
  border-bottom: 1px solid var(--rgs-border);
  padding-bottom: 12px;
  margin-bottom: 16px;
}

.woocommerce-cart .cart_totals table td,
.woocommerce-cart .cart_totals table th {
  font-family: var(--font-body) !important;
  font-size: 14px !important;
}

.woocommerce-cart .cart_totals table .order-total th,
.woocommerce-cart .cart_totals table .order-total td {
  font-weight: 600 !important;
  font-size: 15px !important;
}

/* Shipping section */
.woocommerce-cart .cart_totals .shipping-calculator-button {
  font-family: var(--font-body) !important;
  font-size: 12px !important;
  color: var(--rgs-muted) !important;
  text-decoration: underline;
}

/* =========================================================== */
