/*
 * ================================================================
 *  Aanra Theme — components.css
 *  All UI component styles: typography, colours, borders,
 *  transitions, interactive states.
 *  No hardcoded values — all references use tokens from tokens.css.
 * ================================================================
 */


/* ================================================================
   SECTION HEADER PATTERN
   Reused above every major section (label + gold line + heading).
   ================================================================ */
.aanra-section-header {
  text-align: center;
  margin-bottom: 32px;
  padding-top: 0;
}

.aanra-section-label {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brand-accent);
  margin-bottom: 10px;
}

.aanra-gold-line {
  width: 40px;
  height: 1px;
  background-color: var(--brand-gold);
  margin: 0 auto 14px;
}

.aanra-section-heading {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  color: var(--brand-dark);
  line-height: 1.2;
}

@media (min-width: 768px) {
  .aanra-section-heading {
    font-size: 52px;
  }
}


/* ================================================================
   BUTTONS
   ================================================================ */
.aanra-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 0;
  cursor: pointer;
  transition: opacity 0.2s ease;
  min-height: 44px;
  line-height: 1;
  border: none;
  text-decoration: none;
}

.aanra-btn:hover {
  opacity: 0.85;
}

/* Gold filled — hero CTA */
.aanra-btn--gold {
  background-color: var(--brand-gold);
  color: var(--brand-dark);
  padding: 14px 28px;
}

/* Outline — brand story CTA */
.aanra-btn--outline {
  background-color: transparent;
  border: 1px solid var(--brand-gold-muted);
  color: var(--brand-gold);
  padding: 14px 32px;
  font-size: 11px;
}

/* Add to Cart — product card */
.aanra-btn--add-to-cart {
  display: flex;
  width: 100%;
  background-color: var(--brand-accent);
  color: var(--brand-ivory);
  font-size: 11px;
  letter-spacing: 2px;
  padding: 12px;
  min-height: 44px;
  text-align: center;
  justify-content: center;
  border-radius: 0;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  text-transform: uppercase;
  transition: opacity 0.2s ease;
}

.aanra-btn--add-to-cart:hover {
  opacity: 0.85;
}

/* Subscribe — email signup */
.aanra-btn--subscribe {
  background-color: var(--brand-accent) !important;
  color: var(--brand-ivory) !important;
  font-size: 12px;
  letter-spacing: 2px;
  padding: 0 24px;
  white-space: nowrap;
  min-height: 48px;
  height: 48px;
  border-radius: 0;
  border: none;
  width: auto;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-family: var(--font-body);
  text-transform: uppercase;
  transition: opacity 0.2s ease;
}

.aanra-btn--subscribe:hover {
  opacity: 0.85;
}


/* ================================================================
   STICKY HEADER (MOVED TO header.css)
   ================================================================ */

/* ================================================================
   ABOUT PAGE
   ================================================================ */

@media (min-width: 1200px) {
  .aanra-header__inner {
    padding: 0 60px;
  }
}


/* ================================================================
   HERO — TEXT & INTERACTIVE ELEMENTS
   (Positioning / dimensions live in homepage.css)
   ================================================================ */
.aanra-hero__label {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brand-gold);
  margin-bottom: 12px;
}

.aanra-hero__heading {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 400;
  font-style: italic;
  color: var(--brand-gold-light);
  line-height: 1.2;
  margin-bottom: 10px;
}

.aanra-hero__sub {
  font-family: var(--font-body);
  font-size: 15px;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 24px;
}

/* Dots */
.aanra-dot {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background-color: rgba(255, 255, 255, 0.4);
  transition: width 0.3s ease, background-color 0.3s ease;
  padding: 0;
  min-height: 0;
  border: none;
  cursor: pointer;
}

.aanra-dot.is-active {
  width: 20px;
  background-color: var(--brand-gold);
}

/* Arrows */
.aanra-hero__arrow {
  color: var(--brand-gold);
  background-color: rgba(58, 30, 23, 0.5);
  border: 1px solid var(--brand-gold-border);
  transition: background-color 0.2s;
  cursor: pointer;
}

.aanra-hero__arrow:hover {
  background-color: rgba(58, 30, 23, 0.8);
}

@media (min-width: 768px) {
  .aanra-hero__heading {
    font-size: 46px;
  }
}


/* ================================================================
   COLLECTION CARDS
   ================================================================ */
.aanra-collection-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.aanra-collection-card:hover .aanra-collection-card__img-wrap img {
  transform: scale(1.04);
}

.aanra-collection-card__name {
  display: block;
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--brand-dark);
  margin-top: 10px;
  line-height: 1.3;
}


/* ================================================================
   PRODUCT CARDS
   ================================================================ */
.aanra-product-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* NEW badge */
.aanra-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: var(--brand-accent);
  color: var(--brand-ivory);
  font-family: var(--font-body);
  font-size: 8px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 8px;
  line-height: 1;
}

/* Wishlist heart */
.aanra-wishlist-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  color: var(--brand-white);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}

.aanra-wishlist-btn:hover {
  color: var(--brand-gold);
}

/* Product info area */
.aanra-product-card__info {
  padding-top: 10px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.aanra-product-card__name {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--brand-dark);
  line-height: 1.3;
  margin-bottom: 6px;
}

.aanra-product-card__pricing {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 10px;
}

.aanra-product-card__price {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--brand-price);
}

.aanra-product-card__orig {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--brand-price-orig);
  text-decoration: line-through;
}


/* ================================================================
   BRAND STORY — TYPOGRAPHY
   ================================================================ */
/* Label on dark background */
.aanra-brand-story .aanra-section-label {
  color: var(--brand-dark);
}

.aanra-brand-story__quote {
  font-family: var(--font-display);
  font-size: 40px;
  font-style: italic;
  font-weight: 400;
  color: var(--brand-dark);
  line-height: 1.3;
  margin-top: 16px;
  margin-bottom: 20px;
  quotes: none;
  border: none;
  border-left: none;
  padding-left: 0;
}

.aanra-brand-story__body {
  font-family: var(--font-body);
  font-size: 17px;
  color: rgba(58, 30, 23, 0.7);
  line-height: 1.9;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .aanra-brand-story__quote {
    font-size: 56px;
  }
}


/* ================================================================
   TRUST SIGNALS — ITEM TYPOGRAPHY
   ================================================================ */
.aanra-trust__item {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.aanra-trust__label {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--brand-accent);
}


/* ================================================================
   EMAIL SIGNUP — FORM COMPONENTS
   ================================================================ */
.aanra-email-signup__heading {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--brand-dark);
  margin-bottom: 10px;
}

.aanra-email-signup__sub {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--brand-email-sub);
  line-height: 1.7;
  margin-bottom: 20px;
}

.aanra-email-signup__input {
  flex: 1;
  background-color: var(--brand-white);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 14px 16px;
  border: 1px solid rgba(58, 30, 23, 0.2);
  border-right: none;
  outline: none !important;
  border-radius: 0;
  min-height: 48px;
  color: var(--brand-dark);
  -webkit-appearance: none;
  box-shadow: none !important;
}

.aanra-email-signup__input::placeholder {
  color: var(--brand-subtext);
}

@media (min-width: 768px) {
  .aanra-email-signup__heading {
    font-size: 36px;
  }
}


/* ================================================================
   FOOTER
   ================================================================ */
.aanra-footer__logo {
  display: inline-block;
  line-height: 0;
}

/* <img> tag version (allows onerror fallback) */
.aanra-footer__logo-img {
  display: block;
  height: var(--logo-height-mobile);
  width: auto;
  margin: 0 auto;
}

/* Text shown if logo image fails to load */
.aanra-footer__logo-fallback {
  display: none;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 28px;
  color: var(--brand-gold);
  line-height: 1;
}

.aanra-footer__tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  color: rgba(var(--brand-accent-rgb), 0.6);
  margin-top: 6px;
}

.aanra-footer__divider {
  width: 100%;
  border: none;
  border-top: 1px solid var(--brand-gold-border);
  margin: 24px 0;
}

.aanra-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 24px;
  margin-bottom: 20px;
}

.aanra-footer__links a {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand-gold-muted);
  transition: opacity 0.2s;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.aanra-footer__links a:hover {
  opacity: 0.7;
}

.aanra-footer__copy {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(var(--brand-accent-rgb), 0.4);
}

@media (min-width: 768px) {
  .aanra-footer__logo-img {
    height: var(--logo-height-desktop);
  }
}


/* ================================================================
   WHATSAPP FLOATING BUTTON
   ================================================================ */
.aanra-whatsapp {
  border-radius: 50%;
  background-color: var(--brand-whatsapp);
  color: var(--brand-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.aanra-whatsapp:hover {
  transform: scale(1.08);
}

.aanra-whatsapp__tooltip {
  position: absolute;
  left: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--brand-accent);
  color: var(--brand-ivory);
  font-family: var(--font-body);
  font-size: 13px;
  padding: 6px 12px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  border: 1px solid var(--brand-gold-border);
}

.aanra-whatsapp:hover .aanra-whatsapp__tooltip {
  opacity: 1;
}

/* Product name link color fix */
.aanra-product-card__name a,
.aanra-product-card__name a:visited,
.aanra-product-card__name a:hover {
  color: var(--brand-dark);
  text-decoration: none;
}

/* ================================================================
   FOOTER OVERRIDES — must load after Kadence global styles
   ================================================================ */
.aanra-footer,
.aanra-footer * {
  box-sizing: border-box;
}

.aanra-footer h3 {
  color: var(--brand-accent) !important;
  font-family: 'Jost', system-ui, sans-serif !important;
  font-size: 10px !important;
  font-weight: 500 !important;
  font-style: normal !important;
  letter-spacing: 3px !important;
  text-transform: uppercase !important;
  margin-bottom: 16px !important;
}

.aanra-footer a,
.aanra-footer a:visited {
  color: var(--brand-accent) !important;
  text-decoration: none !important;
}

.aanra-footer a:hover {
  opacity: 0.7 !important;
}

.aanra-footer__logo-text {
  color: var(--brand-accent) !important;
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-style: italic !important;
  font-size: 28px !important;
}

.aanra-footer__col {
  text-align: left !important;
}

.aanra-footer__links {
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
}

.aanra-footer__social-icon {
  color: var(--brand-accent) !important;
}

.aanra-footer__contact-item {
  color: var(--brand-accent) !important;
}

/* Footer col 1 vertical rhythm */
.aanra-footer__col--brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.aanra-footer__tagline {
  margin-top: 4px;
}

/* WhatsApp floating button */
.aanra-whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 16px;
  z-index: 1200;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease;
  text-decoration: none;
}

.aanra-whatsapp-fab:hover {
  transform: scale(1.08);
}

@media (max-width: 767px) {
  .aanra-whatsapp-fab {
    bottom: 80px;
    right: 12px;
    width: 48px;
    height: 48px;
  }
}

.aanra-whatsapp-fab svg {
  width: 28px;
  height: 28px;
  stroke: #ffffff;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ================================================================
   SHOP PAGE
   ================================================================ */
.aanra-shop {
  background: var(--brand-white);
  min-height: 60vh;
  padding: 0;
}

.aanra-shop__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(58,30,23,0.1);
  position: sticky;
  top: var(--header-offset-desktop);
  background: var(--brand-white);
  z-index: 100;
}
@media (max-width: 767px) {
  .aanra-shop__toolbar { 
    top: var(--header-offset-mobile); 
  }
}
@media (min-width: 768px) {
  .aanra-shop__toolbar {
    padding: 16px 40px;
  }
}

/* Center section label in toolbar (for new arrivals page) */
.aanra-shop__toolbar .aanra-section-label {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.aanra-shop__filter-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: 1px solid var(--brand-gold-border);
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--brand-accent);
  cursor: pointer;
  padding: 8px 14px;
  border-radius: 0;
  text-transform: uppercase;
}

.aanra-shop__sort {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.aanra-shop__sort select {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--brand-dark);
  border: 1px solid rgba(58,30,23,0.2);
  background: none;
  cursor: pointer;
  outline: none;
  padding: 8px 14px;
  border-radius: 2px;
  width: 100%;
  max-width: 160px;
}

.aanra-shop__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(58,30,23,0.08);
  margin: 0;
}

.aanra-shop-card {
  background: var(--brand-white);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.aanra-shop-card__img-link {
  display: block;
  text-decoration: none;
}

.aanra-shop-card__img-wrap {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--brand-ivory);
  width: 100%;
  flex-shrink: 0;
}

.aanra-shop-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.aanra-shop-card:hover .aanra-shop-card__img-wrap img {
  transform: scale(1.04);
}

.aanra-shop-card__info {
  padding: 12px 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.aanra-shop-card__name {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--brand-dark);
  text-decoration: none;
  line-height: 1.3;
}

.aanra-shop-card__price {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--brand-price);
}

.aanra-shop-card__atc {
  margin-top: 8px;
  width: 100%;
  background: var(--brand-accent);
  color: var(--brand-ivory);
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 1px;
  padding: 10px 4px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (min-width: 768px) {
  .aanra-shop-card__atc {
    font-size: 11px;
    letter-spacing: 2px;
    padding: 12px;
    white-space: normal;
  }
}

.aanra-shop-card__atc:hover {
  opacity: 0.85;
}

.aanra-shop__empty {
  grid-column: 1/-1;
  text-align: center;
  padding: 60px;
  font-family: var(--font-body);
  color: var(--brand-dark);
}

/* Filter Drawer */
.aanra-filter-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 300px;
  height: 100%;
  background: var(--brand-white);
  z-index: 1200;
  transform: translateX(-100%);
  transition: transform 0.35s ease;
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(58,30,23,0.1);
}

.aanra-filter-drawer.is-open {
  transform: translateX(0);
}

.aanra-filter-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px;
  border-bottom: 1px solid rgba(58,30,23,0.1);
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--brand-dark);
}

.aanra-filter-drawer__close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--brand-dark);
  padding: 0;
  display: flex;
}

.aanra-filter-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.aanra-filter-group {
  margin-bottom: 28px;
}

.aanra-filter-group__title {
  font-family: var(--font-body) !important;
  font-size: 10px !important;
  letter-spacing: 2px !important;
  color: var(--brand-dark) !important;
  margin-bottom: 14px !important;
  font-weight: 500 !important;
  font-style: normal !important;
}

.aanra-filter-option {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--brand-dark);
}

.aanra-filter-option input[type="checkbox"] {
  width: 16px;
  height: 16px;
  border: 1px solid rgba(58,30,23,0.3);
  border-radius: 2px;
  cursor: pointer;
  accent-color: var(--brand-dark);
  flex-shrink: 0;
}

.aanra-filter-drawer__footer {
  padding: 16px 20px;
  border-top: 1px solid rgba(58,30,23,0.1);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.aanra-filter-drawer__apply {
  width: 100%;
  background: var(--brand-accent);
  color: var(--brand-ivory);
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 2px;
  padding: 14px;
  border: none;
  cursor: pointer;
}

.aanra-filter-drawer__clear {
  width: 100%;
  background: none;
  border: 1px solid rgba(58,30,23,0.2);
  color: var(--brand-dark);
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 2px;
  padding: 12px;
  cursor: pointer;
}

.aanra-filter-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1150;
}

.aanra-filter-overlay.is-open {
  display: block;
}

@media (min-width: 768px) {
  .aanra-shop__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .aanra-filter-drawer {
    width: 340px;
  }
}

/* ================================================================
   SHOP PAGE FIXES
   ================================================================ */

/* Remove grey gap cells in incomplete grid rows */
.aanra-shop__grid {
  background-color: var(--brand-white) !important;
  gap: 0 !important;
}

.aanra-shop-card {
  border-right: 1px solid rgba(58, 30, 23, 0.08) !important;
  border-bottom: 1px solid rgba(58, 30, 23, 0.08) !important;
}

/* Hide Kadence default footer on shop pages */
.woocommerce-page #colophon,
.woocommerce-page .site-footer,
.woocommerce #colophon,
.woocommerce .site-footer,
.woocommerce-checkout #colophon,
.woocommerce-checkout .site-footer,
.woocommerce-order-received #colophon,
.woocommerce-order-received .site-footer,
.woocommerce-account #colophon,
.woocommerce-account .site-footer,
.woocommerce-cart #colophon,
.woocommerce-cart .site-footer {
  display: none !important;
}

/* Enqueue shop CSS on shop pages */
.woocommerce-page .aanra-shop,
.woocommerce .aanra-shop {
  padding-top: 0;
}

/* Last row empty cells — hide them */
.aanra-shop-card:empty {
  display: none !important;
}

/* Fix footer transparency on shop page */
.woocommerce-page .aanra-footer,
.woocommerce .aanra-footer {
  background-color: var(--brand-ivory) !important;
  opacity: 1 !important;
  display: block !important;
  width: 100% !important;
}

.woocommerce-page .aanra-footer *,
.woocommerce .aanra-footer * {
  opacity: 1 !important;
}

.woocommerce-page .aanra-footer__inner,
.woocommerce .aanra-footer__inner {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 32px !important;
  width: 100% !important;
  max-width: var(--max-content-width) !important;
  margin: 0 auto !important;
  padding: 40px 24px !important;
}

@media (min-width: 768px) {
  .woocommerce-page .aanra-footer__inner,
  .woocommerce .aanra-footer__inner {
    grid-template-columns: 1.4fr 1fr 1fr 1fr !important;
    gap: 40px !important;
  }
}

/* Shop toolbar positioning - consolidated from multiple duplicates */

/* Last row — fill remaining cells with invisible placeholders */
.aanra-shop__grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  align-items: stretch !important;
}

@media (min-width: 768px) {
  .aanra-shop__grid {
    grid-template-columns: repeat(4, 1fr) !important;
  }
}

/* Footer col 1 background fix on shop page */
.woocommerce-page .aanra-footer__col--brand,
.woocommerce .aanra-footer__col--brand {
  background-color: var(--brand-ivory) !important;
}

.aanra-shop-card--placeholder {
  border: none !important;
  background: transparent !important;
  pointer-events: none;
}

/* ================================================================
   SINGLE PRODUCT PAGE
   ================================================================ */
.aanra-product {
  background: var(--brand-white);
  padding-bottom: 0;
}

/* ================================================================
   PRODUCT DETAIL PAGE
   ================================================================ */
.aanra-product {
  background: var(--brand-white);
  margin-top: var(--header-offset-desktop);
}
@media (max-width: 767px) {
  .aanra-product { margin-top: var(--header-offset-mobile); }
}

.aanra-product__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 20px 48px;
}
@media (min-width: 768px) {
  .aanra-product__inner {
    grid-template-columns: 56px 1fr 1fr;
    gap: 0;
    padding: 40px 40px 64px;
    align-items: start;
  }
}

/* Gallery */
.aanra-product__gallery {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 768px) {
  .aanra-product__gallery {
    flex-direction: row;
    gap: 12px;
    grid-column: 1 / 3;
    padding-right: 40px;
  }
}

.aanra-product__thumbs {
  display: flex;
  flex-direction: row;
  gap: 8px;
  flex-wrap: wrap;
  order: 2;
}
@media (min-width: 768px) {
  .aanra-product__thumbs {
    flex-direction: column;
    order: 1;
    flex-wrap: nowrap;
    flex-shrink: 0;
    width: 56px;
    gap: 8px;
    overflow-y: auto;
    max-height: calc(56px * 1.286 * 6 + 8px * 5);
  }
}

.aanra-product__thumb {
  width: 56px;
  height: 72px;
  cursor: pointer;
  border: 1.5px solid transparent;
  overflow: hidden;
  flex-shrink: 0;
  transition: border-color 0.2s;
}
.aanra-product__thumb.is-active {
  border-color: var(--brand-gold);
}
.aanra-product__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.aanra-product__main-img {
  position: relative;
  order: 1;
  flex: 1;
  min-width: 0;
}
@media (min-width: 768px) {
  .aanra-product__main-img { order: 2; }
}

.aanra-product__main-img img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  background: var(--brand-ivory);
  display: block;
}

.aanra-product__gallery .aanra-product__img-prev,
.aanra-product__gallery .aanra-product__img-next,
.aanra-product__img-prev,
.aanra-product__img-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.92) !important;
  border: 0.5px solid rgba(58,30,23,0.15) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  color: var(--brand-dark) !important;
  border-radius: 0 !important;
  padding: 0 !important;
  font-size: inherit !important;
  line-height: inherit !important;
}
.aanra-product__img-prev { left: 10px; display: none !important; }
.aanra-product__img-next { right: 10px; display: none !important; }
@media (min-width: 768px) {
  .aanra-product__img-prev { display: flex !important; }
  .aanra-product__img-next { display: flex !important; }
}
.aanra-product__img-prev svg,
.aanra-product__img-next svg { stroke: var(--brand-dark); }

.aanra-product__gallery .aanra-product__img-prev:hover,
.aanra-product__gallery .aanra-product__img-prev:active,
.aanra-product__gallery .aanra-product__img-prev:focus,
.aanra-product__gallery .aanra-product__img-next:hover,
.aanra-product__gallery .aanra-product__img-next:active,
.aanra-product__gallery .aanra-product__img-next:focus {
  background: rgba(255,255,255,0.92) !important;
  color: var(--brand-dark) !important;
  box-shadow: none !important;
}

.aanra-product__dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 3;
}
@media (min-width: 768px) {
  .aanra-product__dots {
    display: none;
  }
}
.aanra-product__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  transition: background 0.2s;
}
.aanra-product__dot.is-active {
  background: var(--brand-gold);
}

/* Info column */
.aanra-product__info {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.aanra-product__breadcrumb {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--brand-subtext);
  margin-bottom: 14px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.aanra-product__breadcrumb a {
  color: var(--brand-subtext);
  text-decoration: none;
}
.aanra-product__breadcrumb a:hover { color: var(--brand-dark); }

.aanra-product__name {
  font-family: var(--font-display) !important;
  font-size: 26px !important;
  font-weight: 400 !important;
  color: var(--brand-dark) !important;
  line-height: 1.2 !important;
  margin-bottom: 10px !important;
}

.aanra-product__price {
  font-family: var(--font-body);
  font-size: 20px;
  color: var(--brand-price);
  margin-bottom: 4px;
}

.aanra-product__tax-note {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--brand-subtext);
  margin-bottom: 16px;
}

.aanra-product__short-desc {
  font-family: var(--font-body);
  font-size: 15px;
  color: #666;
  line-height: 1.75;
  margin-bottom: 0;
}

.aanra-product__divider {
  height: 0.5px;
  background: rgba(58,30,23,0.1);
  margin: 18px 0;
}

/* Trust strip */
.aanra-product__trust-strip {
  padding: 4px 0;
}
.aanra-product__trust-item {
  display: flex;
  align-items: center;
  padding: 10px 4px;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--brand-accent);
}
.aanra-product__trust-dot {
  color: var(--brand-gold);
  margin-right: 12px;
  font-size: 22px;
  line-height: 1;
}

/* ATC row */
.aanra-product__atc-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.aanra-product__qty-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.aanra-product__icon-btns {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.aanra-product__qty {
  display: flex;
  align-items: center;
  border: 0.5px solid rgba(58,30,23,0.2);
  border-radius: 0;
  overflow: hidden;
  width: fit-content;
  background: var(--brand-white);
}

.aanra-qty-btn {
  width: 42px;
  height: 44px;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  font-size: 18px;
  cursor: pointer;
  color: var(--brand-dark);
  font-family: var(--font-body);
}

.aanra-qty-input {
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  text-align: center;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--brand-dark);
  outline: none;
  -webkit-appearance: none;
}

.tinv-wishlist-clear { display: none !important; }

.tinvwl-shortcode-add-to .tinvwl_add_to_wishlist_button,
a.tinvwl_add_to_wishlist_button {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 44px !important;
  height: 44px !important;
  border: 0.5px solid rgba(58,30,23,0.2) !important;
  background: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  color: var(--brand-dark) !important;
  text-decoration: none !important;
}

a.tinvwl_add_to_wishlist_button:hover {
  border-color: var(--brand-dark) !important;
  background: none !important;
}

a.tinvwl_add_to_wishlist_button .tinvwl-label { display: none !important; }

.aanra-product__submit {
  width: 100%;
}

.aanra-product__out-of-stock {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--brand-subtext);
  margin-bottom: 8px;
}

.aanra-product__out-of-stock a {
  color: var(--brand-dark);
  text-decoration: underline;
}

/* Detail accordion (single-open) */
.aanra-product__accordion {
  margin-top: 8px;
  border-top: 0.5px solid rgba(58,30,23,0.12);
}

.aanra-product__acc-item {
  border-bottom: 0.5px solid rgba(58,30,23,0.12);
}

.aanra-product__acc-header,
.aanra-product__acc-header:hover,
.aanra-product__acc-header:focus,
.aanra-product__acc-header:active {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 4px;
  background: none !important;
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  cursor: pointer;
  text-align: left;
}
.aanra-product__acc-title {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--brand-dark);
}
.aanra-product__acc-chevron {
  color: var(--brand-dark);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.aanra-product__acc-item.is-open .aanra-product__acc-chevron {
  transform: rotate(180deg);
}

/* Panel collapses via max-height for a smooth open/close */
.aanra-product__acc-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.aanra-product__acc-item.is-open .aanra-product__acc-panel {
  max-height: 1500px;
}
.aanra-product__acc-panel-inner {
  padding: 0 4px 18px;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.8;
  color: rgba(58,30,23,0.65);
}

/* Spec table fallback (used inside Product Description when empty) */
.aanra-product__spec-table {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.aanra-product__spec-row {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 0.5px solid rgba(58,30,23,0.07);
  font-size: 13px;
}
.aanra-product__spec-row span:first-child { color: var(--brand-subtext); }
.aanra-product__spec-row span:last-child { color: var(--brand-dark); font-weight: 500; }

/* Related products */
.aanra-product__related {
  padding: 48px 20px;
  background: var(--brand-ivory);
}
@media (min-width: 768px) {
  .aanra-product__related { padding: 48px 60px; }
}

/* ================================================================
   CART PAGE
   ================================================================ */
.aanra-cart {
  background: var(--brand-white);
  min-height: 60vh;
}

.aanra-cart__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.aanra-cart__title {
  font-family: var(--font-display) !important;
  font-size: 32px !important;
  font-weight: 400 !important;
  color: var(--brand-dark) !important;
  grid-column: 1 / -1;
  margin-bottom: 0 !important;
}

.aanra-cart-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(58,30,23,0.1);
}

.aanra-cart-item__img-link img {
  width: 90px;
  height: 120px;
  object-fit: cover;
  background: var(--brand-ivory);
  flex-shrink: 0;
}

.aanra-cart-item__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.aanra-cart-item__name {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--brand-dark);
  text-decoration: none;
  line-height: 1.3;
}

.aanra-cart-item__price {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--brand-price);
}

.aanra-cart-item__subtotal {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--brand-dark);
  white-space: nowrap;
  align-self: center;
}

.aanra-cart-item__remove {
  color: #999;
  align-self: center;
  transition: color 0.2s;
}

.aanra-cart-item__remove:hover {
  color: var(--brand-dark);
}

.aanra-cart__update {
  background: none;
  border: 1px solid rgba(58,30,23,0.2);
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--brand-dark);
  padding: 10px 20px;
  cursor: pointer;
  margin-top: 16px;
}

.aanra-cart__summary {
  background: var(--brand-ivory);
  padding: 24px;
}

.aanra-cart__summary-title {
  font-family: var(--font-display) !important;
  font-size: 20px !important;
  font-weight: 400 !important;
  color: var(--brand-dark) !important;
  margin-bottom: 20px !important;
}

.aanra-cart__checkout-btn {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 16px;
}

.aanra-cart__continue {
  display: block;
  text-align: center;
  font-family: var(--font-body);
  font-size: 13px;
  color: #999;
  margin-top: 12px;
  text-decoration: none;
}

@media (min-width: 768px) {
  .aanra-cart__inner {
    grid-template-columns: 1fr 380px;
    padding: 48px 60px;
    align-items: start;
  }

  .aanra-cart__title {
    grid-column: 1 / -1;
  }
}

/* ================================================================
   ABOUT PAGE
   ================================================================ */
.aanra-about__hero {
  height: 60vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 48px 40px;
  position: relative;
}

.aanra-about__hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,5,0,0.7) 40%, transparent 100%);
}

.aanra-about__hero-content {
  position: relative;
  z-index: 2;
}

.aanra-about__headline {
  font-family: var(--font-display) !important;
  font-size: 48px !important;
  font-style: italic !important;
  font-weight: 400 !important;
  color: var(--brand-gold-light) !important;
  line-height: 1.2 !important;
}

.aanra-about__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 24px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.aanra-about__story-text {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.9;
  color: #444;
  margin-top: 16px;
}

.aanra-about__values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 24px;
}

.aanra-about__value h3 {
  font-family: var(--font-display) !important;
  font-size: 22px !important;
  font-weight: 400 !important;
  color: var(--brand-dark) !important;
  margin-bottom: 8px !important;
}

.aanra-about__value p {
  font-family: var(--font-body);
  font-size: 17px;
  color: #666;
  line-height: 1.7;
}

.aanra-about__founder {
  text-align: center;
  padding: 48px 0;
  border-top: 1px solid rgba(58,30,23,0.1);
}

.aanra-about__founder-note {
  font-family: var(--font-display);
  font-size: 28px;
  font-style: italic;
  color: var(--brand-dark);
  line-height: 1.5;
  margin-bottom: 16px;
}

.aanra-about__founder-name {
  font-family: var(--font-body);
  font-size: 15px;
  letter-spacing: 2px;
  color: var(--brand-gold-muted);
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .aanra-about__values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ================================================================
   404 PAGE
   ================================================================ */
.aanra-404 {
  background: var(--brand-white);
  min-height: 60vh;
}

.aanra-404__inner {
  max-width: 560px;
  margin: 0 auto;
  padding: 80px 24px;
  text-align: center;
}

.aanra-404__title {
  font-family: var(--font-display) !important;
  font-size: 40px !important;
  font-weight: 400 !important;
  color: var(--brand-dark) !important;
  margin: 12px 0 !important;
}

.aanra-404__desc {
  font-family: var(--font-body);
  font-size: 15px;
  color: #666;
  margin-bottom: 32px;
  line-height: 1.7;
}

.aanra-404__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ================================================================
   RESPONSIVE HEADER OFFSET FOR CUSTOM PAGE TEMPLATES
   ================================================================ */
.aanra-shop,
.aanra-product,
.aanra-cart,
.aanra-404,
.aanra-about,
.aanra-new-arrivals-page {
  margin-top: var(--header-offset-desktop);
}
@media (max-width: 767px) {
  .aanra-shop,
  .aanra-product,
  .aanra-cart,
  .aanra-404,
  .aanra-about,
  .aanra-new-arrivals-page {
    margin-top: var(--header-offset-mobile);
  }
}

/* ================================================================
   CART DRAWER
   ================================================================ */
.aanra-cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 400px;
  height: 100vh;
  height: 100dvh;
  max-width: 100vw;
  background: var(--brand-white);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s ease;
}
.aanra-cart-drawer.is-open {
  transform: translateX(0);
}
.aanra-cart-drawer__header {
  background: var(--brand-ivory);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  border-bottom: 1px solid var(--brand-gold-border);
}
.aanra-cart-drawer__title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  color: var(--brand-dark) !important;
}
.aanra-cart-drawer__count {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--brand-dark);
  margin-left: 6px;
}
.aanra-cart-drawer__close {
  background: none;
  border: none;
  color: var(--brand-dark) !important;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.aanra-cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 0 20px;
}
.aanra-cart-drawer__item {
  display: flex;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 0.5px solid var(--brand-gold-border);
}
.aanra-cart-drawer__item-img img {
  width: 80px;
  height: 106px;
  object-fit: cover;
  background: var(--brand-ivory);
  display: block;
}
.aanra-cart-drawer__item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.aanra-cart-drawer__item-name {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--brand-dark);
  text-decoration: none;
  line-height: 1.3;
}
.aanra-cart-drawer__item-price {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--brand-price);
}
.aanra-cart-drawer__item-qty {
  display: flex;
  align-items: center;
  gap: 0;
  border: 0.5px solid rgba(58,30,23,0.2);
  width: fit-content;
  margin-top: 4px;
}
.aanra-qty-minus,
.aanra-qty-plus,
.aanra-qty-minus:hover,
.aanra-qty-plus:hover,
.aanra-qty-minus:focus,
.aanra-qty-plus:focus,
.aanra-qty-minus:active,
.aanra-qty-plus:active {
  width: 42px !important;
  height: 44px !important;
  background: none !important;
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  color: var(--brand-dark) !important;
  cursor: pointer;
  font-size: 18px !important;
  line-height: 1 !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  flex-shrink: 0;
  -webkit-appearance: none;
  appearance: none;
  outline: none !important;
  padding: 0 !important;
}
.aanra-qty-val {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--brand-dark);
}
.aanra-cart-drawer__item-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
}
.aanra-cart-drawer__remove {
  color: var(--brand-gold-muted);
  transition: color 0.2s;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0;
}
.aanra-cart-drawer__remove:hover {
  color: var(--brand-dark);
}
.aanra-cart-drawer__item-subtotal {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--brand-dark);
}
.aanra-cart-drawer__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  gap: 20px;
  text-align: center;
}
.aanra-cart-drawer__empty p {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--brand-subtext);
}
.aanra-cart-drawer__empty-title {
  font-family: var(--font-display) !important;
  font-style: italic;
  font-size: 22px !important;
  color: var(--brand-dark) !important;
  margin-bottom: -8px;
}
.aanra-cart-drawer__empty-sub {
  font-size: 14px !important;
  color: var(--brand-subtext) !important;
}
.aanra-cart-drawer__recs {
  padding: 20px 0;
}
.aanra-cart-drawer__recs-title {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand-gold-muted);
  margin-bottom: 12px;
}
.aanra-cart-drawer__recs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.aanra-cart-drawer__rec-card {
  border: 0.5px solid var(--brand-gold-border);
  text-decoration: none;
  display: block;
}
.aanra-cart-drawer__rec-img img {
  width: 100%;
  height: 64px;
  object-fit: cover;
  display: block;
  background: var(--brand-ivory);
}
.aanra-cart-drawer__rec-info {
  padding: 8px;
}
.aanra-cart-drawer__rec-name {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--brand-dark);
  line-height: 1.3;
  margin-bottom: 3px;
}
.aanra-cart-drawer__rec-price {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--brand-price);
}
.aanra-cart-drawer__footer {
  padding: 16px 20px;
  border-top: 0.5px solid var(--brand-gold-border);
  flex-shrink: 0;
  background: var(--brand-white);
  position: sticky;
  bottom: 0;
  z-index: 2;
}
.aanra-cart-drawer__summary {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}
.aanra-cart-drawer__sum-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--brand-subtext);
}
.aanra-cart-drawer__sum-savings {
  color: #3B6D11;
}
.aanra-cart-drawer__sum-total {
  font-size: 17px;
  color: var(--brand-dark);
  font-weight: 500;
  padding-top: 10px;
  border-top: 0.5px solid var(--brand-gold-border);
  margin-top: 4px;
}
.aanra-cart-drawer__checkout-btn {
  display: block;
  width: 100%;
  background: var(--brand-gold);
  color: var(--brand-dark) !important;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  text-align: center;
  padding: 14px;
  text-decoration: none !important;
  transition: opacity 0.2s;
  letter-spacing: 0.5px;
}
.aanra-cart-drawer__checkout-btn:hover,
.aanra-cart-drawer__checkout-btn:active,
.aanra-cart-drawer__checkout-btn:focus {
  opacity: 0.88;
  color: var(--brand-dark) !important;
  background: var(--brand-gold) !important;
  text-decoration: none !important;
}
.aanra-cart-drawer__trust {
  font-family: var(--font-body);
  font-size: 10px;
  color: var(--brand-subtext);
  text-align: center;
  margin-top: 8px;
  letter-spacing: 0.5px;
}
.aanra-cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1150;
  display: none;
}
.aanra-cart-drawer-overlay.is-open {
  display: block;
}
@media (max-width: 767px) {
  .aanra-cart-drawer {
    width: 100%;
  }
}

/* ================================================================
   CHECKOUT PAGE
   ================================================================ */
.aanra-checkout {
  background: var(--brand-white);
  min-height: 80vh;
  margin-top: var(--header-offset-desktop);
}
@media (max-width: 767px) {
  .aanra-checkout { margin-top: var(--header-offset-mobile); }
}
.aanra-checkout__steps {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 8px;
  background: var(--brand-white);
  border-bottom: 0.5px solid var(--brand-gold-border);
}
@media (min-width: 480px) {
  .aanra-checkout__steps {
    padding: 14px 20px;
  }
}
.aanra-checkout__step {
  display: flex;
  align-items: center;
  gap: 4px;
}
@media (min-width: 480px) {
  .aanra-checkout__step {
    gap: 8px;
  }
}
.aanra-checkout__step-num {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 9px;
  flex-shrink: 0;
}
@media (min-width: 480px) {
  .aanra-checkout__step-num {
    width: 22px;
    height: 22px;
    font-size: 10px;
  }
}
.aanra-checkout__step-label {
  font-family: var(--font-body);
  font-size: 8px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
@media (min-width: 480px) {
  .aanra-checkout__step-label {
    font-size: 11px;
    letter-spacing: 1px;
  }
}
.aanra-checkout__step--done .aanra-checkout__step-num {
  background: var(--brand-gold) !important;
  color: var(--brand-dark) !important;
  border-color: var(--brand-gold) !important;
}
.aanra-checkout__step--done .aanra-checkout__step-label { color: var(--brand-dark); }
.aanra-checkout__step--active .aanra-checkout__step-num {
  background: var(--brand-gold);
  color: var(--brand-dark);
}
.aanra-checkout__step--active .aanra-checkout__step-label {
  color: var(--brand-dark);
  font-weight: 500;
}
.aanra-checkout__step--inactive .aanra-checkout__step-num {
  background: rgba(58,30,23,0.08);
  color: var(--brand-subtext);
}
.aanra-checkout__step--inactive .aanra-checkout__step-label { color: var(--brand-subtext); }
.aanra-checkout__step-arrow {
  color: var(--brand-subtext);
  font-size: 10px;
  padding: 0 4px;
}
@media (min-width: 480px) {
  .aanra-checkout__step-arrow {
    font-size: 17px;
    padding: 0 12px;
  }
}
.aanra-checkout__inner {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .aanra-checkout__inner {
    grid-template-columns: 1fr 380px;
  }
}
.aanra-checkout__form-col {
  padding: 32px 24px;
  border-right: 0.5px solid var(--brand-gold-border);
  order: 2;
  align-self: start;
}
@media (min-width: 768px) {
  .aanra-checkout__form-col {
    padding: 40px 48px;
    order: 1;
  }
}
.aanra-checkout__section { margin-bottom: 32px; }
.aanra-checkout__section-label {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(58,30,23,0.4);
  margin-bottom: 16px;
}
.aanra-checkout__form .form-row { margin-bottom: 12px; }
.aanra-checkout__form .form-row label {
  font-family: var(--font-body) !important;
  font-size: 10px !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  color: rgba(58,30,23,0.5) !important;
  margin-bottom: 5px !important;
  display: block !important;
}
.aanra-checkout__form .form-row input[type="text"],
.aanra-checkout__form .form-row input[type="email"],
.aanra-checkout__form .form-row input[type="tel"],
.aanra-checkout__form .form-row input[type="number"],
.aanra-checkout__form .form-row input[type="password"],
.aanra-checkout__form .form-row select,
.aanra-checkout__form .form-row textarea {
  width: 100% !important;
  height: 42px !important;
  border: 0.5px solid rgba(58,30,23,0.2) !important;
  border-radius: 0 !important;
  padding: 0 12px !important;
  font-family: var(--font-body) !important;
  font-size: 15px !important;
  color: var(--brand-dark) !important;
  background: var(--brand-white) !important;
  outline: none !important;
  box-shadow: none !important;
  transition: border-color 0.2s ease;
}
.aanra-checkout__form .form-row input:focus,
.aanra-checkout__form .form-row select:focus,
.aanra-checkout__form .form-row textarea:focus {
  border-color: var(--brand-gold) !important;
}
.aanra-checkout__form .form-row textarea {
  height: auto !important;
  padding: 12px !important;
  resize: vertical;
}
.aanra-checkout__form #payment {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
}
.aanra-checkout__form #payment ul.payment_methods {
  border: none !important;
  padding: 0 !important;
  list-style: none !important;
  margin: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.aanra-checkout__form #payment ul.payment_methods li {
  border: 0.5px solid rgba(58,30,23,0.15) !important;
  padding: 12px 16px !important;
  margin: 0 !important;
  border-radius: 0 !important;
  background: var(--brand-white) !important;
}
.aanra-checkout__form #payment ul.payment_methods li label {
  font-family: var(--font-body) !important;
  font-size: 15px !important;
  color: var(--brand-dark) !important;
  cursor: pointer;
}
.aanra-checkout__form #payment .place-order {
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
}
.aanra-checkout__form #payment #place_order {
  width: 100% !important;
  background: var(--brand-accent) !important;
  color: var(--brand-ivory) !important;
  font-family: var(--font-display) !important;
  font-style: italic !important;
  font-size: 15px !important;
  padding: 16px !important;
  border: none !important;
  border-radius: 0 !important;
  cursor: pointer !important;
  letter-spacing: 0.5px !important;
  margin-top: 20px !important;
  transition: opacity 0.2s !important;
}
.aanra-checkout__form #payment #place_order:hover { opacity: 0.88 !important; }
.aanra-checkout__summary-col {
  padding: 32px 24px;
  background: #faf9f7;
  order: 1;
  align-self: start;
}
@media (min-width: 768px) {
  .aanra-checkout__summary-col {
    order: 2;
    align-self: start;
  }
}
.aanra-checkout__summary-title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  color: var(--brand-dark);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}
.aanra-checkout__items {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}
.aanra-checkout__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 0.5px solid var(--brand-gold-border);
}
.aanra-checkout__item-img-wrap {
  position: relative;
  flex-shrink: 0;
}
.aanra-checkout__item-img-wrap img {
  width: 60px;
  height: 80px;
  object-fit: cover;
  background: var(--brand-ivory);
  display: block;
}
.aanra-checkout__item-qty {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 18px;
  height: 18px;
  background: var(--brand-accent);
  color: var(--brand-ivory);
  border-radius: 50%;
  font-family: var(--font-body);
  font-size: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.aanra-checkout__item-name {
  flex: 1;
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--brand-dark);
  line-height: 1.4;
}
.aanra-checkout__item-price {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--brand-price);
  white-space: nowrap;
}
.aanra-checkout__coupon {
  display: flex;
  border: 0.5px solid rgba(58,30,23,0.2);
  margin: 4px 0 4px;
}
.aanra-checkout__coupon-input {
  flex: 1;
  border: none !important;
  outline: none;
  padding: 10px 12px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--brand-dark);
  background: transparent;
}
.aanra-checkout__coupon-input::placeholder { color: var(--brand-subtext); }
.aanra-checkout__coupon-btn {
  background: var(--brand-accent);
  border: none;
  border-left: 0.5px solid rgba(58,30,23,0.2);
  padding: 0 14px;
  height: 38px;
  font-size: 10px;
  white-space: nowrap;
  flex-shrink: 0;
  font-family: var(--font-body);
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--brand-dark);
  cursor: pointer;
}
.aanra-checkout__coupon-msg {
  font-family: var(--font-body);
  font-size: 11px;
  color: #3B6D11;
  min-height: 16px;
  margin-bottom: 8px;
  padding: 0 2px;
}
.aanra-checkout__coupon-msg.error { color: #A32D2D; }
.aanra-checkout__totals {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 16px;
}
.aanra-checkout__total-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--brand-subtext);
  padding: 4px 0;
}
.aanra-checkout__total-saving { color: #3B6D11; }
.aanra-checkout__total-grand {
  font-size: 17px;
  color: var(--brand-dark);
  font-weight: 500;
  border-top: 0.5px solid var(--brand-gold-border);
  padding-top: 12px;
  margin-top: 6px;
}
.aanra-checkout__trust {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-family: var(--font-body);
  font-size: 10px;
  color: var(--brand-subtext);
  letter-spacing: 0.5px;
}
.aanra-checkout__trust svg {
  stroke: var(--brand-gold-muted);
  flex-shrink: 0;
}

/* ================================================================
   ORDER CONFIRMATION PAGE
   ================================================================ */
.aanra-thankyou {
  background: var(--brand-white);
  min-height: 80vh;
  margin-top: var(--header-offset-desktop);
}
@media (max-width: 767px) {
  .aanra-thankyou { margin-top: var(--header-offset-mobile); }
}
.aanra-thankyou__hero {
  background: var(--brand-white);
  text-align: center;
  padding: 48px 24px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.aanra-thankyou__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid var(--brand-gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-gold);
  margin-bottom: 4px;
}
.aanra-thankyou__heading {
  font-family: var(--font-display) !important;
  font-style: italic !important;
  font-size: 36px !important;
  font-weight: 400 !important;
  color: var(--brand-gold-light) !important;
  margin: 0 !important;
}
.aanra-thankyou__sub {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--brand-text-body);
  max-width: 480px;
  line-height: 1.7;
}
.aanra-thankyou__meta-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-bottom: 0.5px solid var(--brand-gold-border);
  background: var(--brand-white);
}
.aanra-thankyou__meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 28px;
  border-right: 0.5px solid var(--brand-gold-border);
  flex: 1;
  min-width: 120px;
}
.aanra-thankyou__meta-item:last-child { border-right: none; }
.aanra-thankyou__meta-label {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand-subtext);
}
.aanra-thankyou__meta-value {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--brand-dark);
  font-weight: 500;
}
.aanra-thankyou__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .aanra-thankyou__inner { padding: 0 40px; }
}
.aanra-thankyou__cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding: 40px 0;
}
@media (min-width: 768px) {
  .aanra-thankyou__cols { grid-template-columns: 1fr 320px; }
}
.aanra-thankyou__col-label {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(58,30,23,0.4);
  margin-bottom: 20px;
}
.aanra-thankyou__item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 0.5px solid var(--brand-gold-border);
}
.aanra-thankyou__item-img-wrap {
  position: relative;
  flex-shrink: 0;
}
.aanra-thankyou__item-img-wrap img {
  width: 72px;
  height: 96px;
  object-fit: cover;
  background: var(--brand-ivory);
  display: block;
}
.aanra-thankyou__item-qty {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 18px;
  height: 18px;
  background: var(--brand-accent);
  color: var(--brand-ivory);
  border-radius: 50%;
  font-family: var(--font-body);
  font-size: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.aanra-thankyou__item-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.aanra-thankyou__item-name {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--brand-dark);
  text-decoration: none;
  line-height: 1.3;
}
.aanra-thankyou__item-name:hover { opacity: 0.7; }
.aanra-thankyou__item-price {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--brand-price);
}
.aanra-thankyou__totals {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 20px;
  padding-top: 4px;
}
.aanra-thankyou__total-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--brand-subtext);
  padding: 4px 0;
}
.aanra-thankyou__total-saving { color: #3B6D11; }
.aanra-thankyou__total-grand {
  font-size: 17px;
  color: var(--brand-dark);
  font-weight: 500;
  border-top: 0.5px solid var(--brand-gold-border);
  padding-top: 12px;
  margin-top: 6px;
}
.aanra-thankyou__address {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--brand-dark);
  line-height: 1.8;
  font-style: normal;
  padding: 16px;
  border: 0.5px solid var(--brand-gold-border);
  margin-bottom: 20px;
}
.aanra-thankyou__cod-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--brand-subtext);
  padding: 12px 14px;
  background: var(--brand-ivory);
  border: 0.5px solid var(--brand-gold-border);
  margin-bottom: 20px;
}
.aanra-thankyou__cod-note svg { stroke: var(--brand-gold-muted); flex-shrink: 0; }
.aanra-thankyou__cta { width: 100%; text-align: center; }

/* ================================================================
   HIDE WOOCOMMERCE COUPON NOTICE
   ================================================================ */
.aanra-checkout .woocommerce-form-coupon-toggle,
.aanra-checkout .coupon-form,
.woocommerce-checkout .woocommerce-form-coupon-toggle,
.woocommerce-checkout .coupon-form {
  display: none !important;
}

/* ================================================================
   KADENCE PAYMENT SECTION SUPPRESSION
   ================================================================ */
body.woocommerce-checkout .kadence-inner-column-inner,
body.woocommerce-checkout .wp-block-kadence-column,
body.woocommerce-checkout .entry-hero,
body.woocommerce-checkout .hero-section,
body.woocommerce-checkout .inner-banner,
body.woocommerce-checkout .page-hero,
body.woocommerce-checkout .kadence-page-hero,
body.woocommerce-checkout .page-title,
body.woocommerce-checkout .entry-header,
body.woocommerce-order-received .entry-hero,
body.woocommerce-order-received .hero-section,
body.woocommerce-order-received .inner-banner,
body.woocommerce-order-received .page-hero,
body.woocommerce-order-received .kadence-page-hero,
body.woocommerce-order-received .page-title,
body.woocommerce-order-received .entry-header {
  display: none !important;
}

body.woocommerce-checkout .aanra-checkout__form #payment,
body.woocommerce-checkout #payment {
  background: transparent !important;
  border: none !important;
  padding: 0 16px !important;
}

body.woocommerce-checkout #payment ul.payment_methods {
  border: none !important;
  padding: 0 !important;
  list-style: none !important;
  margin: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

body.woocommerce-checkout #payment ul.payment_methods li {
  border: 0.5px solid rgba(58,30,23,0.15) !important;
  padding: 12px 16px !important;
  margin: 0 !important;
  border-radius: 0 !important;
  background: var(--brand-white) !important;
}

body.woocommerce-checkout #payment ul.payment_methods li label {
  font-family: var(--font-body) !important;
  font-size: 15px !important;
  color: var(--brand-dark) !important;
  cursor: pointer;
}

body.woocommerce-checkout #payment .place-order {
  padding: 16px 0 0 !important;
  background: transparent !important;
  border: none !important;
}

body.woocommerce-checkout #payment #place_order {
  width: 100% !important;
  background: var(--brand-accent) !important;
  color: var(--brand-ivory) !important;
  font-family: var(--font-display) !important;
  font-style: italic !important;
  font-size: 15px !important;
  padding: 16px !important;
  border: none !important;
  border-radius: 0 !important;
  cursor: pointer !important;
  letter-spacing: 0.5px !important;
  transition: opacity 0.2s !important;
}

body.woocommerce-checkout #payment #place_order:hover {
  opacity: 0.88 !important;
}

/* ================================================================
   CHECKOUT -- payment section + field cleanup
   ================================================================ */

/* Hide "Ship to a different address" section entirely */
.aanra-checkout__form .woocommerce-shipping-fields {
  display: none !important;
}

/* Hide Country field — India-only store, value forced via PHP filters */
.aanra-checkout__form .aanra-hidden-field {
  display: none !important;
}

/* Hide WooCommerce privacy policy text before place order */
.aanra-checkout__form .woocommerce-privacy-policy-text {
  display: none !important;
}

/* Hide "Billing details" h3 heading -- we use our own section label */
.aanra-checkout__form .woocommerce-billing-fields h3,
.aanra-checkout__form .woocommerce-billing-fields > h3 {
  display: none !important;
}

/* Payment box -- remove grey background, match Aanra style */
.aanra-checkout__payment .payment_box {
  background: transparent !important;
  padding: 8px 0 4px 28px !important;
  font-family: var(--font-body) !important;
  font-size: 13px !important;
  color: var(--brand-subtext) !important;
}

.aanra-checkout__payment .payment_box::before {
  display: none !important;
}

/* Payment method list item */
.aanra-checkout__payment .payment_methods {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 16px !important;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.aanra-checkout__payment .payment_methods li {
  border: 0.5px solid rgba(58,30,23,0.15) !important;
  padding: 12px 16px !important;
  margin: 0 !important;
  background: var(--brand-white) !important;
}

.aanra-checkout__payment .payment_methods li label {
  font-family: var(--font-body) !important;
  font-size: 15px !important;
  color: var(--brand-dark) !important;
  cursor: pointer;
  font-weight: 500 !important;
}

.aanra-checkout__payment .payment_methods input[type="radio"] {
  margin-right: 8px;
  accent-color: var(--brand-gold);
}

/* Place order button */
.aanra-checkout__payment #place_order {
  width: 100% !important;
  background: var(--brand-accent) !important;
  color: var(--brand-ivory) !important;
  font-family: var(--font-display) !important;
  font-style: italic !important;
  font-size: 15px !important;
  padding: 16px !important;
  border: none !important;
  border-radius: 0 !important;
  cursor: pointer !important;
  letter-spacing: 0.5px !important;
  margin-top: 8px !important;
  transition: opacity 0.2s !important;
  display: block !important;
}

.aanra-checkout__payment #place_order:hover {
  opacity: 0.88 !important;
}

/* Order notes field */
.aanra-checkout__form .woocommerce-additional-fields h3 {
  display: none !important;
}

.aanra-checkout__form .woocommerce-additional-fields__field-wrapper {
  margin-bottom: 0;
}

/* ================================================================
   CHECKOUT -- WooCommerce default style overrides
   Prevents blue flash on #payment, hides unwanted fields
   ================================================================ */

/* Kill WooCommerce blue on #payment before our styles load */
body.woocommerce-checkout #payment {
  background: var(--brand-white) !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
}

body.woocommerce-checkout #payment ul.payment_methods {
  border: none !important;
  border-bottom: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

body.woocommerce-checkout #payment .place-order {
  background: transparent !important;
  padding: 0 !important;
}

/* Hide shipping fields section -- billing = delivery for Aanra */
body.woocommerce-checkout .woocommerce-shipping-fields {
  display: none !important;
}

/* Hide WooCommerce privacy policy text */
body.woocommerce-checkout .woocommerce-privacy-policy-text {
  display: none !important;
}

/* Hide WooCommerce's own "Billing details" h3 -- we use section-label */
body.woocommerce-checkout .woocommerce-billing-fields > h3 {
  display: none !important;
}

/* Hide "Additional information" h3 */
body.woocommerce-checkout .woocommerce-additional-fields > h3 {
  display: none !important;
}

/* Cart drawer remove as button */
.aanra-cart-drawer__remove {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: var(--brand-subtext);
  display: flex;
  align-items: center;
  justify-content: center;
}
.aanra-cart-drawer__remove:hover { color: var(--brand-dark); }

/* ================================================================
   WOOCOMMERCE CHECKOUT BLOCKUI OVERLAY
   WC checkout.js shows a blockUI overlay while processing payment.
   We make it invisible so it doesn't appear as a white box,
   while keeping it functional so WC's JS redirect still works.
   ================================================================ */
body.woocommerce-checkout .blockUI.blockOverlay {
  background: transparent !important;
  opacity: 0 !important;
  cursor: default !important;
}

body.woocommerce-checkout .blockUI.blockMsg {
  display: none !important;
}

/* ================================================================
   PDP — Kadence button override + sale badge
   ================================================================ */
.aanra-product__tab-btn,
.aanra-product__tab-btn:hover,
.aanra-product__tab-btn:focus,
body.single-product .aanra-product__tab-btn {
  background: none !important;
  background-color: transparent !important;
  border-radius: 0 !important;
  border-top: none !important;
  border-left: none !important;
  border-right: none !important;
  border-bottom: 2px solid transparent !important;
  box-shadow: none !important;
  color: var(--brand-subtext) !important;
  padding: 9px 0 !important;
  margin-right: 20px !important;
  font-family: var(--font-body) !important;
  font-size: 11px !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
}
.aanra-product__tab-btn.is-active,
body.single-product .aanra-product__tab-btn.is-active {
  color: var(--brand-dark) !important;
  border-bottom: 2px solid var(--brand-gold) !important;
  background: none !important;
  background-color: transparent !important;
}
.aanra-qty-btn,
.aanra-qty-btn:hover,
body.single-product .aanra-qty-btn {
  background: none !important;
  background-color: transparent !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
  color: var(--brand-dark) !important;
  width: 42px !important;
  height: 44px !important;
  font-size: 18px !important;
  padding: 0 !important;
}
body.single-product .aanra-qty-input,
.aanra-product__qty .aanra-qty-input {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  border-radius: 0 !important;
}
.aanra-product__price-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}
.aanra-product__save-badge {
  font-family: var(--font-body);
  font-size: 10px;
  background: #3B6D11;
  color: #fff;
  padding: 2px 8px;
  letter-spacing: 0.5px;
}

/* ================================================================
   MY ACCOUNT PAGE
   ================================================================ */
.aanra-account {
  background: var(--brand-white);
  min-height: 80vh;
  margin-top: var(--header-offset-desktop);
}
@media (max-width: 767px) {
  .aanra-account { margin-top: var(--header-offset-mobile); }
}

.aanra-account__inner {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .aanra-account__inner {
    grid-template-columns: 240px 1fr;
    min-height: calc(100vh - var(--header-offset-desktop));
  }
}

/* Sidebar */
.aanra-account__sidebar {
  background: #faf9f7;
  border-right: 0.5px solid var(--brand-gold-border);
  padding: 28px 0;
}

.aanra-account__user {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 20px 20px;
  border-bottom: 0.5px solid var(--brand-gold-border);
  margin-bottom: 8px;
}

.aanra-account__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brand-accent);
  color: var(--brand-ivory);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.aanra-account__name {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--brand-dark);
  margin-bottom: 2px;
}

.aanra-account__email {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--brand-subtext);
}

/* Nav */
.aanra-account__nav {
  display: flex;
  flex-direction: column;
}

.aanra-account__nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  font-family: var(--font-body);
  font-size: 15px;
  color: #666;
  text-decoration: none;
  border-left: 2px solid transparent;
  transition: color 0.15s, background 0.15s;
}
.aanra-account__nav-item svg {
  stroke: currentColor;
  flex-shrink: 0;
}
.aanra-account__nav-item:hover {
  color: var(--brand-dark);
  background: rgba(229,195,122,0.06);
}
.aanra-account__nav-item.is-active {
  color: var(--brand-dark);
  background: rgba(229,195,122,0.08);
  border-left-color: var(--brand-gold);
  font-weight: 500;
}
.aanra-account__nav-item.is-logout {
  color: var(--brand-subtext);
  margin-top: 8px;
  border-top: 0.5px solid rgba(58,30,23,0.06);
  padding-top: 16px;
}
.aanra-account__nav-item.is-logout:hover { color: #A32D2D; background: none; }

/* Content area */
.aanra-account__content {
  padding: 32px 24px;
}
@media (min-width: 768px) {
  .aanra-account__content { padding: 40px 48px; }
}

.aanra-account__section-title {
  font-family: var(--font-display) !important;
  font-style: italic !important;
  font-size: 22px !important;
  font-weight: 400 !important;
  color: var(--brand-dark) !important;
  margin-bottom: 4px !important;
}

.aanra-account__section-sub {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--brand-subtext);
  margin-bottom: 24px;
}
.aanra-account__section-sub a {
  color: var(--brand-dark);
  text-decoration: underline;
}

.aanra-account__empty {
  text-align: center;
  padding: 48px 20px;
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--brand-subtext);
}
.aanra-account__empty a { margin-top: 20px; display: inline-block; }

/* Order cards */
.aanra-order-card {
  border: 0.5px solid rgba(58,30,23,0.12);
  margin-bottom: 16px;
}

.aanra-order-card__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: #faf9f7;
  border-bottom: 0.5px solid rgba(58,30,23,0.08);
}

.aanra-order-card__num {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--brand-dark);
  margin-bottom: 2px;
}

.aanra-order-card__date {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--brand-subtext);
}

.aanra-order-card__status {
  font-family: var(--font-body);
  font-size: 10px;
  padding: 3px 10px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.aanra-order-status--processing { background: #FAEEDA; color: var(--brand-accent); }
.aanra-order-status--completed  { background: #EAF3DE; color: #3B6D11; }
.aanra-order-status--on-hold    { background: #E6F1FB; color: #185FA5; }
.aanra-order-status--cancelled  { background: #FCEBEB; color: #A32D2D; }
.aanra-order-status--pending    { background: #F1EFE8; color: #5F5E5A; }

/* Tracking bar */
.aanra-order-card__tracking {
  padding: 14px 16px;
  border-bottom: 0.5px solid rgba(58,30,23,0.06);
}

.aanra-tracking {
  display: flex;
  align-items: flex-start;
  position: relative;
  gap: 0;
}
.aanra-tracking::before {
  content: '';
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  height: 1px;
  background: rgba(58,30,23,0.1);
  z-index: 0;
}

.aanra-tracking__step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
  z-index: 1;
}

.aanra-tracking__dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(58,30,23,0.15);
  border: 1.5px solid rgba(58,30,23,0.15);
}
.aanra-tracking__step.is-done .aanra-tracking__dot {
  background: var(--brand-gold);
  border-color: var(--brand-gold);
}

.aanra-tracking__label {
  font-family: var(--font-body);
  font-size: 10px;
  color: var(--brand-subtext);
  text-align: center;
  letter-spacing: 0.3px;
}
.aanra-tracking__step.is-done .aanra-tracking__label {
  color: var(--brand-dark);
  font-weight: 500;
}

/* Order items preview */
.aanra-order-card__items {
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.aanra-order-card__item {
  display: flex;
  gap: 12px;
  align-items: center;
}
.aanra-order-card__item img {
  width: 52px;
  height: 68px;
  object-fit: cover;
  background: var(--brand-ivory);
  flex-shrink: 0;
}

.aanra-order-card__item-name {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--brand-dark);
  margin-bottom: 3px;
}

.aanra-order-card__item-detail {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--brand-subtext);
}

.aanra-order-card__more {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--brand-subtext);
  padding-left: 4px;
}

.aanra-order-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-top: 0.5px solid rgba(58,30,23,0.06);
  background: #faf9f7;
}

.aanra-order-card__total {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--brand-dark);
}

.aanra-order-card__actions {
  display: flex;
  gap: 8px;
}

/* Account buttons */
.aanra-account__btn {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 16px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  border: none;
  transition: opacity 0.2s;
}
.aanra-account__btn--primary {
  background: var(--brand-accent);
  color: var(--brand-ivory);
}
.aanra-account__btn--primary:hover { opacity: 0.85; color: var(--brand-ivory); }
.aanra-account__btn--outline {
  background: none;
  border: 0.5px solid rgba(58,30,23,0.2);
  color: var(--brand-dark);
}
.aanra-account__btn--outline:hover { background: rgba(58,30,23,0.04); }

/* Account forms */
.aanra-account__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 560px;
}

.aanra-account__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 480px) {
  .aanra-account__form-row { grid-template-columns: 1fr; }
}

.aanra-account__field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.aanra-account__field label {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(58,30,23,0.5);
}
.aanra-account__field label span { color: var(--brand-price); }
.aanra-account__field input {
  height: 42px;
  border: 0.5px solid rgba(58,30,23,0.2);
  padding: 0 12px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--brand-dark);
  background: var(--brand-white);
  outline: none;
  border-radius: 0;
}
.aanra-account__field input:focus { border-color: var(--brand-gold); }

.aanra-account__section-divider {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand-dark);
  padding: 8px 0;
  border-top: 0.5px solid rgba(58,30,23,0.1);
  border-bottom: 0.5px solid rgba(58,30,23,0.1);
  margin: 4px 0;
}
.aanra-account__section-divider span {
  font-size: 10px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--brand-subtext);
  margin-left: 8px;
}

.aanra-account__remember {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--brand-subtext);
}
.aanra-account__forgot {
  color: var(--brand-dark);
  font-size: 13px;
  text-decoration: underline;
}

.aanra-account__back a {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--brand-subtext);
  text-decoration: none;
  margin-bottom: 20px;
  display: inline-block;
}
.aanra-account__back a:hover { color: var(--brand-dark); }

/* Login page */
.aanra-account--login {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: auto;
}

.aanra-account__login-wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  width: 100%;
}

.aanra-account__login-header {
  text-align: center;
  margin-bottom: 32px;
}

.aanra-account__login-title {
  font-family: var(--font-display) !important;
  font-style: italic !important;
  font-size: 32px !important;
  font-weight: 400 !important;
  color: var(--brand-dark) !important;
  margin-bottom: 8px !important;
}

.aanra-account__login-sub {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--brand-subtext);
}

.aanra-account__login-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 600px) {
  .aanra-account__login-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}

.aanra-account__login-col {
  border: 0.5px solid rgba(58,30,23,0.12);
  padding: 28px 24px;
}

.aanra-account__col-title,
.aanra-account__subtitle {
  font-family: var(--font-display) !important;
  font-style: italic !important;
  font-size: 18px !important;
  font-weight: 400 !important;
  color: var(--brand-dark) !important;
  margin-bottom: 20px !important;
}

/* Suppress Kadence on my account */
body.woocommerce-account #primary,
body.woocommerce-account .content-area,
body.woocommerce-account #main,
body.woocommerce-account .entry-content {
  padding-top: 0 !important;
  margin-top: 0 !important;
  background: var(--brand-white) !important;
}

/* Filter category count */
.aanra-filter-count {
  font-size: 10px;
  color: var(--brand-subtext);
  font-weight: 400;
}

/* Email signup messages */
.aanra-email-signup__msg {
  font-family: var(--font-body);
  font-size: 13px;
  margin-top: 8px;
  text-align: center;
}
.aanra-email-signup__msg--ok  { color: #3B6D11; }
.aanra-email-signup__msg--err { color: #A32D2D; }

/* MailOptin embed override - strip its default wrapper styles */
.aanra-email-signup__mailoptin .mo-optin-form-wrapper {
  background: none !important;
  padding: 0 !important;
  box-shadow: none !important;
  border: none !important;
}

/* ================================================================
   SEARCH RESULTS PAGE
   ================================================================ */
.aanra-search-results {
  background: var(--brand-white);
  min-height: 80vh;
  margin-top: var(--header-offset-desktop);
}
@media (max-width: 767px) {
  .aanra-search-results { margin-top: var(--header-offset-mobile); }
}

.aanra-search-results__hero {
  background: var(--brand-ivory);
  border-bottom: 0.5px solid rgba(58,30,23,0.08);
  padding: 40px 20px;
}
@media (min-width: 768px) {
  .aanra-search-results__hero { padding: 48px 60px; }
}

.aanra-search-results__hero-inner {
  max-width: 640px;
}

.aanra-search-results__heading {
  font-family: var(--font-display) !important;
  font-style: italic !important;
  font-size: 28px !important;
  font-weight: 400 !important;
  color: var(--brand-dark) !important;
  margin-bottom: 20px !important;
  line-height: 1.3 !important;
}
.aanra-search-results__heading span {
  color: var(--brand-gold);
}
.aanra-search-results__heading em {
  font-style: italic;
}

.aanra-search-results__form {
  display: flex;
  border: 0.5px solid rgba(58,30,23,0.2);
  max-width: 480px;
}

.aanra-search-results__input {
  flex: 1;
  height: 44px;
  border: none;
  padding: 0 16px;
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--brand-dark);
  background: var(--brand-white);
  outline: none;
}
.aanra-search-results__input::placeholder { color: var(--brand-subtext); }

.aanra-search-results__submit {
  width: 44px;
  height: 44px;
  background: var(--brand-accent);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}
.aanra-search-results__submit svg { stroke: var(--brand-gold); }

.aanra-search-results__body {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px 64px;
}
@media (min-width: 768px) {
  .aanra-search-results__body { padding: 48px 60px 80px; }
}

/* Non-product result card */
.aanra-search-results__post-card {
  padding: 16px;
  border: 0.5px solid rgba(58,30,23,0.1);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.aanra-search-results__post-title {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--brand-dark);
  text-decoration: none;
}
.aanra-search-results__post-title:hover { color: var(--brand-price); }
.aanra-search-results__post-excerpt {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--brand-subtext);
  line-height: 1.6;
}

/* Empty state */
.aanra-search-results__empty {
  text-align: center;
  padding: 60px 20px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.aanra-search-results__empty svg { stroke: rgba(58,30,23,0.2); margin-bottom: 8px; }
.aanra-search-results__empty p {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--brand-dark);
}
.aanra-search-results__empty-sub {
  font-size: 15px !important;
  color: var(--brand-subtext) !important;
}
.aanra-search-results__empty a { margin-top: 8px; }

/* Category suggestion pills */
.aanra-search-results__suggestions {
  text-align: center;
  padding: 32px 0 0;
  border-top: 0.5px solid rgba(58,30,23,0.08);
  margin-top: 32px;
}
.aanra-search-results__suggestions-label {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand-subtext);
  margin-bottom: 14px;
}
.aanra-search-results__suggestion-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.aanra-search-results__pill {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--brand-dark);
  border: 0.5px solid rgba(58,30,23,0.2);
  padding: 6px 16px;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s;
}
.aanra-search-results__pill:hover {
  background: var(--brand-ivory);
  border-color: var(--brand-gold);
}

/* Pagination */
.aanra-search-results__pagination {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 4px;
  font-family: var(--font-body);
  font-size: 15px;
}
.aanra-search-results__pagination .page-numbers {
  padding: 6px 12px;
  border: 0.5px solid rgba(58,30,23,0.15);
  color: var(--brand-dark);
  text-decoration: none;
}
.aanra-search-results__pagination .page-numbers.current {
  background: var(--brand-accent);
  color: var(--brand-ivory);
  border-color: var(--brand-accent);
}
.aanra-search-results__pagination .page-numbers:hover:not(.current) {
  background: var(--brand-ivory);
}

/* ================================================================
   WOOCOMMERCE NOTICES — Brand styled
   ================================================================ */
.woocommerce-error,
.woocommerce-message,
.woocommerce-info {
  border: 1px solid var(--brand-gold-border) !important;
  border-top: 3px solid var(--brand-gold) !important;
  background: var(--brand-ivory) !important;
  color: var(--brand-dark) !important;
  font-family: var(--font-body) !important;
  font-size: 15px !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 16px 20px !important;
}

.woocommerce-error {
  border-top-color: var(--brand-gold) !important;
}

.woocommerce-error a,
.woocommerce-message a,
.woocommerce-info a {
  color: var(--brand-dark) !important;
  font-weight: 600 !important;
  text-decoration: underline !important;
}

/* ================================================================
   KADENCE BUTTON STATE KILL — FINAL OVERRIDE
   Must live in components.css (last loaded file).
   Every rule needs background + color + box-shadow !important
   to beat Kadence's global palette injection on all states.
   ================================================================ */

.aanra-btn--gold,
.aanra-btn--gold:hover,
.aanra-btn--gold:active,
.aanra-btn--gold:focus {
  color: var(--brand-dark) !important;
  background: var(--brand-gold) !important;
  box-shadow: none !important;
  text-decoration: none !important;
}

.aanra-btn--outline,
.aanra-btn--outline:hover,
.aanra-btn--outline:active,
.aanra-btn--outline:focus {
  color: var(--brand-gold) !important;
  background: transparent !important;
  box-shadow: none !important;
  text-decoration: none !important;
}

.aanra-btn--add-to-cart,
.aanra-btn--add-to-cart:hover,
.aanra-btn--add-to-cart:active,
.aanra-btn--add-to-cart:focus,
.aanra-shop-card__atc,
.aanra-shop-card__atc:hover,
.aanra-shop-card__atc:active,
.aanra-shop-card__atc:focus,
.aanra-filter-drawer__apply,
.aanra-filter-drawer__apply:hover,
.aanra-filter-drawer__apply:active,
.aanra-filter-drawer__apply:focus {
  color: var(--brand-dark) !important;
  background: var(--brand-gold) !important;
  box-shadow: none !important;
}

.aanra-filter-drawer__clear,
.aanra-filter-drawer__clear:hover,
.aanra-filter-drawer__clear:active,
.aanra-filter-drawer__clear:focus,
.aanra-shop__filter-btn,
.aanra-shop__filter-btn:hover,
.aanra-shop__filter-btn:active,
.aanra-shop__filter-btn:focus,
.aanra-cart__update,
.aanra-cart__update:hover,
.aanra-cart__update:active,
.aanra-cart__update:focus,
.aanra-checkout__coupon-btn,
.aanra-checkout__coupon-btn:hover,
.aanra-checkout__coupon-btn:active,
.aanra-checkout__coupon-btn:focus {
  color: var(--brand-dark) !important;
  background: var(--brand-gold) !important;
  box-shadow: none !important;
}

.aanra-checkout__form #payment #place_order,
.aanra-checkout__form #payment #place_order:hover,
.aanra-checkout__form #payment #place_order:active,
.aanra-checkout__form #payment #place_order:focus,
body.woocommerce-checkout #payment #place_order,
body.woocommerce-checkout #payment #place_order:hover,
body.woocommerce-checkout #payment #place_order:active,
body.woocommerce-checkout #payment #place_order:focus,
.aanra-checkout__payment #place_order,
.aanra-checkout__payment #place_order:hover,
.aanra-checkout__payment #place_order:active,
.aanra-checkout__payment #place_order:focus {
  color: var(--brand-dark) !important;
  background: var(--brand-gold) !important;
  box-shadow: none !important;
}

.aanra-account__btn--primary,
.aanra-account__btn--primary:hover,
.aanra-account__btn--primary:active,
.aanra-account__btn--primary:focus {
  color: var(--brand-ivory) !important;
  background: var(--brand-accent) !important;
  box-shadow: none !important;
}

.aanra-account__btn--outline,
.aanra-account__btn--outline:hover,
.aanra-account__btn--outline:active,
.aanra-account__btn--outline:focus {
  color: var(--brand-dark) !important;
  background: none !important;
  box-shadow: none !important;
}


/* ================================================================
   WISHLIST PAGE
   ================================================================ */
.aanra-wishlist-page {
  background: var(--brand-white);
  min-height: 70vh;
  margin-top: var(--header-offset-desktop);
  padding-bottom: 64px;
}
@media (max-width: 767px) {
  .aanra-wishlist-page { margin-top: var(--header-offset-mobile); }
}

/* Guest gate — login / register prompt */
.aanra-wishlist-gate {
  max-width: 480px;
  margin: 0 auto;
  padding: 72px 24px;
  text-align: center;
}
.aanra-wishlist-gate__icon {
  color: var(--brand-gold);
  margin-bottom: 20px;
}
.aanra-wishlist-gate__heading {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 32px;
  color: var(--brand-dark);
  margin-bottom: 12px;
}
.aanra-wishlist-gate__sub {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--brand-subtext);
  line-height: 1.7;
  margin-bottom: 28px;
}
.aanra-wishlist-gate__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 280px;
  margin: 0 auto;
}
.aanra-wishlist-gate__btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none !important;
  cursor: pointer;
}
.aanra-account__btn--outline.aanra-wishlist-gate__btn {
  border: 1px solid var(--brand-accent);
  color: var(--brand-accent);
}

/* Logged-in wishlist content — style TI plugin output */
.aanra-wishlist-content {
  max-width: var(--max-content-width);
  margin: 0 auto;
  padding: 24px 20px 0;
}
.aanra-wishlist-content .tinv-wishlist table {
  border: none;
}
.aanra-wishlist-content .tinv-wishlist table th {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand-accent);
  border-bottom: 1px solid rgba(229, 195, 122, 0.4);
  background: none;
}
.aanra-wishlist-content .tinv-wishlist table td {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--brand-dark);
  border-bottom: 0.5px solid rgba(229, 195, 122, 0.25);
  background: none;
  vertical-align: middle;
}
.aanra-wishlist-content .tinv-wishlist .product-title a {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--brand-dark);
  text-decoration: none;
}
.aanra-wishlist-content .tinv-wishlist .product-price {
  color: var(--brand-price);
}
.aanra-wishlist-content .tinv-wishlist button,
.aanra-wishlist-content .tinv-wishlist .button {
  background: var(--brand-accent) !important;
  color: var(--brand-ivory) !important;
  border: none !important;
  border-radius: 0 !important;
  font-family: var(--font-body) !important;
  font-size: 11px !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  padding: 12px 18px !important;
  cursor: pointer;
}
.aanra-wishlist-content .tinv-wishlist .product-remove button {
  background: none !important;
  color: var(--brand-subtext) !important;
  padding: 4px !important;
}
/* Empty wishlist state */
.aanra-wishlist-content .tinv-wishlist .wishlist-empty,
.aanra-wishlist-content .tinv-wishlist p:only-child {
  text-align: center;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--brand-subtext);
  padding: 48px 0;
}


/* Cart drawer upsell — match product image height */
.aanra-cart-upsell__img-wrap {
  width: 80px !important;
  height: 80px !important;
  flex-shrink: 0;
  overflow: hidden;
}
.aanra-cart-upsell__img-wrap img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

/* Shop page ADD TO CART — ensure accent gold on mobile (Kadence override) */
@media (max-width: 767px) {
  .aanra-shop-card__atc,
  .aanra-btn--add-to-cart {
    background-color: var(--brand-accent) !important;
    color: var(--brand-ivory) !important;
    border-color: var(--brand-accent) !important;
  }
}


/* ================================================================
   PAYMENT METHODS — brand styling (override Razorpay/WC defaults)
   ================================================================ */
body.woocommerce-checkout #payment ul.payment_methods li,
body.woocommerce-checkout #payment ul.payment_methods li.payment_method_razorpay,
body.woocommerce-checkout #payment ul.payment_methods li.payment_method_cod {
  border: 0.5px solid var(--brand-gold-border) !important;
  background: var(--brand-white) !important;
  background-color: var(--brand-white) !important;
}
/* The expandable info panel under each method */
body.woocommerce-checkout #payment .payment_box,
body.woocommerce-checkout #payment div.payment_box {
  background: var(--brand-white) !important;
  background-color: var(--brand-white) !important;
  border: none !important;
  border-radius: 0 !important;
  margin: 8px 0 0 !important;
  padding: 12px 14px !important;
  color: var(--brand-dark) !important;
  font-family: var(--font-body) !important;
  font-size: 14px !important;
}
/* Force white on Razorpay's inline styled elements */
body.woocommerce-checkout #payment .payment_box * {
  background: transparent !important;
}
/* Remove the little triangle pointer WC adds */
body.woocommerce-checkout #payment .payment_box::before {
  display: none !important;
}
/* Method title row (UPI, Cards, NetBanking / Cash on delivery) */
body.woocommerce-checkout #payment ul.payment_methods li label {
  font-family: var(--font-body) !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  color: var(--brand-dark) !important;
}
/* Radio button accent */
body.woocommerce-checkout #payment ul.payment_methods li input[type="radio"] {
  accent-color: var(--brand-accent) !important;
}
/* Razorpay logo sizing */
body.woocommerce-checkout #payment .payment_box img {
  max-height: 22px !important;
  width: auto !important;
}


/* ================================================================
   PAYMENT BG — FINAL OVERRIDE (beats WC core + Razorpay inline)
   ================================================================ */
body.woocommerce-checkout #payment ul.payment_methods > li,
body.woocommerce-checkout #payment ul.payment_methods > li:nth-child(odd),
body.woocommerce-checkout #payment ul.payment_methods > li:nth-child(even),
body.woocommerce-checkout #payment ul.payment_methods > li.wc_payment_method,
body.woocommerce-checkout #payment ul.payment_methods > li.payment_method_razorpay,
body.woocommerce-checkout #payment ul.payment_methods > li.payment_method_cod {
  background: #ffffff !important;
  background-color: #ffffff !important;
  background-image: none !important;
}
/* The grey/blue strip behind the label radio row */
body.woocommerce-checkout #payment ul.payment_methods > li > label,
body.woocommerce-checkout #payment ul.payment_methods > li > input {
  background: transparent !important;
  background-color: transparent !important;
}
/* Razorpay sometimes wraps label content in a div with bg */
body.woocommerce-checkout #payment ul.payment_methods > li > * {
  background-color: transparent !important;
}


/* ================================================================
   SUBSCRIBE BUTTON — FINAL OVERRIDE (wins over all prior rules)
   ================================================================ */
.aanra-btn--subscribe,
.aanra-btn--subscribe:hover,
.aanra-btn--subscribe:active,
.aanra-btn--subscribe:focus {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background-color: var(--brand-accent) !important;
  background: var(--brand-accent) !important;
  color: var(--brand-ivory) !important;
  font-size: 12px !important;
  letter-spacing: 2px !important;
  padding: 0 24px !important;
  white-space: nowrap !important;
  min-height: 48px !important;
  height: 48px !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
  flex-shrink: 0 !important;
  cursor: pointer !important;
}


/* ================================================================
   ABOUT PAGE — "Her Story" founder section
   ================================================================ */
.aanra-about__founder-story {
  padding-top: 8px;
}

.aanra-about__founder-story-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 24px;
}

.aanra-about__founder-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--brand-ivory);
}

.aanra-about__founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.aanra-about__founder-chapters {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.aanra-about__chapter-title {
  font-family: var(--font-display) !important;
  font-style: italic !important;
  font-size: 24px !important;
  font-weight: 400 !important;
  color: var(--brand-accent) !important;
  margin-bottom: 8px !important;
}

.aanra-about__chapter-text {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.8;
  color: #444;
}

@media (min-width: 768px) {
  .aanra-about__founder-story-grid {
    flex-direction: row;
    align-items: flex-start;
    gap: 60px;
  }

  .aanra-about__founder-photo {
    flex: 0 0 38%;
    max-width: 380px;
    position: sticky;
    top: 100px;
  }

  .aanra-about__founder-chapters {
    flex: 1;
    gap: 40px;
  }

  .aanra-about__chapter-title {
    font-size: 28px !important;
  }

  .aanra-about__chapter-text {
    font-size: 17px;
  }
}


/* ================================================================
   POLICY PAGES (Privacy, Returns, Shipping, T&Cs)
   ================================================================ */
.aanra-policy {
  max-width: 760px;
  margin: 0 auto;
  margin-top: var(--header-offset-desktop, 89px);
  padding: 48px 24px 80px;
}

.aanra-policy__title {
  font-family: var(--font-display) !important;
  font-style: italic !important;
  font-size: 36px !important;
  font-weight: 400 !important;
  color: var(--brand-dark) !important;
  margin-bottom: 16px !important;
}

.aanra-policy__content {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-top: 32px;
}

.aanra-policy__content h2 {
  font-family: var(--font-display) !important;
  font-size: 22px !important;
  font-weight: 500 !important;
  color: var(--brand-dark) !important;
  margin: 32px 0 12px !important;
}

.aanra-policy__content h3 {
  font-family: var(--font-body) !important;
  font-size: 17px !important;
  font-weight: 600 !important;
  color: var(--brand-dark) !important;
  margin: 24px 0 8px !important;
}

.aanra-policy__content p {
  margin-bottom: 16px;
}

.aanra-policy__content ul,
.aanra-policy__content ol {
  margin: 0 0 16px 20px;
  padding: 0;
}

.aanra-policy__content li {
  margin-bottom: 8px;
}

.aanra-policy__content a {
  color: var(--brand-accent);
  text-decoration: underline;
}

@media (min-width: 768px) {
  .aanra-policy {
    padding: 64px 24px 100px;
  }
  .aanra-policy__title {
    font-size: 44px !important;
  }
}

@media (max-width: 767px) {
  .aanra-policy {
    margin-top: var(--header-offset-mobile, 77px);
  }
}

/* ================================================================
   CHECKOUT — PAYMENT METHOD LIST: remove stray left-edge accent
   ================================================================
   Previously each payment method <li> showed an inconsistent
   coloured left border/strip (gold on Razorpay, grey-blue on COD) —
   coming from the radio input's browser-default outline/accent
   rendering at the edge of the row. Reset explicitly on all sides
   and unify the accent color so both methods render identically. */
body.woocommerce-checkout #payment ul.payment_methods > li,
body.woocommerce-checkout #payment ul.payment_methods > li.payment_method_razorpay,
body.woocommerce-checkout #payment ul.payment_methods > li.payment_method_cod {
  border: 0.5px solid var(--brand-gold-border) !important;
  border-left: 0.5px solid var(--brand-gold-border) !important;
  box-shadow: none !important;
  outline: none !important;
}
body.woocommerce-checkout #payment ul.payment_methods > li input[type="radio"] {
  accent-color: var(--brand-accent) !important;
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
  width: 16px !important;
  height: 16px !important;
  margin: 0 8px 0 0 !important;
  vertical-align: middle !important;
}
body.woocommerce-checkout #payment ul.payment_methods > li input[type="radio"]:focus,
body.woocommerce-checkout #payment ul.payment_methods > li input[type="radio"]:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

/* ================================================================
   CHECKOUT — PLACE ORDER button: bigger, bolder, more prominent
   ================================================================ */
body.woocommerce-checkout #payment #place_order,
.aanra-checkout__form #payment #place_order,
.aanra-checkout__payment #place_order {
  font-size: 17px !important;
  font-weight: 600 !important;
  letter-spacing: 1px !important;
  padding: 18px !important;
}

/* ================================================================
   PRODUCT IMAGE LIGHTBOX
   ================================================================ */
.aanra-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(255,255,255,0.98);
  display: none;
  flex-direction: column;
}
.aanra-lightbox.is-open { display: flex; }

.aanra-lightbox__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  flex-shrink: 0;
}
.aanra-lightbox__counter {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--brand-dark);
}
.aanra-lightbox__actions { display: flex; gap: 6px; }
.aanra-lightbox__btn {
  background: none;
  border: none;
  color: var(--brand-dark);
  cursor: pointer;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s ease;
}
.aanra-lightbox__btn:hover { background: rgba(58,30,23,0.06); }

.aanra-lightbox__stage {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: auto;
  padding: 0 12px 24px;
}
.aanra-lightbox__img {
  max-width: 90%;
  max-height: 100%;
  object-fit: contain;
  cursor: zoom-in;
  transition: transform 0.25s ease;
}
.aanra-lightbox__img.is-zoomed {
  transform: scale(2);
  cursor: zoom-out;
}

.aanra-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--brand-dark);
  cursor: pointer;
  padding: 12px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.aanra-lightbox__nav--prev { left: 12px; }
.aanra-lightbox__nav--next { right: 12px; }
.aanra-lightbox__nav:hover { color: var(--brand-accent); }

@media (max-width: 767px) {
  .aanra-lightbox__img { max-width: 96%; }
  .aanra-lightbox__nav { padding: 6px; }
  .aanra-lightbox__nav--prev { left: 4px; }
  .aanra-lightbox__nav--next { right: 4px; }
}

/* Thank you page — set password prompt */
.aanra-thankyou__pwd-prompt {
  margin: 24px 0 16px;
  padding: 16px 20px;
  border: 1px solid var(--brand-gold-light, #E5C37A);
  border-radius: 4px;
  background: var(--brand-ivory, #FAF5E2);
}
.aanra-thankyou__pwd-text {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--brand-subtext, #6B4C3B);
  margin: 0 0 12px;
  line-height: 1.6;
}
.aanra-thankyou__pwd-btn {
  display: inline-block;
  font-size: 13px;
  padding: 10px 20px;
}
.aanra-btn--outline {
  background: transparent !important;
  border: 1px solid var(--brand-gold, #946E1F) !important;
  color: var(--brand-gold, #946E1F) !important;
}
.aanra-btn--outline:hover {
  background: var(--brand-gold, #946E1F) !important;
  color: var(--brand-ivory, #FAF5E2) !important;
}

/* ============================================================
   AANRA LIVE SEARCH AUTOCOMPLETE DROPDOWN
   ============================================================ */
.aanra-autocomplete {
  display: none;
  position: absolute;
  z-index: 1200;
  background: var(--brand-ivory, #FAF5E2);
  border: 1px solid rgba(148, 110, 31, 0.15);
  border-top: none;
  box-shadow: 0 8px 24px rgba(58, 30, 23, 0.08);
  max-height: 420px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.aanra-autocomplete.is-open {
  display: block;
}

/* Product result item */
.aanra-autocomplete__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  text-decoration: none;
  color: var(--brand-dark, #3A1E17);
  border-bottom: 1px solid rgba(148, 110, 31, 0.08);
  transition: background 0.15s ease;
}

.aanra-autocomplete__item:last-of-type {
  border-bottom: none;
}

.aanra-autocomplete__item:hover,
.aanra-autocomplete__item:focus {
  background: rgba(148, 110, 31, 0.06);
  outline: none;
}

.aanra-autocomplete__img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: 2px;
}

.aanra-autocomplete__meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.aanra-autocomplete__name {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--brand-dark, #3A1E17);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.aanra-autocomplete__name mark {
  background: none;
  color: var(--brand-gold, #946E1F);
  font-weight: 500;
}

.aanra-autocomplete__cat {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(58, 30, 23, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.aanra-autocomplete__price {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--brand-gold, #946E1F);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Category suggestion item */
.aanra-autocomplete__item--cat {
  font-family: var(--font-body);
  font-size: 13px;
  padding: 10px 16px;
}

/* Section label */
.aanra-autocomplete__label {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(58, 30, 23, 0.4);
  padding: 10px 16px 4px;
}

/* "See all results" footer */
.aanra-autocomplete__all {
  display: block;
  padding: 10px 16px;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--brand-gold, #946E1F);
  text-decoration: none;
  border-top: 1px solid rgba(148, 110, 31, 0.12);
  background: rgba(148, 110, 31, 0.03);
  text-align: center;
  letter-spacing: 0.3px;
}

.aanra-autocomplete__all:hover {
  background: rgba(148, 110, 31, 0.08);
}

.aanra-autocomplete__all em {
  font-style: italic;
}

/* Empty state */
.aanra-autocomplete__empty {
  padding: 16px;
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(58, 30, 23, 0.5);
  text-align: center;
}

.aanra-autocomplete__empty em {
  font-style: italic;
  color: var(--brand-dark, #3A1E17);
}

/* Fix: filter button should be outline style matching sort dropdown */
.aanra-shop__filter-btn,
.aanra-shop__filter-btn:hover,
.aanra-shop__filter-btn:active,
.aanra-shop__filter-btn:focus {
  background: transparent !important;
  color: var(--brand-dark) !important;
  border: 1px solid rgba(58,30,23,0.2) !important;
  box-shadow: none !important;
}

/* Fix: YOU MAY ALSO LIKE title visibility */
.aanra-cart-drawer__recs-title {
  color: var(--brand-dark, #3A1E17) !important;
  opacity: 0.5;
}

/* Fix: rec card images — portrait ratio matching cart item and shop grid */
.aanra-cart-drawer__rec-img img {
  height: 100px !important;
  object-fit: cover;
  object-position: center top;
}

/* Fix: footer logo + tagline spacing on mobile */
.aanra-footer__col--brand {
  gap: 4px !important;
}
.aanra-footer__tagline {
  margin-top: 0 !important;
  font-size: 14px !important;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.aanra-contact {
  background: var(--brand-ivory);
  min-height: 60vh;
  padding-bottom: 80px;
}

.aanra-contact__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.aanra-contact__hero {
  text-align: center;
  padding: 60px 20px 40px;
}

.aanra-contact__heading {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  font-style: italic;
  color: var(--brand-dark);
  margin: 0 0 12px;
}

.aanra-contact__sub {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(58, 30, 23, 0.6);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

.aanra-contact__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Form column */
.aanra-contact__form-label {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(58, 30, 23, 0.4);
  margin: 0 0 24px;
}

.aanra-contact__field {
  margin-bottom: 20px;
}

.aanra-contact__label {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(58, 30, 23, 0.6);
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}

.aanra-contact__input {
  width: 100%;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--brand-dark);
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(58, 30, 23, 0.2);
  border-radius: 0;
  padding: 10px 0;
  outline: none;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
  -webkit-appearance: none;
}

.aanra-contact__input:focus {
  border-color: var(--brand-gold);
}

.aanra-contact__input.is-error {
  border-color: #C0392B;
}

.aanra-contact__input::placeholder {
  color: rgba(58, 30, 23, 0.3);
  font-style: italic;
}

.aanra-contact__select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23946E1F' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 24px;
}

.aanra-contact__textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.aanra-contact__error {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  color: #C0392B;
  margin-top: 4px;
}

.aanra-contact__submit {
  width: 100%;
  margin-top: 8px;
  font-size: 13px;
  letter-spacing: 1.5px;
}

.aanra-contact__success {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 14px 16px;
  background: rgba(15, 110, 86, 0.08);
  border-left: 3px solid #0F6E56;
  font-family: var(--font-body);
  font-size: 14px;
  color: #0F6E56;
}

.aanra-contact__fail {
  margin-top: 16px;
  padding: 14px 16px;
  background: rgba(192, 57, 43, 0.06);
  border-left: 3px solid #C0392B;
  font-family: var(--font-body);
  font-size: 14px;
  color: #C0392B;
}

.aanra-contact__fail a {
  color: #C0392B;
}

/* Info column */
.aanra-contact__info-block {
  margin-bottom: 8px;
}

.aanra-contact__info-label {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(58, 30, 23, 0.4);
  margin: 0 0 8px;
}

.aanra-contact__info-value {
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--brand-gold);
  text-decoration: none;
  margin-bottom: 8px;
}

.aanra-contact__info-note {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(58, 30, 23, 0.55);
  line-height: 1.7;
  margin: 0;
}

.aanra-contact__divider {
  border: none;
  border-top: 1px solid rgba(148, 110, 31, 0.15);
  margin: 24px 0;
}

.aanra-contact__whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  color: #25D366;
  text-decoration: none;
  margin-bottom: 8px;
  font-weight: 500;
}

.aanra-contact__whatsapp-btn:hover {
  opacity: 0.8;
}

/* Mobile */
@media (max-width: 767px) {
  .aanra-contact__hero {
    padding: 40px 0 28px;
  }

  .aanra-contact__heading {
    font-size: 26px;
  }

  .aanra-contact__cols {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .aanra-contact__info-col {
    order: -1;
  }
}

/* ============================================================
   LOGIN PAGE REDESIGN — Underline style matching contact page
   ============================================================ */

/* Remove box border from login/register columns */
.aanra-account__login-col,
.aanra-account__register {
  border: none !important;
  padding: 0 !important;
}

/* Underline inputs — override box style */
.aanra-account__field input,
.aanra-account__field input[type="email"],
.aanra-account__field input[type="password"],
.aanra-account__field input[type="text"] {
  height: auto !important;
  border: none !important;
  border-bottom: 1px solid rgba(58,30,23,0.2) !important;
  border-radius: 0 !important;
  background: transparent !important;
  padding: 10px 0 !important;
  font-size: 14px !important;
  box-shadow: none !important;
}

.aanra-account__field input:focus {
  border-bottom-color: var(--brand-gold) !important;
  box-shadow: none !important;
  outline: none !important;
}

/* Register form email input same style */
.aanra-account__register input[type="email"],
.aanra-account__form #reg_email {
  width: 100% !important;
  height: auto !important;
  border: none !important;
  border-bottom: 1px solid rgba(58,30,23,0.2) !important;
  border-radius: 0 !important;
  background: transparent !important;
  padding: 10px 0 !important;
  font-size: 14px !important;
  font-family: var(--font-body) !important;
  color: var(--brand-dark) !important;
  box-shadow: none !important;
  outline: none !important;
  box-sizing: border-box !important;
}

.aanra-account__register input[type="email"]:focus,
.aanra-account__form #reg_email:focus {
  border-bottom-color: var(--brand-gold) !important;
}

/* Privacy policy text in register form */
.aanra-account__register .woocommerce-privacy-policy-text,
.aanra-account__register p:not(.aanra-account__field) {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(58,30,23,0.45);
  line-height: 1.6;
  margin: 12px 0 0;
}

/* Remember me + forgot password row */
.aanra-account__remember {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 16px 0;
}

.aanra-account__remember label {
  font-family: var(--font-body) !important;
  font-size: 12px !important;
  color: rgba(58,30,23,0.5) !important;
  display: flex;
  align-items: center;
  gap: 6px;
  text-transform: none !important;
  letter-spacing: 0 !important;
  cursor: pointer;
}

.aanra-account__remember input[type="checkbox"] {
  width: 14px !important;
  height: 14px !important;
  border: 1px solid rgba(58,30,23,0.3) !important;
  border-bottom: 1px solid rgba(58,30,23,0.3) !important;
  accent-color: var(--brand-gold);
  padding: 0 !important;
  flex-shrink: 0;
}

.aanra-account__forgot {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(58,30,23,0.5);
  text-decoration: none;
  border-bottom: 1px solid rgba(58,30,23,0.2);
}

.aanra-account__forgot:hover {
  color: var(--brand-gold);
  border-bottom-color: var(--brand-gold);
}

/* Divider between sign in and create account on mobile */
@media (max-width: 599px) {
  .aanra-account__login-grid {
    gap: 40px !important;
  }

  .aanra-account__register {
    padding-top: 32px !important;
    border-top: 1px solid rgba(58,30,23,0.1) !important;
  }
}

/* Create Account — visually distinct section */
.aanra-account__register {
  background: var(--brand-ivory, #FAF5E2) !important;
  padding: 28px 24px !important;
  border: none !important;
  border-top: none !important;
}

@media (min-width: 600px) {
  .aanra-account__register {
    padding: 28px 32px !important;
  }
}

.aanra-account__subtitle {
  margin-bottom: 16px !important;
}

/* Small label above the section */
.aanra-account__register::before {
  content: "NEW HERE?";
  display: block;
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 2.5px;
  color: rgba(58,30,23,0.35);
  margin-bottom: 12px;
}

/* Fix: contact page text contrast */
.aanra-contact__label {
  color: #3A1E17 !important;
  opacity: 0.8 !important;
}

.aanra-contact__input,
.aanra-contact__select,
.aanra-contact__textarea {
  color: #3A1E17 !important;
}

.aanra-contact__input::placeholder,
.aanra-contact__select::placeholder,
.aanra-contact__textarea::placeholder {
  color: rgba(58, 30, 23, 0.4) !important;
}

.aanra-contact__info-note {
  color: rgba(58, 30, 23, 0.7) !important;
}

.aanra-contact__form-label {
  color: rgba(58, 30, 23, 0.5) !important;
}

/* Fix: contact form input boxes — remove white background, increase text contrast */
.aanra-contact__input,
.aanra-contact__select,
.aanra-contact__textarea {
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  border-bottom: 1px solid rgba(58, 30, 23, 0.3) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  color: #3A1E17 !important;
  padding: 10px 0 !important;
}

.aanra-contact__input::placeholder,
.aanra-contact__textarea::placeholder {
  color: rgba(58, 30, 23, 0.35) !important;
}

.aanra-contact__label {
  color: #3A1E17 !important;
  font-size: 13px !important;
  opacity: 1 !important;
}

/* Fix: contact page — remove white box from inputs, fix all text contrast */
.aanra-contact {
  color: #3A1E17 !important;
}

.aanra-contact__heading {
  color: #3A1E17 !important;
}

.aanra-contact__sub {
  color: #3A1E17 !important;
  opacity: 0.7 !important;
}

.aanra-contact__form-label {
  color: #3A1E17 !important;
  opacity: 0.6 !important;
}

.aanra-contact__label {
  color: #3A1E17 !important;
  opacity: 1 !important;
}

.aanra-contact__input,
.aanra-contact__select,
.aanra-contact__textarea {
  background: transparent !important;
  background-color: transparent !important;
  color: #3A1E17 !important;
  -webkit-text-fill-color: #3A1E17 !important;
  border: none !important;
  border-bottom: 1px solid rgba(58,30,23,0.3) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  outline: none !important;
}

.aanra-contact__input::placeholder,
.aanra-contact__textarea::placeholder {
  color: rgba(58,30,23,0.35) !important;
  -webkit-text-fill-color: rgba(58,30,23,0.35) !important;
}

.aanra-contact__info-label {
  color: rgba(58,30,23,0.5) !important;
}

.aanra-contact__info-value {
  color: #946E1F !important;
}

.aanra-contact__info-note {
  color: rgba(58,30,23,0.65) !important;
}

/* Fix: contact page — Kadence override, force all text dark */
.aanra-contact *,
.aanra-contact p,
.aanra-contact label,
.aanra-contact input,
.aanra-contact select,
.aanra-contact textarea,
.aanra-contact span,
.aanra-contact h1,
.aanra-contact h2,
.aanra-contact h3 {
  color: #3A1E17 !important;
  -webkit-text-fill-color: #3A1E17 !important;
}

.aanra-contact input::placeholder,
.aanra-contact textarea::placeholder {
  color: rgba(58,30,23,0.4) !important;
  -webkit-text-fill-color: rgba(58,30,23,0.4) !important;
}

.aanra-contact input,
.aanra-contact select,
.aanra-contact textarea {
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  border-bottom: 1px solid rgba(58,30,23,0.25) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.aanra-contact__info-value,
.aanra-contact__whatsapp-btn {
  color: #946E1F !important;
  -webkit-text-fill-color: #946E1F !important;
}

.aanra-contact__whatsapp-btn svg {
  fill: #25D366 !important;
  color: #25D366 !important;
}
