/* ==========================================================================
   LC Ayurveda — Global Stylesheet
   Brand: Green #126e19 | Gold #C9A84C | Cream #f9f5ef | Text #1a1a1a
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Variables & Reset
   -------------------------------------------------------------------------- */
:root {
  --color-primary: #126e19;
  --color-primary-dark: #0a3d0a;
  --color-gold: #C9A84C;
  --color-gold-hover: #b8963f;
  --color-gold-light: #d4b86a;
  --gradient-gold: linear-gradient(135deg, #b8860b, #F5D78E, #C9A84C, #b8860b);
  --color-bg: #FFFFFF;
  --color-cream: #f9f5ef;
  --color-text: #1a1a1a;
  --color-text-muted: #555555;
  --color-white: #ffffff;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Poppins', sans-serif;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
  --radius-sm: 8px;
  --radius-md: 12px;
  --header-height: 115px;
  --transition: 0.3s ease;
  --focus-ring: 2px solid var(--color-gold);
  --focus-offset: 2px;
  --hero-max-height: 600px;
  --touch-min: 44px;
  --z-announcement: 1001;
  --z-header: 1000;
  --z-header-menu: 1001;
  --z-dropdown: 10050;
  --z-modal: 10100;
  --z-toast: 9999;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: clip;
  width: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
  overflow-x: clip;
  width: 100%;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 500;
}

/* Keyboard focus — visible ring, no mouse outline change */
:focus {
  outline: none;
}

:focus-visible {
  outline: var(--focus-ring);
  outline-offset: var(--focus-offset);
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: var(--focus-ring);
  outline-offset: var(--focus-offset);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

main {
  overflow: visible;
}

/* Skip link — add to HTML when ready; hidden until focused */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: calc(var(--z-modal) + 1);
  padding: 12px 20px;
  background: var(--color-primary);
  color: var(--color-white);
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: top 0.2s ease;
}

.skip-link:focus-visible {
  top: 16px;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --------------------------------------------------------------------------
   Section 1: Announcement Bar
   -------------------------------------------------------------------------- */
.announcement-bar {
  background: var(--gradient-gold);
  color: var(--color-text);
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: var(--z-announcement);
}

.announcement-bar__track {
  display: flex;
  width: max-content;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.announcement-bar__content {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  min-width: max-content;
}

.announcement-bar__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 28px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  white-space: nowrap;
  flex-shrink: 0;
}

.announcement-bar__leaf {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Legacy keyframes retained for reference; marquee motion is JS-driven. */
@keyframes marquee-scroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(calc(-1 * var(--marquee-distance, 0px)), 0, 0);
  }
}

/* --------------------------------------------------------------------------
   Section 2: Header
   -------------------------------------------------------------------------- */
.header {
  background-color: var(--color-bg);
  position: relative;
  z-index: var(--z-header);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  min-height: var(--header-height);
  height: auto;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 10px 30px;
}

.header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  height: 100%;
  width: 100%;
  overflow: visible;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  flex: 1;
}

.header__logo {
  flex-shrink: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 10px 0;
  background-color: var(--color-bg);
  justify-self: start;
}

.header__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  justify-self: center;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
  justify-self: end;
}

.header__logo img {
  height: 110px;
  width: auto;
  max-width: min(280px, 40vw);
  object-fit: contain;
  display: block;
}

.header__nav-link {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--color-text);
  position: relative;
  padding: 4px 0;
}

.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-gold);
  transition: width var(--transition);
}

.header__nav-link:hover {
  color: var(--color-primary);
}

.header__nav-link:hover::after,
.header__nav-link--active::after {
  width: 100%;
}

.header__nav-link--active {
  color: var(--color-primary);
}

.header__action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: var(--touch-min);
  min-height: var(--touch-min);
  width: var(--touch-min);
  height: var(--touch-min);
  color: var(--color-primary);
  border-radius: 50%;
  transition: background-color var(--transition), transform var(--transition);
}

.header__action-btn svg {
  width: 22px;
  height: 22px;
}

.header__cart {
  position: relative;
}

.header__cart-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  background-color: var(--color-gold);
  color: var(--color-text);
  font-size: 0.6875rem;
  font-weight: 700;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.header__cart-badge:empty,
.header__cart-badge[data-count="0"] {
  display: none;
}

/* Hamburger Menu */
.header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  min-width: var(--touch-min);
  min-height: var(--touch-min);
  width: var(--touch-min);
  height: var(--touch-min);
  padding: 10px;
  z-index: 1002;
}

.header__hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-primary);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.header__hamburger--open .header__hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header__hamburger--open .header__hamburger-line:nth-child(2) {
  opacity: 0;
}

.header__hamburger--open .header__hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Navigation */
.header__mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--color-bg);
  box-shadow: var(--shadow-md);
  padding: 20px;
  transform: translateY(-120%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.4s ease, opacity 0.4s ease, visibility 0.4s ease;
  z-index: var(--z-header-menu);
  overflow: visible;
}

.header__mobile-nav--open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.header__mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.header__mobile-nav-link {
  display: block;
  padding: 14px 16px;
  min-height: var(--touch-min);
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text);
  border-radius: var(--radius-sm);
  transition: background-color var(--transition), color var(--transition);
}

.header__mobile-nav-link:hover,
.header__mobile-nav-link--active {
  background-color: var(--color-cream);
  color: var(--color-primary);
}

/* --------------------------------------------------------------------------
   Section 3: Hero Banner Slider
   -------------------------------------------------------------------------- */
.hero-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: var(--color-primary-dark);
}

.hero-slider__slides {
  position: relative;
  width: 100%;
  aspect-ratio: 1920 / 600;
  max-height: var(--hero-max-height);
  overflow: hidden;
  margin: 0 auto;
  isolation: isolate;
}

.hero-slider__track {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.hero-slider__slide {
  position: relative;
  flex: 0 0 100%;
  min-width: 100%;
  opacity: 1;
  transition: none;
  pointer-events: none;
}

.hero-slider__slide--active {
  pointer-events: auto;
}

.hero-slider__link {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-slider__link picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-slider__link picture,
.hero-slider__link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Slider Arrows */
.hero-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  min-width: var(--touch-min);
  min-height: var(--touch-min);
  width: 48px;
  height: 48px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  box-shadow: var(--shadow-sm);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease,
              visibility 0.3s ease,
              background-color var(--transition),
              transform var(--transition);
}

.hero-slider__arrow svg {
  width: 20px;
  height: 20px;
}

.hero-slider__arrow--prev {
  left: 20px;
}

.hero-slider__arrow--next {
  right: 20px;
}

@media (min-width: 769px) {
  .hero-slider:hover .hero-slider__arrow {
    opacity: 1;
    visibility: visible;
  }
}

@media (max-width: 768px) {
  .hero-slider__arrow {
    display: none !important;
  }
}

/* Slider Dots */
.hero-slider__dots {
  overflow: visible;
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 10;
  padding: 6px 8px;
  pointer-events: auto;
}

.hero-slider__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: 2px solid transparent;
  transition: background-color var(--transition), transform var(--transition);
  transform-origin: center;
  flex-shrink: 0;
  padding: 0;
  min-width: 12px;
  min-height: 12px;
  position: relative;
}

/* Expand tap target without changing dot visual size */
.hero-slider__dot::before {
  content: '';
  position: absolute;
  inset: -10px;
}

.hero-slider__dot:hover {
  background-color: rgba(255, 255, 255, 0.8);
}

.hero-slider__dot--active {
  background: var(--gradient-gold);
  border-color: var(--color-white);
  transform: scale(1.15);
}

/* --------------------------------------------------------------------------
   Section 4: Trust Badges Bar
   -------------------------------------------------------------------------- */
.trust-badges {
  background: var(--gradient-gold);
  width: 100%;
  overflow: hidden;
  padding: 18px 0;
  position: relative;
  z-index: var(--z-announcement);
}

.trust-badges__track-wrapper {
  overflow: hidden;
  width: 100%;
}

.trust-badges__track {
  display: flex;
  width: max-content;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.trust-badges__content {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  min-width: max-content;
}

.trust-badges__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 32px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text);
  white-space: nowrap;
  flex-shrink: 0;
}

.trust-badges__icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.trust-badges__separator {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  opacity: 0.85;
}

/* --------------------------------------------------------------------------
   Section Headings (shared)
   -------------------------------------------------------------------------- */
.section-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 48px;
  gap: 6px;
}

.section-heading__leaf {
  width: 38px;
  height: 38px;
  margin: 0;
  display: block;
  object-fit: contain;
  object-position: center;
  flex-shrink: 0;
}

.section-heading__title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 500;
  color: var(--color-text);
  margin: 0;
  line-height: 1.15;
}

.section-heading__underline {
  width: 60px;
  height: 3px;
  background: var(--gradient-gold);
  margin: 0 auto;
  border-radius: 2px;
}

/* --------------------------------------------------------------------------
   Section 5: Categories
   -------------------------------------------------------------------------- */
.categories {
  padding: 80px 0;
  background-color: var(--color-bg);
}

.categories__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.category-card {
  text-align: center;
  cursor: pointer;
}

.category-card__link {
  display: block;
}

.category-card__image-wrap {
  position: relative;
  width: 100%;
  max-width: 220px;
  margin: 0 auto 20px;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid transparent;
  background-image: linear-gradient(var(--color-bg), var(--color-bg)), var(--gradient-gold);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  transition: transform var(--transition), box-shadow var(--transition);
}

.category-card__image-wrap picture,
.category-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  backface-visibility: hidden;
}

.category-card__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(18, 110, 25, 0);
  border-radius: 50%;
  transition: background-color var(--transition);
  pointer-events: none;
}

.category-card__name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-text);
  transition: color var(--transition);
}

/* --------------------------------------------------------------------------
   Section 6: Featured Products
   -------------------------------------------------------------------------- */
.featured-products {
  padding: 80px 0 60px;
  background-color: var(--color-cream);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.featured-products__cta {
  text-align: center;
  margin-top: 40px;
}

.featured-products__view-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  background: var(--gradient-gold);
  color: var(--color-text);
  font-weight: 700;
  font-size: 0.9375rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: filter var(--transition), transform var(--transition);
}

.featured-products__view-all:hover {
  filter: brightness(0.92);
  transform: translateY(-1px);
}

.product-card {
  background-color: var(--color-bg);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: column;
}

@media (hover: hover) {
  .product-card {
    transition: box-shadow var(--transition);
  }
  .product-card:hover {
    box-shadow: var(--shadow-md);
  }

  .category-card:hover .category-card__image-wrap {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
  }

  .category-card:hover .category-card__image-wrap img {
    transform: scale(1.08);
  }

  .category-card:hover .category-card__overlay {
    background-color: rgba(18, 110, 25, 0.35);
  }

  .category-card:hover .category-card__name {
    color: var(--color-primary);
  }

  .header__action-btn:hover {
    background-color: rgba(18, 110, 25, 0.08);
    transform: scale(1.05);
  }

  .hero-slider__arrow:hover {
    background: var(--gradient-gold);
    color: var(--color-text);
    transform: translateY(-50%) scale(1.08);
  }
}

.product-card__link {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 5;
  background: var(--gradient-gold);
  color: var(--color-text);
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: inline-block;
  line-height: 1.4;
  pointer-events: none;
}

.product-card__image-wrap {
  aspect-ratio: 1;
  overflow: hidden;
  background-color: var(--color-cream);
  position: relative;
  z-index: 0;
}

.product-card__image-wrap img.img-primary {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transition: opacity 0.25s ease;
  z-index: 2;
}

.product-card__image-wrap img.img-secondary {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: 1;
}

.product-card:hover .product-card__image-wrap img.img-primary {
  opacity: 0;
}

.product-card:hover .product-card__image-wrap img.img-secondary {
  opacity: 1;
  z-index: 2;
}

.product-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  backface-visibility: hidden;
}

.product-card__body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card__name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 8px;
  line-height: 1.4;
}

.product-card__rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}

.product-card__stars {
  display: flex;
  gap: 2px;
  color: var(--color-gold);
  font-size: 0.8125rem;
}

.product-card__review-count {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.product-card__pricing {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.product-card__price {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-primary);
}

.product-card__mrp {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  text-decoration: line-through;
}

.product-card__discount {
  font-size: 0.6875rem;
  font-weight: 600;
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 3px 8px;
  border-radius: 4px;
}

.product-card__add-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--gradient-gold);
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: filter var(--transition), transform var(--transition);
  margin-top: auto;
}

.product-card__add-btn:hover {
  filter: brightness(0.92);
}

.product-card__add-btn:active {
  transform: scale(0.98);
}

.product-card__add-btn svg {
  width: 18px;
  height: 18px;
}

/* Toast notification */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  z-index: var(--z-toast);
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  pointer-events: none;
}

.toast--visible {
  transform: translateY(0);
  opacity: 1;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer {
  background-color: var(--color-primary-dark);
  color: var(--color-white);
  padding-top: 60px;
  margin-top: 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer__brand-logo {
  width: 160px;
  height: auto;
  max-width: 100%;
  margin-bottom: 16px;
  display: block;
  object-fit: contain;
  filter: none;
}

.footer__tagline {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
}

.footer__social {
  display: flex;
  gap: 14px;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-gold);
  color: var(--color-text);
  transition: background-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.footer__social-link:hover {
  background: var(--color-gold);
  color: var(--color-text);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.footer__social-link svg {
  width: 20px;
  height: 20px;
}

.footer__column-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 20px;
  color: var(--color-gold);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer__link {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--transition), padding-left var(--transition);
}

.footer__link:hover {
  color: var(--color-gold);
  padding-left: 4px;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 14px;
  line-height: 1.6;
}

.footer__contact-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--color-gold);
  margin-top: 2px;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px;
  text-align: center;
}

.footer__copyright {
  font-size: 0.875rem;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* --------------------------------------------------------------------------
   Shop Page
   -------------------------------------------------------------------------- */
.shop-hero {
  background-color: var(--color-cream);
  padding: 50px 0;
  text-align: center;
}

.shop-hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.shop-hero__leaf {
  width: 38px;
  height: 38px;
  margin: 0;
  display: block;
  object-fit: contain;
  object-position: center;
  flex-shrink: 0;
}

.shop-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 500;
  color: var(--color-text);
  margin: 0;
  line-height: 1.15;
}

.shop-hero__subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text-muted);
  max-width: 520px;
  margin: 0;
  line-height: 1.45;
}

.shop-categories {
  background-color: var(--color-bg);
  padding: 40px 0;
}

.shop-categories__all {
  display: block;
  width: fit-content;
  margin: 0 auto 28px;
  padding: 8px 18px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-primary);
  background: transparent;
  border: 2px solid var(--color-gold);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background-color var(--transition), color var(--transition);
}

.shop-categories__all:hover,
.shop-categories__all--active {
  background: var(--gradient-gold);
  color: var(--color-text);
}

.shop-categories__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.shop-category-filter {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-align: center;
  font-family: inherit;
  color: inherit;
  width: 100%;
}

.shop-category-filter__image-wrap {
  position: relative;
  width: 100%;
  max-width: 220px;
  margin: 0 auto 20px;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid transparent;
  background-image: linear-gradient(var(--color-bg), var(--color-bg)), var(--gradient-gold);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  transition: transform var(--transition), box-shadow var(--transition);
}

.shop-category-filter__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.shop-category-filter__name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-text);
  transition: color var(--transition);
}

.shop-category-filter--active .shop-category-filter__image-wrap {
  box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.4);
}

@media (hover: hover) {
  .shop-category-filter:hover .shop-category-filter__image-wrap {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
  }

  .shop-category-filter:hover .shop-category-filter__name {
    color: var(--color-primary);
  }
}

.shop-toolbar {
  position: relative;
  z-index: 900;
  background-color: var(--color-bg);
  border-bottom: 1px solid #eee;
  padding: 14px 0;
}

.shop-toolbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

.shop-toolbar__group {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.shop-toolbar__label {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-text);
}

.shop-toolbar__select {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-text);
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 8px 14px;
  background-color: var(--color-bg);
  cursor: pointer;
  min-height: var(--touch-min);
  transition: border-color var(--transition);
}

.shop-toolbar__select:focus-visible {
  border-color: var(--color-primary);
  outline: var(--focus-ring);
  outline-offset: var(--focus-offset);
}

.shop-products {
  background-color: var(--color-cream);
  padding: 40px 0 80px;
}

.shop-products__empty {
  display: none;
  text-align: center;
  padding: 60px 20px;
  font-family: var(--font-body);
  font-size: 1.125rem;
  color: var(--color-text-muted);
}

.shop-products__empty--visible {
  display: block;
}

.shop-products .product-card {
  transition: opacity 0.35s ease, box-shadow var(--transition);
}

.shop-products .product-card--hidden {
  display: none !important;
}

.shop-products .product-card--fading {
  opacity: 0;
}

@media (max-width: 768px) {
  .shop-categories__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(8px, 2.5vw, 12px);
  }

  .shop-category-filter__image-wrap {
    max-width: min(100px, 28vw);
    border-width: 2px;
    margin-bottom: 12px;
  }

  .shop-category-filter__name {
    font-size: clamp(0.6875rem, 2.8vw, 0.8125rem);
  }

  .shop-toolbar__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .shop-toolbar__group {
    width: 100%;
    justify-content: space-between;
  }

  .shop-toolbar__select {
    flex: 1;
    min-width: 0;
  }
}

@media (max-width: 480px) {
  .shop-hero {
    padding: 40px 0;
  }

  .shop-categories {
    padding: 30px 0;
  }

  .shop-category-filter__image-wrap {
    max-width: min(90px, 26vw);
  }
}

/* --------------------------------------------------------------------------
   Responsive — Desktop Large (min 1440px)
   -------------------------------------------------------------------------- */
@media (min-width: 1440px) {
  .hero-slider__slides {
    max-height: var(--hero-max-height);
  }

  .container {
    max-width: 1320px;
  }
}

/* --------------------------------------------------------------------------
   Responsive — Tablet (max 1024px)
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  :root {
    --hero-max-height: 450px;
  }

  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }

  .hero-slider__slides {
    aspect-ratio: 768 / 400;
  }

  .hero-slider__arrow {
    width: 42px;
    height: 42px;
  }

  .categories__grid {
    gap: 24px;
  }

  .category-card__image-wrap {
    max-width: 180px;
  }
}

/* --------------------------------------------------------------------------
   Responsive — Mobile (max 768px)
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  :root {
    --header-height: 80px;
    --hero-max-height: 400px;
  }

  .header {
    min-height: var(--header-height);
    height: auto;
    padding: 5px 15px;
  }

  .header__inner {
    display: grid;
    grid-template-columns: minmax(var(--touch-min), auto) minmax(0, 1fr) minmax(var(--touch-min), auto);
    grid-template-areas: "menu logo actions";
    align-items: center;
    gap: clamp(4px, 2vw, 8px);
    padding: 0 4px;
  }

  .header__nav {
    display: none;
  }

  .header__hamburger {
    display: flex;
    grid-area: menu;
    order: unset;
    flex-shrink: 0;
  }

  .header__logo {
    grid-area: logo;
    position: static;
    left: auto;
    transform: none;
    justify-self: center;
    padding: 4px 0;
    min-width: 0;
    max-width: 100%;
    overflow: visible;
  }

  .header__logo img {
    height: clamp(48px, 16vw, 65px);
    width: auto;
    max-width: min(180px, 52vw);
    object-fit: contain;
    margin: 0 auto;
  }

  .header__actions {
    grid-area: actions;
    gap: 4px;
    flex-shrink: 0;
  }

  .header__mobile-nav {
    display: block;
  }

  .hero-slider__slides {
    aspect-ratio: 480 / 300;
  }

  .hero-slider__arrow {
    min-width: var(--touch-min);
    min-height: var(--touch-min);
    width: var(--touch-min);
    height: var(--touch-min);
  }

  .hero-slider__dots {
    bottom: 12px;
    padding: 8px 10px;
  }

  .categories__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(8px, 2.5vw, 12px);
  }

  .category-card__image-wrap {
    max-width: min(100px, 28vw);
    border-width: 2px;
    margin-bottom: 12px;
  }

  .category-card__name {
    font-size: clamp(0.6875rem, 2.8vw, 0.8125rem);
    line-height: 1.3;
    word-break: break-word;
    hyphens: auto;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  .categories {
    padding: 60px 0;
  }

  .hero-slider__arrow--prev {
    left: 10px;
  }

  .hero-slider__arrow--next {
    right: 10px;
  }

  .featured-products {
    padding: 60px 0;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .product-card__body {
    padding: 12px;
  }

  .product-card__name {
    font-size: 0.8125rem;
  }

  .product-card__price {
    font-size: 1rem;
  }

  .product-card__add-btn {
    padding: 10px 12px;
    font-size: 0.75rem;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer__brand-logo {
    margin-left: auto;
    margin-right: auto;
  }

  .footer__social {
    justify-content: center;
  }

  .footer__contact-item {
    justify-content: center;
  }

  .trust-badges__item {
    padding: 0 20px;
    font-size: 0.8125rem;
  }

  .announcement-bar__item {
    padding: 10px 20px;
    font-size: 0.8125rem;
  }
}

/* --------------------------------------------------------------------------
   Responsive — Small Mobile (max 480px)
   -------------------------------------------------------------------------- */
@media (max-width: 480px) {
  :root {
    --header-height: 70px;
    --hero-max-height: 300px;
  }

  .header {
    min-height: var(--header-height);
    padding: 5px 10px;
  }

  .header__inner {
    grid-template-columns: minmax(var(--touch-min), auto) minmax(0, 1fr) minmax(var(--touch-min), auto);
    gap: 4px;
  }

  .header__hamburger {
    min-width: var(--touch-min);
    min-height: var(--touch-min);
    width: var(--touch-min);
    height: var(--touch-min);
    padding: 10px;
  }

  .header__logo img {
    max-width: min(150px, 46vw);
  }

  .header__action-btn {
    min-width: var(--touch-min);
    min-height: var(--touch-min);
    width: var(--touch-min);
    height: var(--touch-min);
  }

  .header__action-btn svg {
    width: 20px;
    height: 20px;
  }

  .container {
    padding: 0 14px;
  }

  .category-card__image-wrap {
    max-width: min(90px, 26vw);
  }

  .category-card__name {
    font-size: 0.75rem;
  }

  .product-card__badge {
    font-size: 0.625rem;
    padding: 3px 8px;
  }
}

/* --------------------------------------------------------------------------
   Responsive — Extra Small (max 360px)
   -------------------------------------------------------------------------- */
@media (max-width: 360px) {
  :root {
    --header-height: 64px;
  }

  .header__logo img {
    max-width: min(130px, 42vw);
  }

  .header__inner {
    gap: 2px;
  }

  .products-grid {
    gap: 10px;
  }

  .product-card__add-btn {
    font-size: 0.6875rem;
    padding: 8px 10px;
  }

  .announcement-bar__item {
    padding: 10px 14px;
    font-size: 0.75rem;
  }
}

/* --------------------------------------------------------------------------
   Responsive — Minimum (max 320px)
   -------------------------------------------------------------------------- */
@media (max-width: 320px) {
  .header__logo img {
    max-width: min(110px, 38vw);
  }

  .category-card__image-wrap {
    max-width: min(80px, 24vw);
  }

  .category-card__name {
    font-size: 0.6875rem;
  }
}

/* --------------------------------------------------------------------------
   Reduced Motion
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .announcement-bar__track,
  .trust-badges__track {
    animation: none !important;
    transform: translate3d(0, 0, 0) !important;
  }
}

/* --------------------------------------------------------------------------
   WooCommerce Compatibility (future-ready)
   -------------------------------------------------------------------------- */
.woocommerce-notices-wrapper,
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  max-width: 1280px;
  margin: 0 auto 20px;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
}

.woocommerce-message {
  background-color: rgba(18, 110, 25, 0.08);
  border-left: 4px solid var(--color-primary);
  color: var(--color-text);
}

.woocommerce-info {
  background-color: var(--color-cream);
  border-left: 4px solid var(--color-gold);
  color: var(--color-text);
}

.woocommerce-error {
  background-color: rgba(180, 40, 40, 0.08);
  border-left: 4px solid #b42828;
  color: var(--color-text);
}

.woocommerce ul.products,
.woocommerce-page ul.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  width: 100% !important;
  margin: 0 !important;
  float: none !important;
}

.woocommerce-pagination,
.woocommerce nav.woocommerce-pagination {
  margin-top: 40px;
  text-align: center;
}

.woocommerce-pagination ul {
  display: inline-flex;
  gap: 8px;
  list-style: none;
  padding: 0;
}

.woocommerce-pagination ul li a,
.woocommerce-pagination ul li span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: var(--radius-sm);
  background-color: var(--color-bg);
  color: var(--color-text);
  box-shadow: var(--shadow-sm);
}

.woocommerce-pagination ul li span.current {
  background: var(--gradient-gold);
  font-weight: 700;
}

.woocommerce table.shop_table,
.woocommerce-checkout form.checkout,
.woocommerce-account .woocommerce-MyAccount-navigation,
.woocommerce-account .woocommerce-MyAccount-content {
  width: 100%;
  max-width: 100%;
  overflow: visible;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
  width: 100%;
  max-width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9375rem;
}

.woocommerce form .form-row input.input-text:focus-visible,
.woocommerce form .form-row textarea:focus-visible,
.woocommerce form .form-row select:focus-visible {
  outline: var(--focus-ring);
  outline-offset: var(--focus-offset);
  border-color: var(--color-primary);
}

.woocommerce .select2-container {
  z-index: var(--z-dropdown);
}

.woocommerce .select2-dropdown {
  z-index: calc(var(--z-dropdown) + 1);
  overflow: visible;
}

.woocommerce .widget_shopping_cart,
.woocommerce .widget_shopping_cart_content,
.woocommerce-mini-cart,
.woocommerce .cart_list,
.select2-dropdown,
.lca-dropdown,
.lca-modal,
.lca-overlay,
.lca-cart-drawer,
.lca-search-overlay,
.lca-mega-menu {
  overflow: visible;
}

.lca-modal,
.lca-overlay,
.lca-cart-drawer,
.lca-search-overlay {
  z-index: var(--z-modal);
}

.lca-dropdown,
.woocommerce .widget_shopping_cart {
  z-index: var(--z-dropdown);
}

/* Single product */
.woocommerce div.product,
.woocommerce-page div.product {
  overflow: visible;
}

.woocommerce div.product div.images,
.woocommerce div.product div.summary {
  width: 100%;
  max-width: 100%;
  overflow: visible;
}

.woocommerce span.onsale,
.woocommerce ul.products li.product .onsale {
  background: var(--gradient-gold);
  color: var(--color-text);
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  min-height: auto;
  min-width: auto;
  line-height: 1.4;
  z-index: 2;
}

.woocommerce div.product form.cart .variations,
.woocommerce div.product form.cart .variations select {
  width: 100%;
  max-width: 100%;
}

.woocommerce div.product .woocommerce-tabs,
.woocommerce div.product .related.products,
.woocommerce div.product .upsells.products {
  overflow: visible;
  width: 100%;
  max-width: 100%;
}

/* Cart & checkout */
.woocommerce-cart table.cart,
.woocommerce-checkout #order_review,
.woocommerce-checkout .col2-set {
  overflow: visible;
  width: 100%;
}

.woocommerce-cart .cart-collaterals,
.woocommerce-checkout #payment {
  overflow: visible;
}

.woocommerce .blockUI.blockOverlay {
  z-index: calc(var(--z-modal) - 1);
}

/* My Account */
.woocommerce-account .woocommerce-MyAccount-navigation ul {
  list-style: none;
  padding: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation li a {
  display: block;
  padding: 12px 16px;
  min-height: var(--touch-min);
  border-radius: var(--radius-sm);
}

.woocommerce-account .woocommerce-MyAccount-navigation li a:focus-visible {
  outline: var(--focus-ring);
  outline-offset: var(--focus-offset);
}

@media (max-width: 768px) {
  .woocommerce-account .woocommerce-MyAccount-navigation,
  .woocommerce-account .woocommerce-MyAccount-content {
    float: none;
    width: 100%;
  }
}

/* Mini cart widget */
.woocommerce-mini-cart__buttons .button,
.woocommerce.widget_shopping_cart .buttons .button {
  min-height: var(--touch-min);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
}

.woocommerce-mini-cart__total {
  padding: 12px 0;
}

/* Star ratings — match brand gold */
.woocommerce .star-rating,
.woocommerce-page .star-rating {
  color: var(--color-gold);
}

/* Quantity inputs */
.woocommerce .quantity .qty {
  min-height: var(--touch-min);
  padding: 8px 12px;
  width: 4.5em;
  text-align: center;
}

/* Prevent plugin popups from being clipped */
#wpadminbar ~ * .lca-modal,
.admin-bar .lca-modal {
  top: 32px;
}

@media (max-width: 782px) {
  .admin-bar .lca-modal {
    top: 46px;
  }
}

@media (max-width: 1024px) {
  .woocommerce ul.products,
  .woocommerce-page ul.products {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .woocommerce ul.products,
  .woocommerce-page ul.products {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

@media (max-width: 480px) {
  .woocommerce ul.products,
  .woocommerce-page ul.products {
    gap: 10px;
  }
}

.shop-products__empty {
  display: none;
  text-align: center;
  color: var(--color-text-muted);
  font-size: 1rem;
  padding: 60px 0;
  font-family: var(--font-body);
}

.shop-products__empty--visible {
  display: block;
}

.product-card--hidden {
  display: none;
}

.shop-products__bottom {
  text-align: center;
  padding-top: 48px;
}

.shop-pagination {
  margin-top: 48px;
  text-align: center;
}

.shop-pagination[hidden] {
  display: none;
}

.shop-pagination__list {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.shop-pagination__link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: var(--radius-sm);
  background-color: var(--color-bg);
  color: var(--color-text);
  box-shadow: var(--shadow-sm);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: box-shadow var(--transition);
}

@media (hover: hover) {
  .shop-pagination__link:hover {
    box-shadow: var(--shadow-md);
  }
}

.shop-pagination__link--current {
  background: var(--gradient-gold);
  font-weight: 700;
  cursor: default;
}

@media (max-width: 768px) {
  .shop-toolbar__inner {
    flex-wrap: wrap;
    gap: 10px;
  }

  .shop-toolbar__select {
    padding: 6px 10px;
    font-size: 0.8125rem;
  }
}

/* --------------------------------------------------------------------------
   Product Page
   -------------------------------------------------------------------------- */

/* Breadcrumb */
.product-breadcrumb {
  background-color: var(--color-bg);
  padding: 14px 0;
  border-bottom: 1px solid #eee;
}

.product-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  font-size: 13px;
}

.product-breadcrumb__link {
  color: #555;
  transition: color var(--transition);
}

@media (hover: hover) {
  .product-breadcrumb__link:hover {
    color: var(--color-primary);
  }
}

.product-breadcrumb__current {
  color: var(--color-text);
  font-weight: 600;
}

/* Main product section */
.product-main {
  background-color: var(--color-bg);
  padding: 48px 0;
}

.product-main__grid {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 48px;
  align-items: start;
}

/* Image gallery */
.product-gallery {
  background-color: var(--color-cream);
  border-radius: 16px;
  padding: 24px;
}

.product-gallery__main {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 16px;
  position: relative;
}

.product-gallery__main--slider {
  padding: 0;
}

.product-gallery__viewport {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 12px;
}

.product-gallery__track {
  display: flex;
  height: 100%;
  transition: transform 0.4s ease;
  will-change: transform;
}

.product-gallery__slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-gallery__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  color: var(--color-text);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.25s ease, background-color var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 1;
}

.product-gallery__arrow--prev {
  left: 12px;
}

.product-gallery__arrow--next {
  right: 12px;
}

.product-gallery__main--slider:hover .product-gallery__arrow {
  opacity: 1;
}

.product-gallery__arrow:hover {
  background: #fff;
}

.product-gallery__thumbs {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  flex-wrap: nowrap;
  padding-bottom: 4px;
  scrollbar-width: thin;
}

.product-gallery__thumb {
  flex: 0 0 auto;
  width: 72px;
  height: 72px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  background: var(--color-bg);
  cursor: pointer;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.product-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-gallery__main-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-gallery__thumb--active {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 2px rgba(201, 168, 76, 0.3);
}

@media (hover: hover) {
  .product-gallery__thumb:hover {
    border-color: var(--color-gold);
  }
}

/* Product info */
.product-info__category {
  display: inline-block;
  padding: 4px 12px;
  border: none;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-white);
  background-color: var(--color-primary);
  margin-bottom: 12px;
}

.product-info__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.2;
  margin: 0 0 16px;
}

.product-info__pricing {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}

.product-info__price {
  font-family: var(--font-body);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-primary);
}

.product-info__mrp {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #888;
  text-decoration: line-through;
}

.product-info__discount {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 4px 10px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
}

.product-info__tax-note {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin: 0 0 24px;
}

/* Product trust badges row */
.product-trust-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.product-trust-badges__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  background-color: var(--color-primary);
  border-radius: 12px;
  padding: 16px 12px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  color: var(--color-white);
  line-height: 1.35;
}

.product-trust-badges__icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}

/* Quantity */
.product-qty {
  margin-bottom: 20px;
}

.product-qty__label {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 8px;
}

.product-qty__controls {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.product-qty__btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ddd;
  border-radius: 6px;
  background-color: var(--color-bg);
  font-size: 1.25rem;
  line-height: 1;
  color: var(--color-text);
  cursor: pointer;
  transition: border-color var(--transition), background-color var(--transition);
}

@media (hover: hover) {
  .product-qty__btn:hover {
    border-color: var(--color-primary);
    background-color: rgba(18, 110, 25, 0.06);
  }
}

.product-qty__input {
  width: 50px;
  height: 36px;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  -moz-appearance: textfield;
}

.product-qty__input::-webkit-outer-spin-button,
.product-qty__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.product-qty__input:focus-visible {
  outline: var(--focus-ring);
  outline-offset: var(--focus-offset);
}

/* Product buttons */
.product-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 52px;
  border: none;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: filter var(--transition), background-color var(--transition);
}

.product-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.product-btn--cart {
  background: var(--gradient-gold);
  color: var(--color-text);
  margin-bottom: 12px;
}

@media (hover: hover) {
  .product-btn--cart:hover {
    filter: brightness(0.92);
  }
}

.product-btn--whatsapp {
  background-color: #25D366;
  color: var(--color-white);
  margin-bottom: 32px;
}

@media (hover: hover) {
  .product-btn--whatsapp:hover {
    background-color: #1fb855;
  }
}

/* Description */
.product-description__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-text);
  margin: 0 0 16px;
  padding-bottom: 8px;
  position: relative;
}

.product-description__title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 2px;
  background: var(--gradient-gold);
  border-radius: 1px;
}

.product-description__text {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.8;
  color: #444;
  margin: 0;
}

/* Related products */
.product-related {
  background-color: var(--color-cream);
  padding: 60px 0;
  overflow: visible;
}

.product-related .section-heading {
  margin-bottom: 36px;
}

.product-related .container {
  overflow: visible;
}

.related-slider-wrapper {
  position: relative;
  padding: 0;
  overflow: visible;
  width: 100%;
  cursor: grab;
}

.related-slider-wrapper:active {
  cursor: grabbing;
}

.related-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 8px;
  cursor: grab;
  scroll-behavior: smooth;
}

.related-slider::-webkit-scrollbar {
  display: none;
}

.related-slider .product-card {
  flex: 0 0 calc(25% - 15px);
  min-width: calc(25% - 15px);
  scroll-snap-align: start;
}

/* Show 40% of 5th card on desktop */
@media (min-width: 1024px) {
  .related-slider .product-card {
    flex: 0 0 calc(23.5% - 15px);
    min-width: calc(23.5% - 15px);
  }
}

@media (max-width: 768px) {
  .related-slider .product-card {
    flex: 0 0 calc(50% - 10px);
    min-width: calc(50% - 10px);
  }
}

@media (max-width: 480px) {
  .related-slider .product-card {
    flex: 0 0 calc(70% - 10px);
    min-width: calc(70% - 10px);
  }
}

/* Related products arrows */
.related-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  border: none;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease,
              visibility 0.3s ease,
              background-color 0.3s ease,
              transform 0.3s ease;
}

.related-arrow svg {
  width: 16px;
  height: 16px;
}

.related-arrow--prev {
  left: 6px;
}

.related-arrow--next {
  right: 6px;
}

.related-arrow:hover {
  background: var(--gradient-gold);
  color: var(--color-text);
  transform: translateY(-50%) scale(1.08);
}

/* Show arrows ONLY on desktop on hover */
@media (min-width: 769px) {
  .related-slider-wrapper {
    padding: 14px 48px;
  }

  .related-slider-wrapper:hover .related-arrow {
    opacity: 1;
    visibility: visible;
  }
}

/* Hide arrows completely on tablet and mobile */
@media (max-width: 768px) {
  .related-arrow {
    display: none !important;
  }

  .related-slider-wrapper {
    padding: 0;
    margin: 0;
    width: 100%;
  }

  .related-slider {
    padding-left: 0;
    padding-right: 0;
  }
}

/* Product page — tablet & mobile */
@media (max-width: 768px) {
  .product-main__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .product-trust-badges {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .product-breadcrumb__list {
    font-size: 11px;
  }

  .product-trust-badges {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-qty__controls {
    width: 100%;
    justify-content: center;
  }

  .product-main {
    padding: 32px 0;
  }
}

/* Product Accordion */
.product-accordion {
  background-color: var(--color-bg);
  padding: 40px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.accordion-item {
  border: 1px solid #e5e5e5;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-bg);
}

.accordion-item__header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: var(--color-bg);
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background-color var(--transition);
}

.accordion-item__header:hover {
  background-color: var(--color-cream);
}

.accordion-item__title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--color-text);
  letter-spacing: 0.02em;
}

.accordion-item__icon {
  width: 20px;
  height: 20px;
  color: var(--color-primary);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.accordion-item--open .accordion-item__icon {
  transform: rotate(180deg);
}

.accordion-item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion-item--open .accordion-item__body {
  overflow: visible;
}

.accordion-item__content {
  padding: 0 24px 24px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.8;
  color: #444;
}

.accordion-item__content p {
  margin: 0;
}

@media (max-width: 768px) {
  .accordion-item__header {
    padding: 16px 18px;
  }

  .accordion-item__content {
    padding: 0 18px 18px;
    font-size: 0.875rem;
  }

  .accordion-item__title {
    font-size: 1rem;
  }
}

/* Shimmer ONLY on product page buttons */
.product-add-btn,
.product-whatsapp-btn {
  position: relative;
  overflow: hidden;
}

.product-add-btn::after,
.product-whatsapp-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.45),
    transparent
  );
  animation: shimmer-sweep 2.5s infinite;
  animation-delay: 0s;
  pointer-events: none;
}

/* Both buttons shimmer at SAME time
   no delay difference */
@keyframes shimmer-sweep {
  0% {
    transform: translateX(-100%) skewX(-15deg);
  }
  100% {
    transform: translateX(250%) skewX(-15deg);
  }
}

/* --------------------------------------------------------------------------
   WooCommerce Cart Page — Premium layout
   -------------------------------------------------------------------------- */

/* Fallback when default page.php is used */
body.woocommerce-cart .info-section,
body.woocommerce-checkout .info-section {
  padding: 16px 0 32px;
}

body.woocommerce-cart .info-content,
body.woocommerce-checkout .info-content {
  max-width: none;
  width: 100%;
  margin: 0;
}

.shop-hero--compact,
body.woocommerce-cart .shop-hero,
body.woocommerce-checkout .shop-hero {
  padding: 18px 0 10px;
}

body.woocommerce-cart .shop-hero__leaf,
body.woocommerce-checkout .shop-hero__leaf {
  width: 32px;
  height: 32px;
}

body.woocommerce-cart .shop-hero__title,
body.woocommerce-checkout .shop-hero__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

body.woocommerce-cart .shop-hero__subtitle,
body.woocommerce-checkout .shop-hero__subtitle {
  display: none;
}

.lca-cart-section,
.lca-checkout-section {
  padding: 0 0 48px;
}

.lca-checkout-page {
  width: 100%;
  overflow-x: clip;
}

/* Checkout page — site footer matches all other pages */
body.woocommerce-checkout:not(.woocommerce-order-received) .footer {
  background-color: var(--color-primary-dark);
  color: var(--color-white);
  width: 100%;
  max-width: none;
  margin-top: 0;
  clear: both;
  position: relative;
  z-index: 2;
}

.lca-cart-section__container,
.lca-checkout-section__container,
.woocommerce-cart .woocommerce {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}

.lca-cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(280px, 3fr);
  gap: 24px;
  align-items: start;
}

.lca-cart-main {
  min-width: 0;
  background: var(--color-bg);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.lca-cart-products__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 16px;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  background: var(--color-cream);
}

.lca-cart-products__summary {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-text-muted);
  text-align: right;
  line-height: 1.4;
}

.lca-cart-products__summary-sep {
  margin: 0 6px;
  opacity: 0.5;
}

.lca-cart-products__summary-pay strong {
  color: var(--color-primary);
  font-weight: 700;
}

.lca-cart-item-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 8px;
  line-height: 1.35;
}

.lca-cart-item-price__sale {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--color-text);
}

.lca-cart-item-price__mrp {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  text-decoration: line-through;
}

.lca-cart-item-price__discount {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.02em;
}

.lca-cart-item-price-mobile {
  display: none;
}

.lca-cart-item__title {
  font-weight: 600;
  color: var(--color-text);
  font-size: 0.9375rem;
  text-decoration: none;
  display: inline-block;
  max-width: 100%;
  line-height: 1.4;
}

.lca-cart-item-subtotal__label {
  display: none;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-muted);
  margin-right: 6px;
}

.lca-cart-summary__notice {
  margin: 0 0 14px;
}

.lca-cart-summary__notice .lca-free-shipping-notice__text {
  margin: 0;
}

.lca-cart-totals__table .lca-cart-totals__savings {
  color: var(--color-primary);
  font-weight: 700;
}

.lca-shipping-status--free {
  color: var(--color-primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.8125rem;
}

.lca-cart-summary__savings-note {
  margin: 12px 0 0;
  padding: 10px 12px;
  background: rgba(18, 110, 25, 0.08);
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  color: var(--color-primary);
  font-weight: 600;
  line-height: 1.45;
}

.lca-cart-products__title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--color-text);
}

.lca-cart-products__count {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-text-muted);
  white-space: nowrap;
}

.lca-cart-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.lca-cart-sidebar {
  min-width: 0;
}

.lca-cart-sidebar .cart_totals {
  position: sticky;
  top: 88px;
}

.woocommerce-cart .woocommerce-cart-form {
  margin-bottom: 0;
}

.woocommerce-cart .cart-collaterals {
  margin: 0;
  width: 100%;
  float: none;
}

.woocommerce-cart .cart-collaterals .cart_totals {
  float: none;
  width: 100%;
  max-width: none;
  margin: 0;
}

.woocommerce-cart .cross-sells {
  grid-column: 1 / -1;
  margin-top: 12px;
}

@keyframes lca-cart-spin {
  to { transform: rotate(360deg); }
}

/* Column widths via colgroup */
.woocommerce-cart .lca-col-remove { width: 44px; }
.woocommerce-cart .lca-col-thumb { width: 96px; }
.woocommerce-cart .lca-col-name { width: auto; }
.woocommerce-cart .lca-col-price { width: 100px; }
.woocommerce-cart .lca-col-qty { width: 148px; }
.woocommerce-cart .lca-col-subtotal { width: 120px; }

.woocommerce-cart .woocommerce-cart-form__contents {
  table-layout: fixed;
  width: 100%;
  min-width: 640px;
}

.woocommerce-cart table.shop_table {
  border: none;
  border-radius: 0;
  font-family: var(--font-body);
  background: transparent;
  box-shadow: none;
  margin: 0;
}

.woocommerce-cart table.shop_table thead th {
  background: transparent;
  color: var(--color-text-muted);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 12px 16px;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.woocommerce-cart table.shop_table td {
  padding: 14px 12px;
  border-color: rgba(0, 0, 0, 0.06);
  vertical-align: middle;
}

.woocommerce-cart table.shop_table tbody tr.cart_item td {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.woocommerce-cart table.shop_table th.product-remove,
.woocommerce-cart table.shop_table td.product-remove {
  text-align: center;
  padding-left: 12px;
  padding-right: 8px;
}

.woocommerce-cart table.shop_table td.product-remove a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: #aaa;
  font-size: 1.25rem;
  line-height: 1;
  text-decoration: none;
  border-radius: 50%;
  transition: color var(--transition), background-color var(--transition);
}

.woocommerce-cart table.shop_table td.product-remove a:hover {
  color: #c0392b;
  background: rgba(192, 57, 43, 0.08);
}

.woocommerce-cart table.shop_table td.product-thumbnail {
  padding-left: 8px;
  padding-right: 8px;
}

.woocommerce-cart table.shop_table td.product-thumbnail img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  display: block;
  background: var(--color-cream);
}

.woocommerce-cart table.shop_table td.product-name {
  line-height: 1.4;
  padding-right: 12px;
  word-break: normal;
  overflow-wrap: break-word;
  hyphens: auto;
}

.woocommerce-cart table.shop_table td.product-name a {
  font-weight: 600;
  color: var(--color-text);
  font-size: 0.9375rem;
  text-decoration: none;
  display: inline-block;
  max-width: 100%;
}

.woocommerce-cart table.shop_table td.product-name a:hover {
  color: var(--color-primary);
}

.woocommerce-cart table.shop_table td.product-price {
  text-align: right;
}

.woocommerce-cart table.shop_table td.product-subtotal {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 0.9375rem;
  white-space: nowrap;
  text-align: right;
}

.woocommerce-cart table.shop_table td.product-price,
.woocommerce-cart table.shop_table td.product-subtotal {
  vertical-align: middle;
}

.woocommerce-cart table.shop_table th.product-price,
.woocommerce-cart table.shop_table th.product-subtotal {
  text-align: right;
}

.woocommerce-cart table.shop_table th.product-quantity,
.woocommerce-cart table.shop_table td.product-quantity {
  text-align: center;
}

.woocommerce-cart table.shop_table td.product-quantity .quantity,
.woocommerce-cart table.shop_table td.product-quantity .lca-qty-controls {
  margin: 0 auto;
  justify-content: center;
}

/* Coupon bar */
.lca-cart-coupon-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: var(--color-cream);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.lca-cart-coupon-bar__label {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
  flex: 0 0 auto;
}

.lca-cart-coupon-bar .coupon {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  gap: 10px;
  margin: 0;
  min-width: 0;
}

.lca-cart-coupon-bar .coupon .input-text {
  flex: 1 1 200px;
  min-width: 0;
  max-width: none;
  height: 42px;
  margin: 0;
}

.lca-cart-coupon-bar .coupon button {
  flex: 0 0 auto;
  height: 42px;
  white-space: nowrap;
}

/* Quantity controls */
.woocommerce-cart .quantity .qty {
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 6px 4px;
  font-size: 0.9375rem;
  width: 44px;
  height: 36px;
  text-align: center;
  color: var(--color-text);
  -moz-appearance: textfield;
}

.woocommerce-cart .quantity .qty::-webkit-outer-spin-button,
.woocommerce-cart .quantity .qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.woocommerce-cart .lca-qty-controls {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.woocommerce-cart .lca-qty-btn {
  width: 36px;
  height: 36px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: var(--color-bg);
  color: var(--color-text);
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition), color var(--transition);
  flex-shrink: 0;
}

.woocommerce-cart .lca-qty-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.woocommerce-cart button[name="update_cart"] {
  display: none;
}

.woocommerce-cart .coupon .input-text {
  border: 1px solid #ddd;
  border-radius: var(--radius-sm);
  padding: 0 14px;
  font-family: var(--font-body);
  font-size: 0.875rem;
}

.woocommerce-cart .coupon .input-text:focus {
  border-color: var(--color-primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(18, 110, 25, 0.1);
}

.woocommerce-cart .coupon button {
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius-sm);
  padding: 0 20px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: filter var(--transition);
}

.woocommerce-cart .coupon button:hover {
  filter: brightness(0.92);
}

/* Cart totals card */
.woocommerce-cart .cart_totals.lca-cart-totals {
  background: var(--color-cream);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: 0 4px 20px rgba(18, 110, 25, 0.06);
}

.woocommerce-cart .cart_totals h2 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-text);
  margin: 0 0 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.lca-cart-totals__table {
  width: 100%;
  border: none;
  box-shadow: none;
  background: transparent;
}

.lca-cart-totals__table th,
.lca-cart-totals__table td {
  border: none;
  padding: 11px 0;
  vertical-align: middle;
  background: transparent;
}

.lca-cart-totals__table th {
  font-size: 0.875rem;
  font-weight: 500;
  color: #555;
  text-align: left;
  width: 55%;
  text-transform: none;
  letter-spacing: 0;
}

.lca-cart-totals__table td {
  text-align: right;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--color-text);
}

.lca-cart-totals__table tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.lca-cart-totals__table tr.lca-free-shipping-notice,
.lca-cart-totals__table tr.lca-free-shipping-notice td {
  border-bottom: none;
}

.lca-cart-totals__table .order-total th,
.lca-cart-totals__table .order-total td {
  padding-top: 16px;
  padding-bottom: 4px;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-primary);
  border-top: 2px solid rgba(18, 110, 25, 0.12);
  border-bottom: none;
}

.lca-cart-totals__shipping-note {
  display: block;
  color: #666;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.45;
  text-align: right;
}

.lca-cart-totals .lca-free-shipping-notice td {
  padding: 12px 0 4px;
}

.lca-free-shipping-notice__text {
  margin: 0;
  padding: 10px 14px;
  background: #fff;
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  line-height: 1.45;
  border-left: 3px solid var(--color-gold);
}

.lca-free-shipping-notice__text--success {
  color: var(--color-primary);
  font-weight: 600;
  border-left-color: var(--color-primary);
}

.lca-free-shipping-notice__icon {
  font-weight: 700;
  margin-right: 4px;
}

.lca-cart-totals .wc-proceed-to-checkout {
  margin-top: 20px;
  padding-top: 0;
}

body.woocommerce-cart.is-cart-updating {
  cursor: wait;
}

body.woocommerce-cart.is-cart-updating::after {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(249, 245, 239, 0.55);
  z-index: 9998;
  pointer-events: none;
}

body.woocommerce-cart.is-cart-updating::before {
  content: '';
  position: fixed;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin: -20px 0 0 -20px;
  border: 3px solid rgba(18, 110, 25, 0.15);
  border-top-color: var(--color-primary);
  border-radius: 50%;
  animation: lca-cart-spin 0.7s linear infinite;
  z-index: 9999;
}

.woocommerce-cart .wc-proceed-to-checkout .checkout-button,
.woocommerce-cart a.checkout-button {
  display: block;
  width: 100%;
  padding: 14px 16px;
  background: var(--gradient-gold);
  color: var(--color-text);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.875rem;
  text-align: center;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: filter var(--transition);
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.woocommerce-cart .wc-proceed-to-checkout .checkout-button:hover,
.woocommerce-cart a.checkout-button:hover {
  filter: brightness(0.92);
}

/* Cart responsive */
@media (max-width: 1200px) {
  .lca-cart-section__container,
  .woocommerce-cart .woocommerce {
    padding: 0 20px;
  }
}

@media (max-width: 1024px) {
  .lca-cart-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .lca-cart-sidebar .cart_totals {
    position: static;
  }

  .woocommerce-cart .woocommerce-cart-form__contents {
    min-width: 580px;
  }
}

@media (max-width: 767px) {
  .lca-cart-section__container,
  .woocommerce-cart .woocommerce {
    padding: 0 16px;
  }

  .shop-hero--compact,
  body.woocommerce-cart .shop-hero {
    padding: 14px 0 8px;
  }

  .lca-cart-products__header {
    padding: 14px 16px;
  }

  .lca-cart-table-wrap {
    overflow: visible;
  }

  .lca-cart-main {
    overflow: visible;
  }

  .woocommerce-cart .woocommerce-cart-form__contents {
    min-width: 0;
  }

  .woocommerce-cart table.shop_table_responsive thead {
    display: none;
  }

  .woocommerce-cart .lca-cart-main table.shop_table_responsive,
  .woocommerce-cart .lca-cart-main table.shop_table_responsive tbody {
    display: block;
    width: 100%;
  }

  .woocommerce-cart table.shop_table_responsive tr.cart_item {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr) 32px;
    grid-template-areas:
      "thumb name remove"
      "qty qty qty"
      "subtotal subtotal subtotal";
    gap: 8px 12px;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    overflow: visible;
  }

  .lca-cart-item-price-mobile {
    display: block;
    margin-top: 8px;
  }

  .woocommerce-cart table.shop_table_responsive tr.cart_item td.product-price {
    display: none !important;
  }

  .woocommerce-cart table.shop_table_responsive td.product-price {
    display: none !important;
  }

  .woocommerce-cart table.shop_table_responsive tr.cart_item td {
    display: block;
    padding: 0;
    border: none;
    width: 100%;
    max-width: 100%;
    text-align: left;
    overflow: visible;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: anywhere;
  }

  .woocommerce-cart table.shop_table_responsive td.product-thumbnail {
    grid-area: thumb;
    width: auto;
  }

  .woocommerce-cart table.shop_table_responsive td.product-thumbnail img {
    width: 64px;
    height: 64px;
  }

  .woocommerce-cart table.shop_table_responsive td.product-name {
    grid-area: name;
    font-size: 0.875rem;
    line-height: 1.4;
    padding-right: 0;
    min-width: 0;
  }

  .woocommerce-cart table.shop_table_responsive td.product-name a.lca-cart-item__title {
    white-space: normal;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .woocommerce-cart table.shop_table_responsive td.product-quantity {
    grid-area: qty;
    padding-top: 10px;
    width: 100%;
  }

  .woocommerce-cart table.shop_table_responsive td.product-quantity .quantity,
  .woocommerce-cart table.shop_table_responsive td.product-quantity .lca-qty-controls {
    justify-content: flex-start;
    margin: 0;
  }

  .woocommerce-cart table.shop_table_responsive td.product-subtotal {
    grid-area: subtotal;
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
    max-width: 100%;
    text-align: left;
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-primary);
    padding-top: 12px;
    margin-top: 4px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    white-space: normal;
    overflow: visible;
  }

  .lca-cart-item-subtotal__label {
    display: inline;
    flex: 0 0 auto;
  }

  .woocommerce-cart table.shop_table_responsive td.product-subtotal::before {
    content: none;
  }

  .woocommerce-cart table.shop_table_responsive td.product-subtotal .woocommerce-Price-amount {
    flex: 1 1 auto;
    text-align: right;
    min-width: 0;
    white-space: normal;
  }

  .woocommerce-cart table.shop_table_responsive td.product-remove {
    grid-area: remove;
    align-self: start;
    justify-self: end;
    width: 32px;
  }

  .woocommerce-cart table.shop_table_responsive td.product-remove a {
    width: 32px;
    height: 32px;
  }

  .lca-cart-coupon-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 12px 16px;
  }

  .lca-cart-coupon-bar .coupon {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .lca-cart-coupon-bar .coupon .input-text,
  .lca-cart-coupon-bar .coupon button {
    width: 100%;
    flex: none;
  }

  .woocommerce-cart .cart_totals.lca-cart-totals {
    padding: 20px 16px;
  }
}

@media (max-width: 359px) {
  .woocommerce-cart table.shop_table_responsive tr.cart_item {
    grid-template-columns: 56px minmax(0, 1fr) 28px;
    padding: 14px 12px;
    gap: 6px 10px;
  }

  .woocommerce-cart table.shop_table_responsive td.product-thumbnail img {
    width: 56px;
    height: 56px;
  }
}

/* --------------------------------------------------------------------------
   WooCommerce Checkout Page
   -------------------------------------------------------------------------- */

.woocommerce-checkout .woocommerce {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0;
}

.lca-checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 400px);
  grid-template-areas:
    "main summary"
    "payment summary";
  gap: 0 32px;
  align-items: start;
}

.lca-checkout-main {
  grid-area: main;
  background: var(--color-bg);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
  padding: 22px 22px 8px;
}

.lca-checkout-payment-section {
  grid-area: payment;
  background: var(--color-bg);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
  padding: 22px;
  margin-top: 20px;
}

.lca-checkout-summary {
  grid-area: summary;
  grid-row: 1 / -1;
  position: sticky;
  top: 88px;
  align-self: start;
  padding-left: 32px;
  border-left: 1px solid rgba(0, 0, 0, 0.08);
}

.lca-checkout-summary__toggle {
  display: none;
}

.lca-checkout-summary__panel {
  background: #f5f1ea;
  border: 1px solid rgba(210, 195, 175, 0.75);
  border-radius: 16px;
  box-shadow: none;
  padding: 14px 16px;
}

.lca-checkout-section-title--delivery {
  margin-top: 28px;
}

.lca-checkout-section-title,
.lca-checkout-summary__title,
.woocommerce-checkout #order_review_heading {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  margin: 0 0 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(210, 195, 175, 0.75);
}

.lca-checkout-review-order,
#order_review {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.woocommerce-checkout .form-row {
  margin-bottom: 14px;
}

.woocommerce-checkout .form-row label {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 6px;
  display: block;
  line-height: 1.35;
}

.woocommerce-checkout .form-row label .optional {
  font-weight: 400;
  color: var(--color-text-muted);
}

.woocommerce-checkout .form-row label .required {
  color: var(--color-primary);
  text-decoration: none;
}

.woocommerce-checkout .form-row input,
.woocommerce-checkout .form-row select,
.woocommerce-checkout .form-row textarea,
.woocommerce-checkout .select2-container .select2-selection--single {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--color-text);
  background: var(--color-bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  min-height: 44px;
}

.woocommerce-checkout .select2-container .select2-selection--single {
  display: flex;
  align-items: center;
}

.woocommerce-checkout .form-row input:focus,
.woocommerce-checkout .form-row select:focus,
.woocommerce-checkout .form-row textarea:focus,
.woocommerce-checkout .select2-container--open .select2-selection--single {
  border-color: var(--color-primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(18, 110, 25, 0.1);
}

.woocommerce-checkout .form-row textarea {
  min-height: 96px;
  resize: vertical;
}

.lca-hidden-field {
  display: none;
}

.lca-checkout-review-table {
  width: 100%;
  border: none;
  margin: 0;
  background: transparent;
}

.lca-checkout-items .lca-checkout-product td {
  padding: 10px 0;
  border: none;
  border-bottom: 1px solid rgba(210, 195, 175, 0.45);
  vertical-align: top;
}

.lca-checkout-items .lca-checkout-product:first-child td {
  padding-top: 0;
}

.lca-checkout-items .lca-checkout-product:last-child td {
  padding-bottom: 0;
  border-bottom: none;
}

.lca-checkout-product__row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
}

.lca-checkout-product__thumb {
  flex-shrink: 0;
  align-self: flex-start;
  width: 56px;
  height: 56px;
  margin: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(210, 195, 175, 0.65);
}

.lca-checkout-product__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: cover;
}

.lca-checkout-product__details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  flex: 1;
  min-width: 0;
  margin: 0;
  padding: 0;
}

.lca-checkout-product__name {
  margin: 0;
  font-weight: 600;
  font-size: 0.8125rem;
  line-height: 1.4;
  color: var(--color-text);
}

.lca-checkout-product__qty {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.3;
  color: var(--color-text-muted);
}

.lca-checkout-product__price {
  margin: 0;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.3;
  color: var(--color-text);
  text-align: left;
}

.lca-checkout-product__details .variation,
.lca-checkout-product__details dl {
  margin: 0;
  font-size: 0.6875rem;
  line-height: 1.3;
  color: var(--color-text-muted);
}

.lca-checkout-totals {
  border-top: 1px solid rgba(210, 195, 175, 0.75);
}

.lca-checkout-items-count td {
  padding: 10px 0 6px;
  border: none;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-text-muted);
  text-align: left;
}

.lca-checkout-totals th,
.lca-checkout-totals td {
  padding: 5px 0;
  border: none;
  font-size: 0.8125rem;
  vertical-align: middle;
}

.lca-checkout-totals tr:first-child th,
.lca-checkout-totals tr:first-child td {
  padding-top: 0;
}

.lca-checkout-totals tr.lca-checkout-items-count + tr th,
.lca-checkout-totals tr.lca-checkout-items-count + tr td {
  padding-top: 0;
}

.lca-checkout-totals th {
  font-weight: 500;
  color: var(--color-text-muted);
  text-align: left;
  width: 55%;
}

.lca-checkout-totals td {
  text-align: right;
  font-weight: 600;
  color: var(--color-text);
}

.lca-checkout-totals .cart-discount--savings th,
.lca-checkout-totals .cart-discount--savings td,
.lca-checkout-totals__savings {
  color: var(--color-primary);
  font-weight: 700;
}

.lca-checkout-shipping-hint td {
  padding: 2px 0 6px !important;
  border: none !important;
  font-size: 0.75rem;
  line-height: 1.35;
  color: var(--color-text-muted);
  text-align: left;
}

.lca-checkout-totals .order-total th,
.lca-checkout-totals .order-total td {
  padding-top: 10px;
  padding-bottom: 0;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-primary);
  border-top: 2px solid rgba(18, 110, 25, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.lca-checkout-totals .order-total td {
  font-size: 1.25rem;
  font-weight: 800;
}

.lca-checkout-legal-notice {
  margin: 0 0 12px;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--color-text-muted);
}

.lca-checkout-legal-notice a {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.lca-checkout-legal-notice a:hover {
  text-decoration: none;
}

.lca-checkout-policy-link {
  margin: 0 0 12px;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--color-text-muted);
}

.lca-checkout-policy-link a {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.lca-checkout-policy-link a:hover {
  text-decoration: none;
}

.lca-account-policies {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #eee;
}

.lca-account-policies h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  margin-bottom: 12px;
  color: var(--color-text);
}

.lca-account-policies__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.lca-account-policies__list a {
  color: var(--color-primary);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.lca-account-policies__list a:hover {
  text-decoration: none;
}

.lca-shipping-status--free {
  color: var(--color-primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.lca-payment-placeholder {
  margin: 0 0 14px;
  padding: 12px 14px;
  background: #fff;
  border: 1px dashed rgba(0, 0, 0, 0.12);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
  font-family: var(--font-body);
  border-color: transparent;
  font-size: inherit;
}

.lca-checkout-review-table th,
.lca-checkout-review-table td {
  padding: 0;
}

.woocommerce-checkout-review-order-table .order-total td {
  color: inherit;
  font-weight: inherit;
  font-size: inherit;
}

#place_order {
  width: 100%;
  padding: 15px 16px;
  background: var(--gradient-gold);
  color: var(--color-text);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9375rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: filter var(--transition);
  margin-top: 8px;
}

#place_order:hover {
  filter: brightness(0.92);
}

.woocommerce-checkout #payment {
  background: transparent;
  border-radius: 0;
  padding: 0;
  margin-top: 0;
}

.woocommerce-checkout #payment ul.payment_methods {
  margin: 0 0 14px;
  padding: 0;
  border: none;
  background: #fff;
  border-radius: var(--radius-sm);
}

.woocommerce-checkout #payment ul.payment_methods li {
  font-family: var(--font-body);
  font-size: 0.875rem;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  list-style: none;
}

.woocommerce-checkout #payment ul.payment_methods li input[type="radio"] {
  accent-color: var(--color-primary);
  margin-right: 8px;
}

.woocommerce-checkout #payment ul.payment_methods li input[type="radio"]:checked {
  accent-color: var(--color-primary);
}

.woocommerce-checkout #payment .payment_box {
  background: var(--color-cream);
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  margin-top: 8px;
}

.woocommerce-cart .woocommerce-error,
.woocommerce-cart .woocommerce-message,
.woocommerce-cart .woocommerce-info,
.woocommerce-checkout .woocommerce-error,
.woocommerce-checkout .woocommerce-message,
.woocommerce-checkout .woocommerce-info {
  border-top: 4px solid var(--color-primary);
  background: var(--color-cream);
  font-family: var(--font-body);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  padding: 16px 20px;
}

/* --------------------------------------------------------------------------
   Info Pages (About, Contact, Terms, Privacy)
   -------------------------------------------------------------------------- */
.info-section {
  padding: clamp(40px, 6vw, 72px) 0;
  background-color: var(--color-bg);
}

.info-section--cream {
  background-color: var(--color-cream);
}

.info-content {
  max-width: 820px;
  margin: 0 auto;
}

.info-content--wide {
  max-width: 900px;
}

.info-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 500;
  color: var(--color-text);
  margin: 0 0 16px;
}

.info-content h2:not(:first-child) {
  margin-top: 36px;
}

.info-content p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--color-text-muted);
  margin: 0 0 16px;
}

.info-content ul,
.info-content ol {
  margin: 0 0 20px;
  padding-left: 1.4em;
  color: var(--color-text-muted);
  line-height: 1.85;
}

.info-content li {
  margin-bottom: 8px;
}

.info-content a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.info-content a:hover {
  color: var(--color-primary-dark);
}

.about-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.about-intro p {
  font-size: 1.0625rem;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.about-value-card {
  background: var(--color-bg);
  padding: 28px 24px;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border-top: 3px solid var(--color-primary);
  text-align: center;
}

.about-value-card__icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 14px;
  display: block;
}

.about-value-card h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--color-text);
  margin: 0 0 10px;
}

.about-value-card p {
  font-size: 0.9375rem;
  margin: 0;
  line-height: 1.7;
}

.about-mission {
  text-align: center;
  padding: 48px 32px;
  background: var(--color-bg);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 24px rgba(18, 110, 25, 0.08);
  border-left: 4px solid var(--color-primary);
}

.about-mission p {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  font-style: italic;
  color: var(--color-text);
  margin: 0;
  line-height: 1.7;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-detail-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px;
  background: var(--color-cream);
  border-radius: var(--radius-md);
}

.contact-detail-card__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  border-radius: 50%;
  color: var(--color-white);
}

.contact-detail-card__icon svg {
  width: 20px;
  height: 20px;
}

.contact-detail-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text);
  margin: 0 0 6px;
}

.contact-detail-card p,
.contact-detail-card a {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.6;
}

.contact-detail-card a {
  color: var(--color-primary);
  text-decoration: none;
}

.contact-detail-card a:hover {
  text-decoration: underline;
}

.contact-form-wrap {
  background: var(--color-bg);
  padding: 32px;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
}

.contact-form-wrap h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-text);
  margin: 0 0 8px;
}

.contact-form-wrap > p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  margin: 0 0 24px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form__group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 6px;
}

.contact-form__group input,
.contact-form__group select,
.contact-form__group textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--color-text);
  background: var(--color-cream);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition);
}

.contact-form__group input:focus,
.contact-form__group select:focus,
.contact-form__group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}

.contact-form__group textarea {
  min-height: 130px;
  resize: vertical;
}

.contact-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--gradient-gold);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: opacity var(--transition), transform var(--transition);
}

.contact-form__submit:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.contact-form__note {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin: 0;
}

.legal-updated {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin: 0 0 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.legal-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 500;
  color: var(--color-text);
  margin: 32px 0 12px;
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  font-size: 0.9375rem;
  line-height: 1.85;
  color: var(--color-text-muted);
}

.info-cta {
  text-align: center;
  padding: 40px 24px;
}

.info-cta .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--gradient-gold);
  color: var(--color-text);
  font-weight: 700;
  font-size: 0.9375rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: opacity var(--transition);
}

.info-cta .btn-primary:hover {
  opacity: 0.9;
}

@media (max-width: 900px) {
  .about-values {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .about-mission {
    padding: 32px 20px;
  }
}

@media (max-width: 768px) {
  .product-gallery__arrow {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   Cart Drawer
   -------------------------------------------------------------------------- */

.lca-cart-drawer__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: calc(var(--z-modal) - 1);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lca-cart-drawer__overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

.lca-cart-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: min(420px, 92vw);
  height: 100vh;
  height: 100dvh;
  max-height: 100dvh;
  background: var(--color-bg);
  z-index: var(--z-modal);
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.35s ease;
  box-shadow: 4px 0 24px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

.lca-cart-drawer.is-open {
  transform: translateX(0);
}

.lca-cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  padding: calc(16px + env(safe-area-inset-top, 0px)) 20px 16px;
  border-bottom: 1px solid #f0f0f0;
  background: var(--color-bg);
  z-index: 2;
}

.lca-cart-drawer__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0;
}

.lca-cart-drawer__close {
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lca-cart-drawer__close svg {
  width: 20px;
  height: 20px;
}

.lca-cart-drawer__body {
  flex: 1 1 auto;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding: 16px 20px;
}

.lca-cart-drawer__shipping {
  margin: 0 0 12px;
  padding: 10px 12px;
  background: var(--color-cream);
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--color-text);
  word-wrap: break-word;
}

.lca-cart-drawer__shipping--success {
  color: var(--color-primary);
  font-weight: 600;
}

.lca-cart-drawer__empty {
  text-align: center;
  color: #666;
  padding: 40px 0;
}

.lca-cart-drawer__items {
  list-style: none;
  margin: 0;
  padding: 0;
}

.lca-cart-drawer__item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #f0f0f0;
  min-width: 0;
}

.lca-cart-drawer__item-details {
  flex: 1;
  min-width: 0;
}

.lca-cart-drawer__item-image img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.lca-cart-drawer__item-name {
  margin: 0 0 4px;
  font-weight: 600;
  font-size: 0.9375rem;
  overflow-wrap: anywhere;
  word-wrap: break-word;
}

.lca-cart-drawer__item-name a {
  color: var(--color-text);
  text-decoration: none;
}

.lca-cart-drawer__item-details .lca-cart-item-price {
  margin: 0 0 10px;
}

.lca-cart-drawer__item-details .lca-cart-item-price__sale {
  font-size: 0.875rem;
}

.lca-cart-drawer__item-details .lca-cart-item-price__mrp {
  font-size: 0.75rem;
}

.lca-cart-drawer__item-details .lca-cart-item-price__discount {
  font-size: 0.6875rem;
}

.lca-cart-drawer__item-price {
  margin: 0 0 8px;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 0.875rem;
}

.lca-cart-drawer__item-qty {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.lca-cart-drawer__qty-btn {
  width: 28px;
  height: 28px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
}

.lca-cart-drawer__qty-input {
  width: 44px;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 4px;
  font-size: 0.875rem;
}

.lca-cart-drawer__remove {
  display: block;
  border: none;
  background: none;
  color: #999;
  font-size: 0.8125rem;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
}

.lca-cart-drawer__footer {
  flex-shrink: 0;
  position: sticky;
  bottom: 0;
  z-index: 3;
  padding: 16px 20px calc(24px + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid #f0f0f0;
  background: var(--color-bg);
  box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.06);
}

.lca-cart-drawer__subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-weight: 700;
  font-size: 1rem;
  flex-wrap: wrap;
}

.lca-cart-drawer__subtotal span:last-child {
  text-align: right;
  min-width: 0;
  word-break: break-word;
}

.lca-cart-drawer__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.lca-cart-drawer__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  text-align: center;
}

.lca-cart-drawer__btn--secondary {
  background: var(--color-cream);
  color: var(--color-text);
}

.lca-cart-drawer__btn--primary {
  background: var(--color-primary);
  color: #fff;
}

body.lca-cart-open {
  overflow: hidden;
}

.lca-free-shipping-notice td {
  border: none !important;
  padding: 0 0 12px !important;
}

.lca-free-shipping-notice__text {
  margin: 0;
  padding: 12px 14px;
  background: var(--color-cream);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
}

.lca-free-shipping-notice__text--success {
  color: var(--color-primary);
  font-weight: 600;
}

.woocommerce button[name="update_cart"] {
  display: none !important;
}

.woocommerce-cart .shipping-calculator-form,
.woocommerce-cart .woocommerce-shipping-destination,
.woocommerce-cart .shipping-calculator-button {
  display: none !important;
}

.woocommerce-cart .cart_totals .shipping td ul#shipping_method,
.woocommerce-checkout #order_review .shipping td ul#shipping_method,
.woocommerce-checkout ul#shipping_method {
  display: none !important;
}

.woocommerce-checkout .woocommerce-form-login-toggle,
.woocommerce-checkout .woocommerce-form-coupon-toggle,
.woocommerce-checkout .woocommerce-NoticeGroup-checkout,
.woocommerce-checkout .woocommerce-shipping-fields,
.woocommerce-checkout #ship-to-different-address,
.woocommerce-checkout .woocommerce-additional-fields {
  display: none;
}

.woocommerce-checkout .form-row.lca-field-error input,
.woocommerce-checkout .form-row.lca-field-error select,
.woocommerce-checkout .form-row.lca-field-error textarea,
.woocommerce-checkout .form-row.lca-field-error .select2-selection {
  border-color: #c0392b;
  box-shadow: 0 0 0 2px rgba(192, 57, 43, 0.12);
}

.lca-inline-error {
  color: #c0392b;
  font-size: 0.75rem;
  line-height: 1.4;
  margin: 6px 0 0;
}

.woocommerce-checkout #payment .form-row.woocommerce-terms-and-conditions-wrapper {
  display: none !important;
}

@media (max-width: 1024px) {
  .lca-checkout-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "main"
      "summary"
      "payment";
    gap: 20px;
  }

  .lca-checkout-summary {
    grid-row: auto;
    position: static;
    padding-left: 0;
    border-left: none;
  }

  .lca-checkout-payment-section {
    margin-top: 0;
  }
}

@media (max-width: 767px) {
  .lca-checkout-main,
  .lca-checkout-payment-section,
  .lca-checkout-summary__panel {
    padding: 16px;
  }

  .lca-checkout-summary__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 16px;
    margin: 0;
    background: #f5f1ea;
    border: 1px solid rgba(210, 195, 175, 0.75);
    border-radius: 16px;
    box-shadow: none;
    cursor: pointer;
    font-family: var(--font-body);
    text-align: left;
  }

  .lca-checkout-summary__toggle-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--color-text);
  }

  .lca-checkout-summary__toggle-icon {
    font-size: 0.625rem;
    color: var(--color-text-muted);
    transition: transform 0.25s ease;
  }

  .lca-checkout-summary:not(.is-collapsed) .lca-checkout-summary__toggle-icon {
    transform: rotate(180deg);
  }

  .lca-checkout-summary__toggle-total {
    font-weight: 700;
    font-size: 0.9375rem;
    color: var(--color-primary);
  }

  .lca-checkout-summary__title--desktop {
    display: none;
  }

  .lca-checkout-summary.is-collapsed .lca-checkout-summary__panel {
    display: none;
  }

  .lca-checkout-summary:not(.is-collapsed) .lca-checkout-summary__panel {
    display: block;
    margin-top: 8px;
    animation: lcaSummaryReveal 0.25s ease;
  }

  @keyframes lcaSummaryReveal {
    from {
      opacity: 0;
      transform: translateY(-6px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .woocommerce-checkout .form-row.form-row-first,
  .woocommerce-checkout .form-row.form-row-last {
    width: 100%;
    float: none;
  }

  .lca-checkout-product__row {
    gap: 8px;
  }

  .lca-checkout-product__price {
    font-size: 0.8125rem;
  }
}

/* Hide duplicate free-shipping banners inside checkout summary */
.woocommerce-checkout .lca-checkout-review-table .lca-free-shipping-notice {
  display: none;
}

/* ============================================
   LC NONI BANNER SECTION
   ============================================ */

.lc-noni-banner {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 480px;
  padding: 60px 5%;
  background-image: url('../images/hero-banner/bg-desktop.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.lc-noni-banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255, 255, 255, 0.18) 50%,
    transparent 70%
  );
  transform: translateX(-166.67%);
  animation: lc-sweep 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 10;
  will-change: transform;
}

@keyframes lc-sweep {
  0% {
    transform: translateX(-166.67%);
  }

  40% {
    transform: translateX(216.67%);
  }

  100% {
    transform: translateX(216.67%);
  }
}

.lc-noni-left {
  position: relative;
  z-index: 5;
  width: 42%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.lc-ribbon {
  width: 400px;
  max-width: 100%;
  display: block;
  margin-left: -10px;
  margin-bottom: 12px;
}

.lc-noni-heading {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
  margin: 0;
}

.lc-noni-subtext {
  font-size: 15px;
  color: #444;
  margin: 0;
}

.lc-noni-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.lc-btn {
  font-size: 15px;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: 4px;
  cursor: pointer;
  letter-spacing: 0.4px;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.lc-btn-gold {
  background: linear-gradient(135deg, #c9a84c, #f0d080, #c9a84c);
  color: #1a1a1a;
  border: none;
}

.lc-btn-gold:hover {
  background: linear-gradient(135deg, #b8943f, #e0c060, #b8943f);
  transform: translateY(-2px);
  color: #1a1a1a;
  text-decoration: none;
}

.lc-btn-outline {
  background: linear-gradient(135deg, #c9a84c, #f0d080, #c9a84c);
  color: #1a1a1a;
  border: none;
  box-shadow: none;
}

.lc-btn-outline:hover {
  background: linear-gradient(135deg, #b8943f, #e0c060, #b8943f);
  transform: translateY(-2px);
  box-shadow: none;
  color: #1a1a1a;
  text-decoration: none;
}

.lc-noni-right {
  position: absolute;
  right: 4%;
  bottom: 0;
  width: 55%;
  height: 100%;
  z-index: 5;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.lc-product-stack {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 0%;
  justify-content: flex-end;
}

.lc-podium {
  width: 100%;
  max-width: 560px;
  display: block;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  box-shadow: none;
  filter: none;
  margin-top: auto;
}

.lc-box {
  width: 100%;
  max-width: 560px;
  display: block;
  margin: 0 auto;
  position: absolute;
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  box-shadow: none;
  filter: none;
}

.lc-tube {
  width: 110%;
  max-width: 620px;
  display: block;
  margin: 0 auto;
  position: absolute;
  bottom: 38%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  box-shadow: none;
  filter: none;
  animation: lc-float 3s ease-in-out infinite alternate;
}

@keyframes lc-float {
  0% {
    transform: translateX(-50%) translateY(0);
  }

  100% {
    transform: translateX(-50%) translateY(-12px);
  }
}

.lc-leaf {
  position: absolute;
  top: -80px;
  z-index: 1;
  pointer-events: none;
}

.lc-leaf img {
  display: block;
}

.lc-leaf-1 {
  left: 3%;
}

.lc-leaf-1 img {
  width: 50px;
  animation: lc-fall 14s 0s infinite linear;
}

.lc-leaf-2 {
  left: 12%;
}

.lc-leaf-2 img {
  width: 65px;
  animation: lc-fall 17s 1.5s infinite linear;
}

.lc-leaf-3 {
  left: 24%;
}

.lc-leaf-3 img {
  width: 42px;
  animation: lc-fall 13s 3s infinite linear;
}

.lc-leaf-4 {
  left: 38%;
}

.lc-leaf-4 img {
  width: 70px;
  animation: lc-fall 16s 0.8s infinite linear;
}

.lc-leaf-5 {
  left: 55%;
}

.lc-leaf-5 img {
  width: 48px;
  animation: lc-fall 15s 2.2s infinite linear;
}

.lc-leaf-6 {
  left: 68%;
}

.lc-leaf-6 img {
  width: 60px;
  animation: lc-fall 18s 4s infinite linear;
}

.lc-leaf-7 {
  left: 80%;
}

.lc-leaf-7 img {
  width: 44px;
  animation: lc-fall 12s 1s infinite linear;
}

.lc-leaf-8 {
  left: 92%;
}

.lc-leaf-8 img {
  width: 55px;
  animation: lc-fall 16s 3.5s infinite linear;
}

@keyframes lc-fall {
  0% {
    transform: translateY(0) rotate(-10deg);
    opacity: 0;
  }

  5% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    transform: translateY(580px) rotate(20deg);
    opacity: 0;
  }
}

@media (max-width: 1023px) {
  .lc-noni-banner {
    background-image: url('../images/hero-banner/bg-tablet.webp');
    min-height: 380px;
    padding: 40px 4%;
  }

  .lc-noni-left {
    width: 46%;
  }

  .lc-noni-right {
    right: 2%;
    width: 54%;
  }

  .lc-noni-heading {
    font-size: 22px;
  }

  .lc-ribbon {
    width: 240px;
  }

  .lc-podium {
    max-width: 400px;
  }

  .lc-box {
    width: 103%;
    max-width: 412px;
    bottom: 16%;
  }

  .lc-tube {
    width: 112%;
    max-width: 448px;
    bottom: 37%;
  }
}

@media (max-width: 767px) {
  .lc-noni-banner {
    background-image: url('../images/hero-banner/bg-mobile.webp');
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: unset;
    padding: 26px 4% 16px;
    gap: 0;
  }

  .lc-noni-left {
    display: contents;
  }

  .lc-ribbon {
    order: 1;
    width: min(340px, 94vw);
    margin: 0 auto 10px;
  }

  .lc-noni-heading {
    order: 2;
    width: 100%;
    font-size: clamp(15px, 4.2vw, 17px);
    line-height: 1.25;
    max-width: 320px;
    text-align: center;
    margin: 6px auto 0;
  }

  .lc-noni-subtext {
    order: 3;
    width: 100%;
    font-size: clamp(11px, 3.2vw, 12px);
    text-align: center;
    margin: 6px auto 0;
  }

  .lc-noni-buttons {
    order: 4;
    position: relative;
    z-index: 6;
    flex-wrap: nowrap;
    justify-content: center;
    gap: clamp(8px, 2.5vw, 10px);
    width: 100%;
    max-width: min(360px, 94vw);
    margin: 18px auto -50px;
    padding: 0 4px;
  }

  .lc-btn {
    width: auto;
    flex: 1 1 0;
    min-width: 0;
    font-size: clamp(10px, 2.7vw, 13px);
    padding: clamp(9px, 2.5vw, 10px) clamp(6px, 2vw, 8px);
    text-align: center;
    line-height: 1.2;
  }

  .lc-noni-right {
    order: 5;
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    height: auto;
    margin-top: 0;
    padding-top: 34px;
    display: flex;
    justify-content: center;
    z-index: 5;
  }

  .lc-product-stack {
    padding-bottom: 0;
    width: 100%;
    max-width: min(360px, 94vw);
  }

  .lc-podium {
    width: 100%;
    max-width: min(380px, 96vw);
  }

  .lc-box {
    width: 100%;
    max-width: 320px;
    bottom: 14%;
  }

  .lc-tube {
    width: 110%;
    max-width: 352px;
    bottom: 35%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lc-noni-banner::after,
  .lc-tube,
  .lc-leaf img {
    animation: none;
  }
}
