/* ==========================================================================
   Holly Bubbles — Main Stylesheet
   Author: The Free Website Guys — thefreewebsiteguys.com
   ========================================================================== */

/* --------------------------------------------------------------------------
   BASE VARIABLES (overridden by PHP inline style via Customizer)
   -------------------------------------------------------------------------- */
:root {
  --color-primary:    #4d8c6a;
  --color-primary-fg: #ffffff;
  --color-secondary:  #eff0ec;
  --color-bg:         #fafaf8;
  --color-fg:         #1a2118;
  --color-muted:      #dcddd8;
  --color-muted-fg:   #6b7068;
  --color-accent:     #c49a6c;
  --color-border:     #d8dad4;
  --logo-height:      60px;

  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'Nunito Sans', sans-serif;

  --radius:       0.5rem;
  --radius-lg:    1rem;
  --radius-full:  9999px;

  --shadow-soft:     0 4px 20px -4px rgba(26,33,24,.06);
  --shadow-elevated: 0 8px 40px -8px rgba(26,33,24,.12);

  --header-height: 80px;
  --transition:    cubic-bezier(0.25, 0.4, 0.25, 1);

  /* Button system */
  --btn-height:          48px;
  --btn-padding:         0 2rem;
  --btn-radius:          var(--radius-full);
  --btn-font-size:       0.9375rem;
  --btn-font-weight:     500;
  --btn-letter-spacing:  0.01em;
  --btn-text-transform:  none;
  --btn-icon-padding:    0.625rem;

  /* Checkout */
  --checkout-gap:  2rem;
  --card-radius:   var(--radius-lg);
  --section-padding: 2rem;
}

/* --------------------------------------------------------------------------
   RESET / BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-fg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; color: inherit; }
ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); }

.font-display { font-family: var(--font-display); }
.font-body    { font-family: var(--font-body); }
.text-primary { color: var(--color-primary); }
.text-center  { text-align: center; }

/* --------------------------------------------------------------------------
   LAYOUT HELPERS
   -------------------------------------------------------------------------- */
.container-wide {
  width: 100%;
  max-width: 80rem; /* 1280px */
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (min-width: 1024px) {
  .container-wide { padding-inline: 2rem; }
}

.gradient-natural {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
}

/* --------------------------------------------------------------------------
   BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: var(--btn-font-size);
  font-weight: var(--btn-font-weight);
  letter-spacing: var(--btn-letter-spacing);
  text-transform: var(--btn-text-transform);
  padding: var(--btn-padding);
  min-height: var(--btn-height);
  border-radius: var(--radius);
  transition: opacity 0.2s var(--transition), transform 0.15s var(--transition), box-shadow 0.2s var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
}
.btn:hover { opacity: 0.88; }
.btn:active { transform: scale(0.97); }
.btn-round { border-radius: var(--btn-radius); }
.btn-lg { min-height: 52px; padding: 0 2.5rem; font-size: 1rem; }
.btn-sm { min-height: 36px; padding: 0 1rem; font-size: 0.8125rem; }

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-primary-fg);
  border-color: var(--color-primary);
}
.btn-primary:hover { background-color: var(--color-primary); color: var(--color-primary-fg); }

.btn-secondary {
  background-color: rgba(255,255,255,0.15);
  color: #fff;
  border-color: rgba(255,255,255,0.25);
}
.btn-secondary:hover { background-color: rgba(255,255,255,0.25); }

.btn-ghost {
  background-color: rgba(255,255,255,0.1);
  color: #fff;
  border-color: rgba(255,255,255,0.2);
}
.btn-ghost:hover { background-color: rgba(255,255,255,0.2); }

.btn-outline {
  background-color: transparent;
  color: var(--color-fg);
  border-color: var(--color-border);
}
.btn-outline:hover { background-color: var(--color-secondary); }

.btn:disabled, .btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   TYPOGRAPHY HELPERS
   -------------------------------------------------------------------------- */
.section-kicker {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-muted-fg);
  margin-bottom: 0.5rem;
}
.section-headline {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.section-center { text-align: center; }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-muted-fg);
  transition: color 0.2s;
}
.back-link:hover { color: var(--color-fg); }

/* --------------------------------------------------------------------------
   FORMS
   -------------------------------------------------------------------------- */
.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-family: var(--font-body);
}
.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  background-color: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-fg);
  transition: box-shadow 0.3s var(--transition), border-color 0.2s;
  outline: none;
}
.form-input::placeholder { color: var(--color-muted-fg); }
.form-input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(77,140,106,.15);
}
.form-textarea { resize: none; }
.form-group { display: flex; flex-direction: column; }

/* --------------------------------------------------------------------------
   HEADER
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background-color 0.3s var(--transition),
              border-color 0.3s var(--transition),
              backdrop-filter 0.3s;
  border-bottom: 1px solid transparent;
}
.site-header.is-solid {
  background-color: rgba(250,250,248,.95);
  backdrop-filter: blur(8px);
  border-bottom-color: var(--color-border);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
@media (min-width: 1024px) { .site-nav { height: var(--header-height); } }

.site-logo-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
.site-logo-img {
  height: var(--logo-height) !important;
  width: auto !important;
  display: block;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(77,140,106,.3);
  overflow: hidden;
  transition: all 0.3s var(--transition);

  /* collapsed in hero, shown on scroll */
  width: 0 !important;
  height: 0 !important;
  opacity: 0;
}
.is-solid .site-logo-img {
  width: auto !important;
  height: var(--logo-height) !important;
  opacity: 1;
}
.footer-logo { width: 72px !important; height: 72px !important; opacity: 1; }
.site-logo-wordmark {
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  transition: color 0.3s;
  color: var(--color-fg);
}
.site-header:not(.is-solid) .site-logo-wordmark { color: #fff; }

/* Desktop nav */
.theme-nav-list {
  display: none;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 768px) { .theme-nav-list { display: flex; } }

.theme-nav-list li a,
.theme-nav-list a {
  font-size: 0.875rem;
  font-family: var(--font-body);
  letter-spacing: 0.02em;
  position: relative;
  display: inline-block;
  transition: color 0.2s;
  color: var(--color-fg);
}
.site-header:not(.is-solid) .theme-nav-list li a { color: rgba(255,255,255,.9); }
.theme-nav-list li a::after,
.theme-nav-list a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 100%; height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--transition);
}
.theme-nav-list li a:hover::after,
.theme-nav-list a:hover::after { transform: scaleX(1); }

/* Actions */
.site-nav-actions {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-icon-btn {
  position: relative;
  padding: 0.5rem;
  border-radius: 50%;
  transition: opacity 0.2s;
  color: var(--color-fg);
  cursor: pointer;
  background: none;
  border: none;
}
.site-header:not(.is-solid) .nav-icon-btn { color: #fff; }
.nav-icon-btn:hover { opacity: 0.6; }

.theme-cart-count {
  position: absolute;
  top: -2px; right: -2px;
  width: 18px; height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 600;
  background-color: var(--color-primary);
  color: var(--color-primary-fg);
  border-radius: 50%;
}
.theme-cart-count:empty { display: none; }

/* Mobile menu toggle */
.mobile-menu-btn { display: flex; }
@media (min-width: 768px) { .mobile-menu-btn { display: none; } }
.mobile-menu-btn .icon-close { display: none; }
.mobile-menu-btn.is-open .icon-menu { display: none; }
.mobile-menu-btn.is-open .icon-close { display: block; }

/* Mobile menu panel */
.mobile-menu {
  border-top: 1px solid var(--color-border);
  padding: 1rem 0;
}
.theme-mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.theme-mobile-nav-list li a,
.theme-mobile-nav-list a,
.theme-mobile-nav-link {
  display: block;
  padding: 0.625rem 0;
  font-size: 0.875rem;
  font-family: var(--font-body);
  letter-spacing: 0.02em;
  transition: color 0.2s;
  color: var(--color-fg);
}
.theme-mobile-nav-list li a:hover,
.theme-mobile-nav-link:hover { color: var(--color-muted-fg); }

/* --------------------------------------------------------------------------
   HERO
   -------------------------------------------------------------------------- */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background-color: var(--color-fg);
}
.hero-video-wrapper {
  position: absolute;
  inset: 0;
  will-change: transform;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: var(--color-fg);
  opacity: 0.55;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding-top: 5rem;
  padding-bottom: 5rem;
  will-change: transform, opacity;
}
.hero-logo-wrap {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
}
.hero-logo-img {
  width: 96px; height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(77,140,106,.3);
  box-shadow: var(--shadow-elevated);
}
@media (min-width: 768px) { .hero-logo-img { width: 112px; height: 112px; } }

.hero-kicker-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.hero-kicker-line {
  display: block;
  height: 1px;
  width: 2rem;
  background-color: rgba(255,255,255,.4);
}
.hero-kicker {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  font-weight: 500;
}
.hero-headline-overflow { overflow: hidden; }
.hero-headline {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 0.25rem;
}
@media (min-width: 1024px) { .hero-headline { font-size: clamp(3rem, 7vw, 5.5rem); } }

.hero-body {
  color: rgba(255,255,255,.7);
  max-width: 36rem;
  margin-inline: auto;
  margin-bottom: 2.5rem;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
}
.hero-ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding-inline: 1rem;
}
@media (min-width: 480px) { .hero-ctas { flex-direction: row; justify-content: center; } }
.hero-cta-btn { min-width: 180px; }

.hero-scroll-cue {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
.hero-scroll-btn {
  padding: 0.5rem;
  color: rgba(255,255,255,.5);
  transition: color 0.2s;
  animation: scrollBounce 2s ease-in-out infinite;
}
.hero-scroll-btn:hover { color: #fff; }
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}

/* --------------------------------------------------------------------------
   ABOUT
   -------------------------------------------------------------------------- */
.about-section { scroll-margin-top: 5rem; }
.section-secondary { background-color: var(--color-secondary); }
.about-inner { padding-top: 4rem; padding-bottom: 4rem; max-width: 48rem; }
@media (min-width: 768px) { .about-inner { padding-top: 6rem; padding-bottom: 6rem; } }
.about-inner .section-center { max-width: 100%; }

.about-body { color: var(--color-muted-fg); font-family: var(--font-body); }
.about-para {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.about-para:last-of-type { margin-bottom: 0; }
.about-para-2 { font-size: 0.9375rem; }

.about-signoff {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.icon-leaf { color: var(--color-primary); flex-shrink: 0; }
.about-signoff-text {
  font-weight: 500;
  color: var(--color-fg);
  font-size: 1.0625rem;
}

/* --------------------------------------------------------------------------
   SHOP
   -------------------------------------------------------------------------- */
.shop-section { scroll-margin-top: 5rem; padding-top: 4rem; padding-bottom: 5rem; }
@media (min-width: 768px) { .shop-section { padding-top: 5rem; padding-bottom: 5rem; } }
.shop-header { margin-bottom: 3rem; }

/* Category filters */
.shop-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.filter-btn {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  font-family: var(--font-body);
  border-radius: var(--radius-full);
  background-color: var(--color-secondary);
  color: var(--color-fg);
  transition: background-color 0.2s, transform 0.15s;
  cursor: pointer;
  border: none;
}
.filter-btn:hover { background-color: var(--color-muted); }
.filter-btn--active {
  background-color: var(--color-primary);
  color: var(--color-primary-fg);
}
.filter-btn--active:hover { background-color: var(--color-primary); }

/* Price filter */
.price-filter-wrap { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }
.price-filter-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-family: var(--font-body);
  border-radius: var(--radius-full);
  background-color: var(--color-secondary);
  color: var(--color-fg);
  cursor: pointer;
  transition: background-color 0.2s;
}
.price-filter-toggle:hover { background-color: var(--color-muted); }
.chevron-icon { transition: transform 0.3s var(--transition); }
.price-filter-toggle[aria-expanded="true"] .chevron-icon { transform: rotate(180deg); }

.price-filter-panel { width: 100%; max-width: 24rem; }
.price-range-wrapper {
  position: relative;
  height: 1.75rem;
  margin-bottom: 0.5rem;
}
.range-track-bg {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 4px;
  margin-top: -2px;
  background: var(--color-muted);
  border-radius: 2px;
  pointer-events: none;
  z-index: 0;
}
.range-track-fill {
  position: absolute;
  height: 4px;
  background: var(--color-primary);
  top: 50%;
  margin-top: -2px;
  pointer-events: none;
  border-radius: 2px;
  z-index: 1;
}
.price-range-input {
  position: absolute;
  left: 0;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  height: 1.75rem;
  margin: 0;
  padding: 0;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  outline: none;
  pointer-events: none;
  z-index: 2;
}
.price-range-input--max { z-index: 3; }
.price-range-input::-webkit-slider-runnable-track {
  height: 4px;
  background: transparent;
  border-radius: 2px;
}
.price-range-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-primary);
  cursor: pointer;
  pointer-events: auto;
  margin-top: -7px;
  box-shadow: 0 0 0 2px rgba(77,140,106,.25);
}
.price-range-input::-moz-range-track {
  height: 4px;
  background: transparent;
  border-radius: 2px;
}
.price-range-input::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-primary);
  cursor: pointer;
  pointer-events: auto;
  border: none;
  box-shadow: 0 0 0 2px rgba(77,140,106,.25);
}
.price-range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--color-muted-fg);
  font-family: var(--font-body);
}

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}
@media (min-width: 768px)  { .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; } }
@media (min-width: 1024px) { .product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.5rem; } }

/* Product card wrapper */
.theme-product-card-wrap {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Product card */
.theme-product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}
.theme-card-link {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: auto;
  display: block;
  border-radius: var(--radius);
}
.theme-product-card * { pointer-events: none; }
.theme-product-card .theme-card-link {
  pointer-events: auto;
}
.theme-product-card .add_to_cart_button {
  pointer-events: auto;
  position: relative;
  z-index: 3;
}

.theme-product-card__image-wrapper {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius);
  background-color: var(--color-secondary);
  margin-bottom: 0.75rem;
}
.theme-product-card:hover .theme-product-card__image-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26,33,24,.05);
}
.theme-product-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s var(--transition);
}
.theme-product-card:hover .theme-product-card__img { transform: scale(1.08); }

.theme-product-card__sold-out-badge {
  position: absolute;
  top: 0.5rem; left: 0.5rem;
  padding: 0.25rem 0.75rem;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background-color: var(--color-fg);
  color: var(--color-bg);
  border-radius: var(--radius-full);
  z-index: 2;
}
@media (min-width: 768px) {
  .theme-product-card__sold-out-badge { top: 0.75rem; left: 0.75rem; }
}

.theme-product-card__info { flex: 1; padding-top: 0.25rem; }
.theme-product-card__name {
  font-size: 0.875rem;
  font-weight: 500;
  font-family: var(--font-body);
  transition: color 0.3s;
  margin-bottom: 0.25rem;
  overflow-wrap: break-word;
}
.theme-product-card:hover .theme-product-card__name { color: var(--color-primary); }
.theme-product-card__price {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-muted-fg);
  font-family: var(--font-body);
}
.theme-product-card__sold-out-text {
  font-size: 0.8125rem;
  color: var(--color-muted-fg);
}

/* Card image link display */
.theme-product-card__image-link { display: block; overflow: hidden; }
.theme-product-card__image-link img { display: block; width: 100%; }

/* Sold out opacity */
.theme-product-card__img--sold-out { opacity: 0.6; }

/* Show more */
.shop-show-more { margin-top: 2.5rem; }
.shop-empty { padding: 5rem 1rem; text-align: center; color: var(--color-muted-fg); }

/* --------------------------------------------------------------------------
   CTA SECTION
   -------------------------------------------------------------------------- */
.cta-section { padding-top: 4rem; padding-bottom: 4rem; }
@media (min-width: 768px) { .cta-section { padding-top: 5rem; padding-bottom: 5rem; } }
.cta-card {
  padding: 2rem;
  text-align: center;
  max-width: 40rem;
  margin-inline: auto;
  border-radius: 1rem;
  color: #fff;
  transition: transform 0.4s var(--transition);
}
.cta-card:hover { transform: scale(1.02); }
@media (min-width: 768px) { .cta-card { padding: 3.5rem; } }
.cta-headline {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: 1rem;
  font-weight: 500;
}
.cta-body {
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 28rem;
  margin-inline: auto;
  font-family: var(--font-body);
  line-height: 1.65;
  display: block;
}

/* --------------------------------------------------------------------------
   CONTACT SECTION
   -------------------------------------------------------------------------- */
.contact-section { scroll-margin-top: 5rem; padding-top: 5rem; padding-bottom: 5rem; }
.contact-header { margin-bottom: 3rem; }
.contact-intro {
  color: var(--color-muted-fg);
  font-family: var(--font-body);
  max-width: 28rem;
  margin-inline: auto;
  line-height: 1.65;
}

.contact-success { text-align: center; padding: 2.5rem 1rem; }
.contact-success-icon {
  width: 4rem; height: 4rem;
  background-color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  margin-bottom: 1.5rem;
  color: var(--color-primary-fg);
}
.contact-success-title { font-size: 1.5rem; margin-bottom: 0.5rem; }
.contact-success-body { color: var(--color-muted-fg); font-family: var(--font-body); }

.contact-form-wrap { max-width: 40rem; margin-inline: auto; }
.contact-channels {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.875rem;
  color: var(--color-muted-fg);
  font-family: var(--font-body);
  margin-bottom: 2rem;
}
.contact-channel {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.2s;
}
.contact-channel:hover { transform: scale(1.05); }
.contact-channel-link { transition: color 0.2s; }
.contact-channel-link:hover { color: var(--color-fg); }

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) { .contact-form-row { grid-template-columns: 1fr 1fr; } }
.form-submit-wrap { text-align: center; }

/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  border-top: 1px solid var(--color-border);
  background-color: var(--color-bg);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    padding-top: 4rem;
  }
}

.footer-logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.footer-logo {
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(77,140,106,.3);
}
.footer-wordmark { font-size: 1.25rem; letter-spacing: -0.02em; }
.footer-description {
  font-size: 0.875rem;
  color: var(--color-muted-fg);
  max-width: 22rem;
  line-height: 1.65;
  font-family: var(--font-body);
  margin-bottom: 1rem;
}
.footer-social { display: flex; gap: 1rem; }
.footer-social-link {
  font-size: 0.875rem;
  color: var(--color-muted-fg);
  font-family: var(--font-body);
  transition: color 0.2s;
}
.footer-social-link:hover { color: var(--color-fg); }

.footer-col-heading {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-fg);
}
.footer-nav-list, .theme-footer-nav-list { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-nav-list li a,
.theme-footer-nav-list li a,
.theme-footer-nav-list a,
.theme-footer-nav-link {
  font-size: 0.875rem;
  color: var(--color-muted-fg);
  font-family: var(--font-body);
  transition: color 0.2s;
}
.footer-nav-list li a:hover,
.theme-footer-nav-list a:hover,
.theme-footer-nav-link:hover { color: var(--color-fg); }

.footer-contact-list { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-muted-fg);
  font-family: var(--font-body);
}
.footer-contact-link { transition: color 0.2s; }
.footer-contact-link:hover { color: var(--color-fg); }

.footer-bottom {
  padding-top: 1.5rem;
  padding-bottom: 2rem;
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 480px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}
.footer-copy, .footer-credit {
  font-size: 0.75rem;
  color: var(--color-muted-fg);
  font-family: var(--font-body);
}
.footer-credit { transition: color 0.2s; }
.footer-credit:hover { color: var(--color-fg); }

/* --------------------------------------------------------------------------
   CART DRAWER
   -------------------------------------------------------------------------- */
#theme-cart-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(26,33,24,.2);
  z-index: 200;
}
body.cart-open #theme-cart-overlay { display: block; }

#theme-cart-drawer {
  position: fixed;
  top: 0; right: 0;
  height: 100%;
  width: 100%;
  max-width: 28rem;
  background-color: var(--color-bg);
  z-index: 201;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-elevated);
  transform: translateX(100%);
  transition: transform 0.35s var(--transition);
}
body.cart-open #theme-cart-drawer { transform: translateX(0); }

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid var(--color-border);
}
.cart-drawer-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
}
.cart-close-btn {
  padding: 0.25rem;
  transition: opacity 0.2s;
}
.cart-close-btn:hover { opacity: 0.6; }

.cart-empty-state {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  text-align: center;
}
.cart-empty-icon { color: var(--color-muted-fg); margin-bottom: 1rem; }
.cart-empty-msg { color: var(--color-muted-fg); font-family: var(--font-body); margin-bottom: 1.5rem; }

.cart-items-scroll { flex: 1; overflow-y: auto; padding: 1.5rem; display: flex; flex-direction: column; gap: 1.5rem; }

.cart-item { display: flex; gap: 1rem; }
.cart-item__thumb-link {
  display: block;
  width: 5rem; height: 6rem;
  flex-shrink: 0;
  overflow: hidden;
  background-color: var(--color-secondary);
  border-radius: var(--radius);
}
.cart-item__thumb-link img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cart-item__info { flex: 1; min-width: 0; }
.cart-item__name {
  font-size: 0.875rem;
  font-weight: 500;
  font-family: var(--font-body);
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: opacity 0.2s;
  margin-bottom: 0.125rem;
}
.cart-item__name:hover { opacity: 0.7; }
.cart-item__price { font-size: 0.875rem; color: var(--color-muted-fg); font-family: var(--font-body); }
.cart-item__controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.75rem;
}
.cart-qty-btn {
  padding: 0.25rem;
  border-radius: var(--radius-full);
  transition: background-color 0.2s;
  line-height: 1;
}
.cart-qty-btn:hover { background-color: var(--color-secondary); }
.cart-qty-num { font-size: 0.875rem; width: 1.5rem; text-align: center; font-family: var(--font-body); }
.cart-remove-btn {
  margin-left: auto;
  font-size: 0.75rem;
  color: var(--color-muted-fg);
  font-family: var(--font-body);
  transition: color 0.2s;
}
.cart-remove-btn:hover { color: var(--color-fg); }

.cart-variation { font-size: 0.75rem; color: var(--color-muted-fg); margin-top: 0.25rem; font-family: var(--font-body); }

.cart-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.cart-subtotal-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  font-family: var(--font-body);
}
.cart-subtotal-label { color: var(--color-muted-fg); }
.cart-checkout-btn { width: 100%; }

#theme-cart-drawer.is-updating { opacity: 0.6; pointer-events: none; }

/* --------------------------------------------------------------------------
   SINGLE PRODUCT PAGE
   -------------------------------------------------------------------------- */
.single-product .site-main,
.single-product-page { padding-top: calc(var(--header-height) + 1rem); }
.single-product-back { padding: 1.5rem 0; }
.single-product-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 5rem;
  min-width: 0;
}
@media (min-width: 1024px) {
  .single-product-layout {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}
.theme-product-gallery,
.theme-product-info { min-width: 0; max-width: 100%; }

/* Gallery */
.theme-product-main-img-wrap {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background-color: var(--color-secondary);
  margin-bottom: 1rem;
}
.theme-product-main-img { width: 100%; height: 100%; object-fit: cover; }
.theme-product-thumbnails {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  max-width: 100%;
}
.thumb-btn {
  flex: 0 0 auto;
  aspect-ratio: 1 / 1;
  width: calc(20% - 0.4rem);
  overflow: hidden;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: border-color 0.2s, opacity 0.2s;
  opacity: 0.6;
  cursor: pointer;
}
.thumb-btn:hover { opacity: 1; }
.thumb-btn.is-active { border-color: var(--color-primary); opacity: 1; }
.thumb-btn img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Product info */
.theme-product-info { padding-top: 0; }
@media (min-width: 1024px) { .theme-product-info { padding-top: 2.5rem; } }
.product-category-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-muted-fg);
  font-family: var(--font-body);
  margin-bottom: 0.5rem;
}
.product-title {
  font-size: clamp(1.375rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 1rem;
}
.product-price {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-primary);
  font-family: var(--font-body);
  margin-bottom: 1.5rem;
}
.product-stock-badge {
  display: inline-block;
  margin-bottom: 1.5rem;
  padding: 0.25rem 0.75rem;
  background-color: var(--color-fg);
  color: var(--color-bg);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
}
.product-description {
  color: var(--color-muted-fg);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.7;
  white-space: pre-line;
  margin-bottom: 2rem;
  overflow-wrap: break-word;
  word-break: break-word;
}

/* ATC area */
.theme-add-to-cart-area {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.single-product .single_add_to_cart_button { flex: 1 1 auto; min-width: 160px; }

/* Quantity */
.theme-quantity-wrapper {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
}
.theme-qty-minus, .theme-qty-plus {
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  transition: background-color 0.2s;
  flex-shrink: 0;
}
@media (min-width: 480px) {
  .theme-qty-minus, .theme-qty-plus { padding: 0.75rem 1rem; }
}
.theme-qty-minus:hover, .theme-qty-plus:hover { background-color: var(--color-secondary); }
.theme-qty-input {
  border: none;
  background: none;
  text-align: center;
  width: 2.5rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--color-fg);
  -moz-appearance: textfield;
  padding: 0.5rem 0;
}
@media (min-width: 480px) { .theme-qty-input { width: 3rem; padding: 0.75rem 0; } }
.theme-qty-input::-webkit-outer-spin-button,
.theme-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; }

/* Details section */
.product-details-section { border-top: 1px solid var(--color-border); padding-top: 2rem; }
.product-details-title {
  font-size: 0.875rem;
  font-weight: 600;
  font-family: var(--font-body);
  margin-bottom: 1rem;
}
.product-details-list { display: flex; flex-direction: column; gap: 0.5rem; }
.product-details-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--color-muted-fg);
  font-family: var(--font-body);
  overflow-wrap: break-word;
  word-break: break-word;
}
.product-details-dot {
  width: 6px; height: 6px;
  background-color: var(--color-primary);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.375rem;
}

/* Related products */
.related-products-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
  border-top: 1px solid var(--color-border);
}
.related-products-title {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 700;
  margin-bottom: 2.5rem;
}
.related-products-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
@media (min-width: 1024px) { .related-products-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.5rem; } }

/* WooCommerce ATC button overrides */
.single_add_to_cart_button.button,
.add_to_cart_button.button,
a.single_add_to_cart_button,
a.add_to_cart_button {
  background-color: var(--color-primary) !important;
  color: var(--color-primary-fg) !important;
  border: none !important;
  border-radius: var(--btn-radius) !important;
  min-height: var(--btn-height) !important;
  padding: var(--btn-padding) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-family: var(--font-body) !important;
  font-size: var(--btn-font-size) !important;
  font-weight: var(--btn-font-weight) !important;
  letter-spacing: var(--btn-letter-spacing) !important;
  text-transform: var(--btn-text-transform) !important;
  cursor: pointer !important;
  transition: opacity 0.2s ease !important;
  text-decoration: none !important;
}
.single_add_to_cart_button.button:hover,
.add_to_cart_button.button:hover {
  opacity: 0.85 !important;
  background-color: var(--color-primary) !important;
  color: var(--color-primary-fg) !important;
}

.single_add_to_cart_button.button:disabled,
.single_add_to_cart_button.button.disabled,
.add_to_cart_button.button:disabled,
.add_to_cart_button.button.disabled {
  cursor: not-allowed !important;
  opacity: 0.4 !important;
  pointer-events: none !important;
}
.single_add_to_cart_button.button:disabled:hover,
.single_add_to_cart_button.button.disabled:hover,
.add_to_cart_button.button:disabled:hover,
.add_to_cart_button.button.disabled:hover {
  opacity: 0.4 !important;
  background-color: var(--color-primary) !important;
}

/* Hide WC "View Cart" link */
.woocommerce-page a.added_to_cart.wc-forward,
.single-product a.added_to_cart.wc-forward,
body a.added_to_cart.wc-forward { display: none !important; }

/* Button loading state */
.ajax_add_to_cart.theme-btn-loading {
  opacity: 0.6 !important;
  pointer-events: none !important;
  cursor: wait !important;
}

/* --------------------------------------------------------------------------
   SHOP ARCHIVE PAGE (WooCommerce)
   -------------------------------------------------------------------------- */
.woocommerce-shop-page,
.archive-product-page {
  padding-top: calc(var(--header-height) + 1rem);
  padding-bottom: 5rem;
}
.archive-product-page .page-title-area { margin-bottom: 2.5rem; }

/* WC notices — scope carefully */
.single-product .woocommerce-message,
.single-product .woocommerce-info { display: none; }
#theme-cart-drawer .woocommerce-message { display: none; }
.woocommerce-error { display: block; }

/* --------------------------------------------------------------------------
   CHECKOUT PAGE
   -------------------------------------------------------------------------- */
body.woocommerce-checkout .site-main {
  padding-top: calc(var(--header-height) + 2rem);
  padding-bottom: 4rem;
}
body.woocommerce-checkout .entry-content { max-width: 100%; }
body.woocommerce-checkout .page-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 2rem;
}

body.woocommerce-checkout .wc-block-checkout {
  display: block;
}
@media (min-width: 768px) {
  body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout.is-large {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: var(--checkout-gap, 2rem);
    align-items: start;
  }
}
body.woocommerce-checkout .wc-block-checkout__main,
body.woocommerce-checkout .wc-block-checkout__sidebar {
  min-width: 0;
  width: 100%;
  max-width: none;
}
body.woocommerce-checkout .wc-block-checkout__sidebar {
  background-color: var(--color-secondary);
  border-radius: var(--card-radius);
  padding: var(--section-padding);
}
body.woocommerce-checkout .wc-block-components-text-input input,
body.woocommerce-checkout .wc-block-components-select select,
body.woocommerce-checkout .wc-block-components-textarea textarea {
  width: 100% !important;
  max-width: none !important;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-fg);
  border-color: var(--color-border);
  border-radius: var(--radius);
  background-color: var(--color-bg);
}
body.woocommerce-checkout .wc-block-components-text-input input:focus,
body.woocommerce-checkout .wc-block-components-select select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(77,140,106,.15);
  outline: none;
}
body.woocommerce-checkout .wc-block-components-checkout-place-order-button {
  background-color: var(--color-primary) !important;
  color: var(--color-primary-fg) !important;
  border-radius: var(--btn-radius) !important;
  font-family: var(--font-body) !important;
  font-size: var(--btn-font-size) !important;
  font-weight: var(--btn-font-weight) !important;
  border: none !important;
  padding: var(--btn-padding) !important;
  min-height: var(--btn-height) !important;
  transition: opacity 0.2s !important;
}
body.woocommerce-checkout .wc-block-components-checkout-place-order-button:hover {
  opacity: 0.88 !important;
}
body.woocommerce-checkout h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

/* --------------------------------------------------------------------------
   THANK YOU PAGE
   -------------------------------------------------------------------------- */
body.theme-thankyou-page .site-main {
  padding-top: calc(var(--header-height) + 2rem);
  padding-bottom: 4rem;
}
body.theme-thankyou-page .woocommerce-order { max-width: 48rem; margin-inline: auto; }
body.theme-thankyou-page .woocommerce-order h2,
body.theme-thankyou-page .woocommerce-order-details__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  padding-bottom: 1rem;
}
body.theme-thankyou-page .woocommerce-order-overview {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  background-color: var(--color-secondary);
  border-radius: var(--card-radius);
  padding: 1.5rem;
  margin-bottom: 2rem;
  list-style: none;
}
body.theme-thankyou-page .woocommerce-order-overview li {
  font-family: var(--font-body);
  font-size: 0.875rem;
}
body.theme-thankyou-page .woocommerce-order-details table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  font-family: var(--font-body);
  font-size: 0.9375rem;
}
body.theme-thankyou-page .woocommerce-order-details tfoot th { text-align: left; }
body.theme-thankyou-page .woocommerce-order-details tfoot td { text-align: right; }
body.theme-thankyou-page .woocommerce-customer-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}
body.theme-thankyou-page .woocommerce-customer-details address {
  max-width: 480px;
  overflow-wrap: break-word;
  font-style: normal;
  font-family: var(--font-body);
  font-size: 0.9375rem;
}
body.theme-thankyou-page { overflow-x: hidden; }

/* --------------------------------------------------------------------------
   FAQ PAGE
   -------------------------------------------------------------------------- */
.faq-page { padding-top: calc(var(--header-height) + 1rem); padding-bottom: 5rem; }
.faq-back-nav { margin-bottom: 2rem; }
.faq-inner { max-width: 48rem; margin-inline: auto; }
.faq-page-header { text-align: center; margin-bottom: 3rem; }
.faq-page-title { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 500; margin-bottom: 1rem; }
.faq-page-subtitle { color: var(--color-muted-fg); font-family: var(--font-body); }

.faq-category { margin-bottom: 0; }
.faq-category-title {
  font-size: 1.25rem;
  font-weight: 500;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 1rem;
}
.faq-items { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem;
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  transition: background-color 0.2s;
}
.faq-question:hover { background-color: rgba(144,160,144,.08); }
.faq-question-text { font-size: 0.875rem; font-weight: 500; padding-right: 1rem; }
.faq-chevron { flex-shrink: 0; color: var(--color-muted-fg); transition: transform 0.3s; }
.faq-item.is-open .faq-chevron { transform: rotate(180deg); }
.faq-answer { padding: 0 1.25rem 1.25rem; }
.faq-answer-text {
  color: var(--color-muted-fg);
  font-size: 0.875rem;
  font-family: var(--font-body);
  line-height: 1.7;
  white-space: pre-line;
}
.faq-body { display: flex; flex-direction: column; gap: 2.5rem; }

.faq-cta {
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--color-border);
  text-align: center;
}
.faq-cta-title { font-size: 1.25rem; font-weight: 500; margin-bottom: 1rem; }
.faq-cta-body { color: var(--color-muted-fg); margin-bottom: 1.5rem; font-family: var(--font-body); }

/* --------------------------------------------------------------------------
   404 PAGE
   -------------------------------------------------------------------------- */
.error-404-page {
  padding-top: calc(var(--header-height) + 2rem);
  padding-bottom: 5rem;
  min-height: 60vh;
}
.error-404-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.error-404-title {
  font-size: clamp(4rem, 15vw, 8rem);
  font-weight: 400;
  color: var(--color-muted);
  margin-bottom: 0.5rem;
}
.error-404-subtitle { font-size: clamp(1.25rem, 3vw, 2rem); margin-bottom: 1rem; }
.error-404-body { color: var(--color-muted-fg); font-family: var(--font-body); margin-bottom: 2rem; max-width: 28rem; }

/* --------------------------------------------------------------------------
   PAGE TEMPLATE GENERIC
   -------------------------------------------------------------------------- */
.site-main { min-height: 50vh; }
.page-content-wrap { padding-top: calc(var(--header-height) + 2rem); padding-bottom: 5rem; }
.page-title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.entry-content { font-family: var(--font-body); line-height: 1.7; }

/* --------------------------------------------------------------------------
   ANIMATIONS
   -------------------------------------------------------------------------- */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}

.js-fade-in  { opacity: 0; }
.js-slide-up { opacity: 0; transform: translateY(80px); }
.js-blur-in  { opacity: 0; filter: blur(10px); }
.js-fade-up  { opacity: 0; transform: translateY(40px); }
.js-scale-in { opacity: 0; transform: scale(0.92); }

.is-animated.js-fade-in  { animation: fadeIn 0.8s var(--transition) forwards; }
.is-animated.js-slide-up { animation: slideUp 1s var(--transition) forwards; }
.is-animated.js-blur-in  {
  animation: blurIn 0.8s var(--transition) forwards;
}
.is-animated.js-fade-up  { animation: slideUp 0.7s var(--transition) forwards; }
.is-animated.js-scale-in { animation: scaleIn 0.6s var(--transition) forwards; }

@keyframes blurIn {
  from { opacity: 0; transform: translateY(30px); filter: blur(10px); }
  to   { opacity: 1; transform: translateY(0); filter: blur(0); }
}

/* --------------------------------------------------------------------------
   WOOCOMMERCE — VARIABLE PRODUCTS
   -------------------------------------------------------------------------- */
.theme-attr-select-hidden { display: none !important; }

.single-product .variations.shop_attributes tbody,
.single-product .variations tbody tr,
.single-product .variations tbody td {
  display: block;
  width: 100%;
}
.single-product .variations tbody td.label { padding-bottom: 0.25rem; }
.single-product .variations tbody td.value { padding-top: 0; }

.single_variation_wrap { display: none; }
.single_variation_wrap.active { display: block; }

/* --------------------------------------------------------------------------
   WOOCOMMERCE — MISC CLEANUP
   -------------------------------------------------------------------------- */
.woocommerce-notices-wrapper { max-width: 48rem; margin-inline: auto; margin-bottom: 1rem; }
.woocommerce-message, .woocommerce-info, .woocommerce-error {
  padding: 0.875rem 1rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}
.woocommerce-message { background-color: #f0faf5; border-left: 3px solid var(--color-primary); color: var(--color-fg); }
.woocommerce-info    { background-color: #f0f4ff; border-left: 3px solid #5a82e0; color: var(--color-fg); }
.woocommerce-error   { background-color: #fff2f2; border-left: 3px solid #e05a5a; color: var(--color-fg); }

/* Responsive product image */
.single-product .theme-product-layout { min-width: 0; }
.single-product .theme-product-thumbnails { flex-wrap: wrap; max-width: 100%; }
.single-product .theme-add-to-cart-area { flex-wrap: wrap; gap: 0.75rem; }
.single-product .woocommerce-product-details__short-description,
.single-product .woocommerce-variation-description,
.single-product .posted_in { overflow-wrap: break-word; word-break: break-word; }

/* --------------------------------------------------------------------------
   RESPONSIVE MISC
   -------------------------------------------------------------------------- */
@media (max-width: 767px) {
  .desktop-only { display: none !important; }
}
@media (min-width: 768px) {
  .mobile-only { display: none !important; }
}
