/* ============================================================
   Rebecca's Studio — theme.css
   Full design system matching the Lovable project exactly.
   ============================================================ */

/* ---- Defaults (overridden by wp_add_inline_style) ---- */
:root {
  --color-primary:      #b05a2f;
  --color-primary-fg:   #ffffff;
  --color-foreground:   #2a1a0e;
  --color-background:   #f5f0e8;
  --color-card:         #ede6d6;
  --color-secondary:    #e0d5c0;
  --color-secondary-fg: #2a1a0e;
  --color-muted:        #cfc5b0;
  --color-muted-fg:     #706050;
  --color-accent:       #2c5282;
  --color-border:       #cfc5b0;

  --font-display: 'giulia-plain', 'Playfair Display', serif;
  --font-body:    'Lato', sans-serif;

  --shadow-soft:     0 4px 20px -4px rgba(42, 26, 14, 0.06);
  --shadow-elevated: 0 8px 40px -8px rgba(42, 26, 14, 0.12);

  --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);

  --btn-radius:        9999px;
  --btn-height:        48px;
  --btn-padding:       0 2rem;
  --btn-font-size:     0.9375rem;
  --btn-font-weight:   500;
  --btn-letter-spacing: 0;
  --btn-text-transform: none;

  --logo-height: 60px;

  /* Lovable: h-16 (4rem) / h-20 (5rem) at top; h-14 / h-16 when scrolled */
  --header-pad: 4rem;
  --radius: 0.5rem;
}
@media (min-width: 1024px) {
  :root { --header-pad: 5rem; }
}

/* ============================================================
   RESET / BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background-color: var(--color-background);
  color: var(--color-foreground);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

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

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

.scroll-mt-20 { scroll-margin-top: 5rem; }
.w-full { width: 100%; }
/* Lovable: secciones / page.php (p. ej. my-account) con py-20 = 5rem + 5rem */
.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.text-muted { color: var(--color-muted-fg); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroPanZoom {
  0%   { transform: scale(1.15) translate(0%, 0%); }
  50%  { transform: scale(1.30) translate(-2%, -1%); }
  100% { transform: scale(1.15) translate(0%, 0%); }
}
@keyframes servicesImgIn {
  from { opacity: 0; transform: scale(1.08); filter: blur(6px); }
  to   { opacity: 1; transform: scale(1);    filter: blur(0); }
}
@keyframes servicesImgOut {
  from { opacity: 1; transform: scale(1);    filter: blur(0); }
  to   { opacity: 0; transform: scale(0.97); filter: blur(4px); }
}
@keyframes serviceDescIn {
  from { opacity: 0; transform: translateY(12px); filter: blur(4px); }
  to   { opacity: 1; transform: translateY(0);    filter: blur(0); }
}

.animate-fade-in  { animation: fadeIn  0.6s var(--transition-smooth) both; }
.animate-slide-up { animation: slideUp 0.6s var(--transition-smooth) both; }
.animate-hero-pan-zoom { animation: heroPanZoom 15s ease-in-out infinite; }

/* Lovable hero: motion + blur in (easing 0.16, 1, 0.3, 1) */
@keyframes heroInEyebrow {
  from { opacity: 0; transform: translate3d(0, 20px, 0); filter: blur(8px); }
  to   { opacity: 1; transform: none; filter: none; }
}
@keyframes heroInTitle {
  from { opacity: 0; transform: translate3d(0, 40px, 0); filter: blur(12px); }
  to   { opacity: 1; transform: none; filter: none; }
}
@keyframes heroInSubtitle {
  from { opacity: 0; transform: translate3d(0, 25px, 0); filter: blur(8px); }
  to   { opacity: 1; transform: none; filter: none; }
}
@keyframes heroInCtas {
  from { opacity: 0; transform: translate3d(0, 20px, 0); filter: blur(6px); }
  to   { opacity: 1; transform: none; filter: none; }
}
.hero-anim-eyebrow  { animation: heroInEyebrow 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both; }
.hero-anim-title    { animation: heroInTitle   1s   cubic-bezier(0.16, 1, 0.3, 1) 0.5s both; }
.hero-anim-subtitle { animation: heroInSubtitle 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.7s both; }
.hero-anim-ctas     { animation: heroInCtas      0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.9s both; }

/* scroll-reveal JS adds these classes */
.scroll-reveal,
.scroll-reveal-stagger {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--transition-smooth), transform 0.6s var(--transition-smooth);
}
.scroll-reveal.is-visible,
.scroll-reveal-stagger.is-visible {
  opacity: 1;
  transform: none;
}
.scroll-reveal[data-direction="left"] { transform: translateX(-32px); }
.scroll-reveal[data-direction="right"] { transform: translateX(32px); }
.scroll-reveal[data-direction="left"].is-visible,
.scroll-reveal[data-direction="right"].is-visible { transform: none; }

/* ============================================================
   BUTTONS
   ============================================================ */
.theme-btn-primary,
.theme-btn-outline,
.theme-btn-outline-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: var(--btn-height);
  padding: var(--btn-padding);
  border-radius: var(--btn-radius);
  font-family: var(--font-body);
  font-size: var(--btn-font-size);
  font-weight: var(--btn-font-weight);
  cursor: pointer;
  transition: opacity 0.2s ease, background-color 0.2s ease, color 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}
.theme-btn-primary {
  background-color: var(--color-primary);
  color: var(--color-primary-fg);
  border: 2px solid transparent;
}
.theme-btn-primary:hover { opacity: 0.85; }

.theme-btn-outline {
  background-color: transparent;
  color: var(--color-foreground);
  border: 2px solid var(--color-border);
}
.theme-btn-outline:hover {
  border-color: var(--color-foreground);
}

.theme-btn-outline-white {
  background-color: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(4px);
}
.theme-btn-outline-white:hover {
  background-color: rgba(255,255,255,0.1);
}

.theme-btn-lg {
  height: 52px;
  padding: 0 2rem;
  font-size: 1rem;
}

/* Lovable: Button outline + size lg + className="rounded-full" (Index About CTA) */
#about-cta.theme-btn-outline,
a.about-cta.theme-btn-outline {
  height: 2.75rem; /* h-11 */
  min-height: 2.75rem;
  padding: 0 2rem; /* px-8 */
  font-size: 0.875rem; /* text-sm */
  font-weight: 500; /* font-medium */
  line-height: 1.25rem;
  border: 1px solid var(--color-border); /* border-input */
  border-radius: 9999px; /* rounded-full (overrides md from base button) */
  background-color: var(--color-background);
  color: var(--color-foreground);
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}
#about-cta.theme-btn-outline:hover,
a.about-cta.theme-btn-outline:hover {
  background-color: var(--color-accent);
  color: #fff; /* accent-foreground */
  border-color: var(--color-accent);
  opacity: 1;
}
#about-cta.theme-btn-outline:focus-visible,
a.about-cta.theme-btn-outline:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}
#about-cta svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  pointer-events: none;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-solid {
  background-color: rgba(245, 240, 232, 0.95);
  backdrop-filter: blur(8px);
  border-bottom-color: var(--color-border);
  box-shadow: var(--shadow-soft);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
  transition: height 0.3s ease;
}
@media (min-width: 1024px) {
  .site-header:not(.is-scrolled) .site-nav {
    height: 5rem;
  }
}
.site-header.is-scrolled .site-nav {
  height: 3.5rem;
}
@media (min-width: 1024px) {
  .site-header.is-scrolled .site-nav {
    height: 4rem;
  }
}

/* Logo */
.site-logo { text-decoration: none; }
.site-logo-img {
  height: var(--logo-height) !important;
  width: auto !important;
  display: block;
}
.site-logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
  color: var(--color-foreground);
}
.site-header:not(.is-solid) .site-logo-text { color: #fff; }

/* Lovable: mobile mark text-xl, desktop center text-2xl */
@media (max-width: 1023.98px) {
  .mobile-logo .site-logo-text { font-size: 1.25rem; }
}
@media (min-width: 1024px) {
  .desktop-logo .site-logo-text { font-size: 1.5rem; }
}

/* Desktop nav */
.desktop-nav {
  display: none;
  align-items: center;
  justify-content: center;
  flex: 1;
}
@media (min-width: 1024px) {
  .desktop-nav { display: flex; }
  .mobile-logo { display: none; }
}

.nav-left, .nav-right {
  display: flex;
  align-items: center;
  flex: 1;
}
.nav-left { justify-content: flex-end; }
.nav-right { justify-content: flex-start; }

.theme-nav-list,
.nav-left-list,
.nav-right-list {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  position: relative;
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
  color: var(--color-foreground);
}
.site-header:not(.is-solid) .nav-link { color: #fff; }

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--transition-smooth);
}
.nav-link:hover::after { transform: scaleX(1); }

.desktop-logo { margin-inline: 2.5rem; flex-shrink: 0; }

/* Nav actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cart-btn {
  position: relative;
  padding: 0.5rem;
  color: var(--color-foreground);
  transition: opacity 0.2s ease;
  background: none;
  border: none;
  display: flex;
  align-items: center;
}
.site-header:not(.is-solid) .cart-btn { color: #fff; }
.cart-btn:hover { opacity: 0.6; }

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

.mobile-menu-btn {
  display: flex;
  align-items: center;
  padding: 0.5rem;
  color: var(--color-foreground);
  transition: opacity 0.2s ease;
}
.site-header:not(.is-solid) .mobile-menu-btn { color: #fff; }
.mobile-menu-btn:hover { opacity: 0.6; }

@media (min-width: 1024px) { .mobile-menu-btn { display: none; } }

/* Mobile menu */
.mobile-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background-color: var(--color-background);
  border-top: 1px solid var(--color-border);
  padding: 1rem 1.5rem;
  animation: fadeIn 0.2s var(--transition-smooth);
}
.mobile-menu[hidden] { display: none; }

.mobile-nav-list { display: flex; flex-direction: column; gap: 0.25rem; }
.mobile-nav-link {
  display: block;
  padding: 0.625rem 0;
  font-family: var(--font-body);
  font-size: 0.875rem;
  letter-spacing: 0.03em;
  color: var(--color-foreground);
  transition: color 0.2s ease;
}
.mobile-nav-link:hover { color: var(--color-muted-fg); }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(42, 26, 14, 0.55);
}

.hero-content {
  position: relative;
  z-index: 10;
  padding-block: 6rem;
}
@media (min-width: 1024px) { .hero-content { padding-block: 8rem; } }

.hero-inner {
  max-width: 672px;
  margin-inline: auto;
  text-align: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: rgba(255,255,255,0.8);
  max-width: 448px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}
@media (min-width: 640px) { .hero-ctas { flex-direction: row; } }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
  background-color: var(--color-card);
  padding-block: 6rem;
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

.about-image-wrap { display: flex; justify-content: center; }
@media (min-width: 1024px) { .about-image-wrap { justify-content: flex-start; } }

.about-image-inner {
  aspect-ratio: 1;
  border-radius: 1rem;
  overflow: hidden;
  max-width: 448px;
  width: 100%;
}
.studio-glow {
  box-shadow: 0 0 30px -5px rgba(176, 90, 47, 0.3), 0 0 60px -10px rgba(44, 82, 130, 0.15);
}

.about-img { width: 100%; height: 100%; object-fit: cover; }

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-muted-fg);
  display: block;
  margin-bottom: 0.5rem;
}

.section-heading {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 1.5rem;
}

.about-bio {
  font-family: var(--font-body);
  color: var(--color-muted-fg);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.about-bio-last { margin-bottom: 2rem; }

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section { padding-block: 6rem; }

.services-header-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}
@media (min-width: 1024px) {
  .services-header-grid {
    grid-template-columns: 1fr 1fr;
    margin-bottom: 5rem;
  }
}

.services-eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: 9999px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-muted-fg);
  margin-bottom: 1.5rem;
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-primary);
  flex-shrink: 0;
}

.services-heading {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.services-header-right {
  display: flex;
  align-items: flex-end;
}
@media (min-width: 1024px) { .services-header-right { justify-content: flex-end; } }

.services-intro {
  font-family: var(--font-body);
  color: var(--color-muted-fg);
  line-height: 1.75;
  max-width: 448px;
}

.services-content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .services-content-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

/* Service tabs */
.services-tabs {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-tab {
  text-align: left;
  border-radius: 1rem;
  position: relative;
  padding: 1rem 2rem;
  background: none;
  border: none;
  cursor: pointer;
  transition: padding 0.3s ease;
}
.service-tab.is-active { padding-block: 1.5rem; }

.service-tab-bg {
  position: absolute;
  inset: 0;
  background-color: var(--color-card);
  box-shadow: var(--shadow-soft);
  border-radius: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.service-tab.is-active .service-tab-bg { opacity: 1; }

.service-tab-title {
  font-size: clamp(1.25rem, 2.2vw, 1.875rem);
  font-family: var(--font-display);
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
  color: rgba(112, 96, 80, 0.4);
  transition: color 0.4s ease;
}
.service-tab.is-active .service-tab-title { color: var(--color-foreground); }
.service-tab:not(.is-active):hover .service-tab-title { color: rgba(112, 96, 80, 0.7); }

/* Service display */
.services-display { display: flex; flex-direction: column; gap: 1.5rem; }

.services-image-wrap {
  aspect-ratio: 4/3;
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
}

.service-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.service-img.is-active { opacity: 1; }

.services-desc-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
}

.service-desc {
  font-family: var(--font-body);
  color: var(--color-muted-fg);
  line-height: 1.75;
  max-width: 336px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  position: absolute;
  pointer-events: none;
}
.service-desc.is-active {
  opacity: 1;
  transform: none;
  position: relative;
  pointer-events: auto;
}

.services-cta { flex-shrink: 0; padding: 0 1.5rem; }

/* ============================================================
   SHOP / CLASSES SECTION
   ============================================================ */
.shop-section {
  background-color: var(--color-card);
  padding-block: 5rem;
}

.shop-toggle-wrap {
  text-align: center;
  margin-top: 2rem;
}
.shop-toggle-more { padding-inline: 2rem; }

.shop-header {
  text-align: center;
  margin-bottom: 3rem;
}

.shop-eyebrow {
  display: block;
  margin-bottom: 0.5rem;
}

.shop-heading { margin-bottom: 2rem; }

/* Search */
.shop-search-wrap {
  position: relative;
  max-width: 448px;
  margin-inline: auto;
  margin-bottom: 1.5rem;
}
.shop-search-icon {
  position: absolute;
  left: 0.875rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-muted-fg);
  pointer-events: none;
}
.shop-search-input {
  width: 100%;
  height: 40px;
  border-radius: 9999px;
  border: 1px solid var(--color-border);
  background-color: var(--color-background);
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-foreground);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.shop-search-input::placeholder { color: var(--color-muted-fg); }
.shop-search-input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px rgba(176, 90, 47, 0.15);
}
.shop-search-clear {
  position: absolute;
  right: 0.875rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-muted-fg);
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.shop-search-clear:hover { color: var(--color-foreground); }

/* Category pills */
.shop-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}
.shop-cat-pill {
  padding: 0.625rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  letter-spacing: 0.03em;
  border-radius: 9999px;
  background-color: var(--color-secondary);
  color: var(--color-secondary-fg);
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.shop-cat-pill:hover { background-color: var(--color-muted); }
.shop-cat-pill.is-active {
  background-color: var(--color-primary);
  color: var(--color-primary-fg);
}

/* Product grid */
.shop-product-grid,
.theme-product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px)  { .shop-product-grid, .theme-product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .shop-product-grid, .theme-product-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }

.shop-no-results {
  text-align: center;
  padding-block: 5rem;
  grid-column: 1 / -1;
}
.shop-no-results p { margin-bottom: 1rem; font-family: var(--font-body); }

/* ============================================================
   PRODUCT CARD
   ============================================================ */
.theme-product-card-wrap {
  height: 100%;
}

.theme-product-card-link {
  display: block;
  height: 100%;
}

.theme-product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.5s var(--transition-smooth), box-shadow 0.5s var(--transition-smooth);
}
.theme-product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-elevated);
}

/* Image frame (details also in "Pattern A" block below) */
.theme-product-card__image-wrapper {
  position: relative;
  aspect-ratio: 3/4;
  width: 100%;
  min-height: 0;
  background-color: var(--color-secondary);
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: 0.75rem;
}

.theme-product-card__image-link {
  display: block;
  overflow: hidden;
}

/* Fill 3/4 box: abs + cover (intrinsic 600×600 from WC must not cap height) */
.theme-product-card__image,
.theme-product-card__image-wrapper > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.theme-product-card:hover .theme-product-card__image,
.theme-product-card__image-wrapper:hover > img { transform: scale(1.06); }

/* Badges */
.sold-out-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.25rem 0.75rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: 9999px;
  background-color: var(--color-foreground);
  color: var(--color-background);
  pointer-events: none;
}
.new-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  padding: 0.25rem 0.75rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: 9999px;
  background-color: var(--color-primary);
  color: #fff;
  pointer-events: none;
}

/* Quick add button (bottom-right of image) */
.theme-product-quick-add {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  pointer-events: auto;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(245, 240, 232, 0.9);
  backdrop-filter: blur(4px);
  color: var(--color-foreground);
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.theme-product-quick-add:hover,
.theme-product-quick-add.is-added {
  background-color: var(--color-primary);
  color: #fff;
}
.theme-product-quick-add:active { transform: scale(0.9); }

/* Card info */
.theme-product-card__info { flex: 1; }

.theme-product-card__cat {
  font-family: var(--font-body);
  font-size: 0.625rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-muted-fg);
  display: block;
  margin-bottom: 0.25rem;
}

.theme-product-card__name {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-foreground);
  transition: opacity 0.3s ease;
  margin-bottom: 0.25rem;
}
.theme-product-card:hover .theme-product-card__name { opacity: 0.7; }

.theme-product-card__price {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-muted-fg);
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
  background-color: var(--color-background);
  padding-block: 5rem;
}

.faq-container { max-width: 896px; }

.faq-eyebrow-pill {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-muted-fg);
  border: 1px solid var(--color-border);
  border-radius: 9999px;
  padding: 0.25rem 0.75rem;
  margin-bottom: 3rem;
}

.faq-header { margin-bottom: 3rem; }

.faq-accordion { display: flex; flex-direction: column; }

.faq-item {
  border-bottom: 1px solid var(--color-border);
}
.faq-item:first-child { border-top: 1px solid var(--color-border); }

/* Lovable: AccordionTrigger (accordion.tsx) — py-5 px-4 -mx-4 rounded-lg, hover & open bg-primary/10, icon w-10 h-10 */
.faq-trigger {
  position: relative;
  width: calc(100% + 2rem);
  max-width: calc(100% + 2rem);
  margin-left: -1rem;
  margin-right: -1rem;
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1rem; /* py-5 px-4 */
  border: none;
  border-radius: 0.5rem; /* rounded-lg */
  background: transparent;
  cursor: pointer;
  text-align: left;
  color: var(--color-foreground);
  transition: background-color 0.3s ease;
  font: inherit;
}
.faq-trigger:hover,
.faq-trigger[aria-expanded="true"] {
  background-color: rgba(176, 90, 47, 0.1); /* bg-primary/10 @ ~40% on warm bg */
}

.faq-question {
  font-family: var(--font-display);
  font-size: 1.25rem; /* text-xl */
  font-weight: 500;
  line-height: 1.3;
  color: var(--color-foreground);
  text-align: left;
  flex: 1 1 auto;
  min-width: 0;
}
@media (min-width: 768px) {
  .faq-question { font-size: 1.5rem; } /* md:text-2xl */
}

.faq-icon-outer {
  flex-shrink: 0;
  margin-left: 1rem; /* ml-4 */
  display: flex;
  align-items: center;
}

.faq-icon-inner {
  width: 2.5rem;  /* w-10 */
  height: 2.5rem; /* h-10 */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(176, 90, 47, 0.1);
  color: var(--color-primary);
  transition: background-color 0.3s ease, color 0.3s ease;
}
.faq-trigger:hover .faq-icon-inner,
.faq-trigger[aria-expanded="true"] .faq-icon-inner {
  background-color: var(--color-primary);
  color: #fff;
}
.faq-icon-inner svg {
  flex-shrink: 0;
  display: block;
  pointer-events: none;
}

.faq-answer {
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer[hidden] { display: none; }

.faq-answer-text {
  font-family: var(--font-body);
  color: var(--color-muted-fg);
  line-height: 1.75;
  padding: 0 1rem 1rem; /* Lovable AccordionContent inner: pb-4 */
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section { padding-block: 6rem; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

.contact-heading { margin-bottom: 1.5rem; }

.contact-intro {
  font-family: var(--font-body);
  color: var(--color-muted-fg);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.contact-details { display: flex; flex-direction: column; gap: 1rem; }

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--color-muted-fg);
}

.contact-icon { color: var(--color-primary); flex-shrink: 0; }
.contact-icon-top { margin-top: 0.125rem; }

.contact-link {
  font-family: var(--font-body);
  color: var(--color-muted-fg);
  transition: color 0.2s ease;
}
.contact-link:hover { color: var(--color-foreground); }

.contact-address {
  font-family: var(--font-body);
  color: var(--color-muted-fg);
  line-height: 1.6;
}

/* Contact form */
.contact-form-wrap {
  background-color: var(--color-card);
  border-radius: 1rem;
  padding: 2rem;
}

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }

.contact-form-field { display: flex; flex-direction: column; gap: 0.5rem; }

.contact-form-label {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-foreground);
}

.contact-form-input,
.contact-form-textarea {
  width: 100%;
  padding: 0.625rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background-color: var(--color-background);
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-foreground);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-form-input { height: 40px; }
.contact-form-textarea { resize: none; line-height: 1.5; }
.contact-form-input::placeholder,
.contact-form-textarea::placeholder { color: var(--color-muted-fg); }
.contact-form-input:focus,
.contact-form-textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px rgba(176, 90, 47, 0.15);
}

.contact-form-status {
  font-family: var(--font-body);
  font-size: 0.875rem;
  padding: 0.5rem 0;
}
.contact-form-status.is-success { color: #15803d; }
.contact-form-status.is-error   { color: #dc2626; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background-color: var(--color-primary);
  color: var(--color-primary-fg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-block: 4rem;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: repeat(4, 1fr); gap: 2.5rem; padding-block: 5rem; }
}

.footer-brand { }
@media (min-width: 768px) { .footer-brand { grid-column: span 2; } }
@media (min-width: 1024px) { .footer-brand { grid-column: span 1; } }

.footer-logo-link { display: inline-block; margin-bottom: 1.25rem; text-decoration: none; }
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary-fg);
  display: block;
}
.footer-logo { height: var(--logo-height) !important; width: auto !important; }

.footer-brand-desc {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  max-width: 288px;
}

.footer-col-heading {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary-fg);
  margin-bottom: 1.25rem;
}

/* Footer contact list */
.footer-contact-list { display: flex; flex-direction: column; gap: 1rem; }
.footer-contact-link {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s ease;
  line-height: 1.5;
}
.footer-contact-link:hover { color: #fff; }

/* Footer nav */
.footer-nav-list,
.theme-footer-nav-list { display: flex; flex-direction: column; gap: 0.75rem; list-style: none; }
.footer-nav-list a,
.theme-footer-nav-list a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-nav-list a:hover,
.theme-footer-nav-list a:hover { color: #fff; }

/* Newsletter */
.footer-newsletter-desc {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.footer-newsletter-form { display: flex; }
.footer-newsletter-input {
  flex: 1;
  height: 44px;
  border-radius: 9999px 0 0 9999px;
  background-color: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0 1rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: #fff;
  outline: none;
  transition: border-color 0.2s;
}
.footer-newsletter-input::placeholder { color: rgba(255,255,255,0.4); }
.footer-newsletter-input:focus { border-color: rgba(255,255,255,0.4); }
.footer-newsletter-btn {
  height: 44px;
  padding: 0 1.25rem;
  border-radius: 0 9999px 9999px 0;
  background-color: #fff;
  color: var(--color-primary);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.2s;
  border: none;
}
.footer-newsletter-btn:hover { opacity: 0.9; }

/* Footer bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding-block: 1.25rem;
}
@media (min-width: 640px) { .footer-bottom-inner { flex-direction: row; justify-content: space-between; } }

.footer-copyright,
.footer-attribution {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}
.footer-attribution a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}
.footer-attribution a:hover { color: rgba(255,255,255,0.8); }

/* ============================================================
   PAGE TEMPLATES
   Lovable: index hero is full-bleed under fixed header (no main top padding on home)
   ============================================================ */
body.home .site-main.front-page-main {
  padding-top: 0;
}
body:not(.home) .site-main {
  padding-top: var(--header-pad);
}

.page-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 3rem);
  margin-bottom: 2rem;
}

.theme-404 {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-muted);
}
.theme-404 .container-wide { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.theme-404 h1 { font-size: clamp(2rem, 5vw, 3rem); }
.theme-404 p { color: var(--color-muted-fg); }

/* ============================================================
   WOOCOMMERCE — SINGLE PRODUCT PAGE
   (Lovable ProductDetail: main pt-24 lg:pt-32, container grid gap-10 lg:gap-16 pb-20)
   ============================================================ */
body.single-product .site-main {
  padding-top: 6rem; /* pt-24 */
}
@media (min-width: 1024px) {
  body.single-product .site-main {
    padding-top: 8rem; /* lg:pt-32 */
  }
}

.theme-product-layout {
  min-width: 0;
}

.theme-product-gallery,
.theme-product-info {
  min-width: 0;
  max-width: 100%;
}

.theme-product-thumbnails {
  flex-wrap: wrap;
  max-width: 100%;
}

.single-product .theme-add-to-cart-area,
.single-product .theme-product-form-wrapper .theme-add-to-cart-area {
  flex-wrap: nowrap;
  gap: 0.75rem; /* gap-3 Lovable */
  display: flex;
  align-items: center; /* match button + qty row height */
  margin-bottom: 2rem; /* mb-8 */
  min-height: 2.75rem; /* h-11 */
}
.theme-add-to-cart-area {
  flex-wrap: wrap;
  gap: 0.75rem;
  display: flex;
  align-items: stretch;
}

/* Lovable ProductDetail CTA: rounded-md (not pill), h-11, flex-1 */
.single-product .theme-btn-product-atc.single_add_to_cart_button,
.single-product .theme-btn-product-atc {
  border-radius: 0.375rem !important; /* rounded-md */
  min-height: 2.75rem !important;
  height: 2.75rem !important;
  font-size: 0.875rem !important;
  flex: 1 1 auto !important;
  min-width: 0 !important;
}
.single-product .single_add_to_cart_button {
  flex: 1 1 auto;
  min-width: 0; /* Lovable: min-w-0 so flex-1 can shrink */
  min-height: 2.75rem !important; /* size="lg" h-11 */
  font-size: 0.875rem !important;
  border-radius: var(--btn-radius) !important;
}

.woocommerce-product-details__short-description,
.woocommerce-variation-description,
.posted_in {
  overflow-wrap: break-word;
  word-break: break-word;
}

/* Add to cart buttons — override WooCommerce defaults */
.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;
}

/* Disabled state */
.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;
}

/* Móvil: CTA a ancho completo + 16px y múltiples líneas (textos largos p. ej. "Reserve 2 Seats — $110.00") */
@media (max-width: 639px) {
  .single-product .theme-add-to-cart-area,
  .single-product .theme-product-form-wrapper .theme-add-to-cart-area {
    flex-direction: column;
    align-items: stretch;
  }

  /* Selector de cantidad: misma “presencia” que el CTA, centrado (no a todo el ancho) */
  .single-product .theme-quantity-wrapper {
    align-self: center;
    width: max-content;
    max-width: 100%;
    height: 3rem;
    min-height: 3rem;
    max-height: 3rem;
  }
  .single-product .theme-qty-minus,
  .single-product .theme-qty-plus {
    width: 3rem;
    min-width: 3rem;
    max-width: 3rem;
    font-size: 1.25rem;
  }
  .single-product .theme-qty-input {
    width: 4.25rem;
    min-width: 4.25rem;
    max-width: 4.25rem;
    font-size: 1.125rem;
    font-weight: 500;
  }

  .single-product .theme-btn-product-atc.single_add_to_cart_button,
  .single-product .theme-btn-product-atc,
  .single-product .theme-add-to-cart-area .single_add_to_cart_button {
    font-size: 1rem !important; /* 16px — mín. cómodo para lectura en pantallas pequeñas */
    line-height: 1.4 !important;
    white-space: normal !important;
    height: auto !important;
    min-height: 2.75rem !important;
    padding: 0.75rem 1.25rem !important;
    text-align: center;
    width: 100%;
    flex: 1 1 auto;
  }
}

/* Hide "View cart" after AJAX add */
.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 lock during AJAX */
.ajax_add_to_cart.theme-btn-loading {
  opacity: 0.6 !important;
  pointer-events: none !important;
  cursor: wait !important;
}

/* Quantity control (Lovable: border rounded, px-3 py-3 on +/-, min 40px center) */
.single-product .theme-quantity-wrapper {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--color-border);
  border-radius: 0.25rem; /* rounded (Lovable) */
  overflow: hidden;
  height: 2.75rem; /* h-11, match primary button */
  min-height: 2.75rem;
  max-height: 2.75rem;
  flex: 0 0 auto; /* do not grow — keeps button wide */
  box-sizing: border-box;
}
.single-product .theme-qty-minus,
.single-product .theme-qty-plus {
  width: 2.75rem;
  min-width: 2.75rem;
  max-width: 2.75rem;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-foreground);
  font-size: 1.125rem;
  line-height: 1;
  transition: background-color 0.15s ease;
  font-family: var(--font-body);
  flex-shrink: 0;
}
.single-product .theme-qty-minus:hover,
.single-product .theme-qty-plus:hover { background-color: var(--color-secondary); }

/* Centro numérico más ancho, tipografía alineada al CTA (producto) */
.single-product .theme-qty-input {
  flex: 0 0 auto;
  width: 3.5rem; /* ~56px: lectura y 2+ dígitos */
  min-width: 3.5rem;
  max-width: 3.5rem;
  text-align: center;
  border: none;
  border-left: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
  background: none;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-foreground);
  outline: none;
  -moz-appearance: textfield;
  padding: 0.5rem 0.25rem;
  box-sizing: content-box;
}
.single-product .theme-qty-input::-webkit-inner-spin-button,
.single-product .theme-qty-input::-webkit-outer-spin-button { -webkit-appearance: none; }

/* Default quantity (non single-product) */
.theme-quantity-wrapper {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--color-border);
  border-radius: 0.5rem;
  overflow: hidden;
  height: var(--btn-height);
}
.theme-qty-minus,
.theme-qty-plus {
  width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-foreground);
  font-size: 1.25rem;
  transition: background-color 0.15s ease;
  font-family: var(--font-body);
}
.theme-qty-minus:hover,
.theme-qty-plus:hover { background-color: var(--color-secondary); }

.theme-qty-input {
  width: 48px;
  text-align: center;
  border: none;
  border-left: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
  background: none;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--color-foreground);
  outline: none;
  -moz-appearance: textfield;
}
.theme-qty-input::-webkit-inner-spin-button,
.theme-qty-input::-webkit-outer-spin-button { -webkit-appearance: none; }

/* WooCommerce product page layout */
.single-product .theme-product-back {
  padding-block: 1.5rem; /* py-6 */
}
.single-product .theme-product-page {
  padding-top: 0;
  padding-bottom: 0;
}
@media (prefers-reduced-motion: no-preference) {
  .single-product .theme-product-columns {
    animation: productPageIn 0.5s var(--transition-smooth) both;
  }
}
@keyframes productPageIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}

.single-product .theme-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem; /* ~ mr-2 on icon */
  font-family: var(--font-body);
  font-size: 0.875rem; /* text-sm */
  color: var(--color-muted-fg);
  margin-bottom: 0;
  transition: color 0.2s ease;
  text-decoration: none;
  font-weight: 400;
}
.single-product .theme-back-link:hover { color: var(--color-foreground); }
.single-product .theme-back-link svg { flex-shrink: 0; }

.theme-product-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem; /* gap-10 */
  padding-bottom: 5rem; /* pb-20 */
}
@media (min-width: 1024px) {
  .theme-product-columns {
    grid-template-columns: 1fr 1fr;
    gap: 4rem; /* gap-16 */
  }
}

/* Product image gallery (Lovable: rounded-lg main, space-y-4) */
.single-product .theme-product-gallery {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.theme-product-gallery-main {
  aspect-ratio: 3/4;
  background-color: var(--color-secondary);
  border-radius: 0.5rem; /* rounded-lg */
  overflow: hidden;
  cursor: pointer;
  margin-bottom: 0;
}
.theme-product-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--transition-smooth);
}
.theme-product-gallery-main:hover img { transform: scale(1.02); }

.theme-product-thumbnails {
  display: flex;
  gap: 0.75rem;
}

.theme-product-thumb {
  width: 80px;
  height: 80px;
  border-radius: 0.375rem;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s, border-color 0.2s;
}
.theme-product-thumb:hover { opacity: 1; }
.theme-product-thumb.is-active { border-color: var(--color-foreground); opacity: 1; }
.theme-product-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Product info (Lovable: col lg:py-10) */
.single-product .theme-product-info {
  padding-top: 0;
  padding-bottom: 0;
}
@media (min-width: 1024px) {
  .single-product .theme-product-info {
    padding-top: 2.5rem; /* py-10 */
    padding-bottom: 2.5rem;
  }
}

.theme-product-cat {
  font-family: var(--font-body);
  font-size: 0.75rem; /* text-xs */
  letter-spacing: 0.2em; /* tracking-[0.2em] */
  text-transform: uppercase;
  color: var(--color-muted-fg);
  display: block;
  margin-bottom: 0;
}

.theme-product-title {
  font-family: var(--font-display);
  font-size: 1.5rem; /* text-2xl */
  font-weight: 500; /* font-medium (overrides h1) */
  line-height: 1.25;
  color: var(--color-foreground);
  margin-top: 0.5rem; /* mt-2 after category line */
  margin-bottom: 1rem; /* mb-4 */
}
@media (min-width: 768px) {
  .theme-product-title { font-size: 1.875rem; } /* md:text-3xl */
}

.single-product .theme-product-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.125rem 0.5rem;
  font-size: 1.25rem; /* text-xl Lovable */
  line-height: 1.4;
  margin-bottom: 0.5rem; /* mb-2 */
  font-family: var(--font-body);
  color: var(--color-foreground);
  font-weight: 400;
}
.single-product .theme-product-price__display {
  font-size: 1.25rem;
  font-weight: 400;
}
.single-product .theme-product-price__suffix {
  color: var(--color-foreground);
  font-size: 1.25rem;
  font-weight: 400;
}
.single-product .theme-product-price__sub {
  font-size: 0.875rem; /* text-sm */
  color: var(--color-muted-fg);
  font-weight: 400;
  width: 100%;
  flex-basis: 100%;
  margin-top: 0.125rem;
}
@media (min-width: 480px) {
  .single-product .theme-product-price__sub {
    width: auto;
    flex-basis: auto;
    margin-top: 0;
    margin-left: 0.25rem;
  }
}

.theme-product-seats {
  font-family: var(--font-body);
  font-size: 0.875rem; /* text-sm */
  color: var(--color-muted-fg);
  margin-bottom: 1.5rem; /* mb-6 */
}

.theme-sold-out-pill {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: var(--color-muted);
  color: var(--color-muted-fg);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.single-product .theme-product-description {
  font-family: var(--font-body);
  color: var(--color-muted-fg);
  line-height: 1.75; /* leading-relaxed */
  margin-bottom: 2rem; /* mb-8 */
  white-space: pre-line;
}
.single-product .theme-product-description p:first-child { margin-top: 0; }
.single-product .theme-product-description p:last-child { margin-bottom: 0; }

/* Variants (Lovable VariantSelector: label text-sm font-medium mb-3, options rounded) */
.single-product .variations .label > label,
.single-product .variations .label label {
  font-size: 0.875rem;
  font-weight: 500;
  display: block;
  margin-bottom: 0.75rem; /* mb-3 */
  color: var(--color-foreground);
  text-align: left;
}
.single-product .theme-variants { margin-bottom: 1.5rem; } /* mb-6 */
.theme-variants { margin-bottom: 1.5rem; }
.theme-variants-label {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-foreground);
  display: block;
  margin-bottom: 0.75rem;
}
.single-product .theme-variants-list { gap: 0.5rem; }
.theme-variants-list { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.single-product .theme-variant-btn {
  padding: 0.5rem 1rem; /* py-2 px-4 */
  font-size: 0.875rem;
  border: 1px solid var(--color-border);
  border-radius: 0.25rem; /* rounded (not md) */
}
.theme-variant-btn {
  padding: 0.5rem 1rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  border: 1px solid var(--color-border);
  border-radius: 0.375rem;
  background: none;
  color: var(--color-foreground);
  cursor: pointer;
  transition: border-color 0.15s, background-color 0.15s, color 0.15s;
}
.single-product .theme-variant-btn:hover { border-color: var(--color-foreground); }
.theme-variant-btn:hover { border-color: var(--color-foreground); }
.single-product .theme-variant-btn.is-selected,
.theme-variant-btn.is-selected {
  background-color: var(--color-foreground);
  color: var(--color-background);
  border-color: var(--color-foreground);
}

/* Payment note (Lovable: bg-secondary rounded-lg p-4 mb-6) */
.single-product .theme-payment-note {
  background-color: var(--color-secondary);
  border-radius: 0.5rem; /* rounded-lg */
  padding: 1rem; /* p-4 */
  margin-bottom: 1.5rem; /* mb-6 */
  margin-top: 0;
}
.single-product .theme-payment-note p {
  font-family: var(--font-body);
  font-size: 0.75rem; /* text-xs */
  line-height: 1.5;
  color: var(--color-muted-fg);
  text-align: center;
  margin: 0;
}
.theme-payment-note {
  background-color: var(--color-secondary);
  border-radius: 0.5rem;
  padding: 1rem;
  margin-bottom: 1.5rem;
}
.theme-payment-note p {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--color-muted-fg);
  text-align: center;
}

/* Product details (Lovable: border-t pt-8, h3 text-sm font-medium mb-4, list space-y-2, bullet 1.5) */
.single-product .theme-product-details {
  border-top: 1px solid var(--color-border);
  padding-top: 2rem; /* pt-8 */
}
.single-product .theme-product-details h3 {
  font-family: var(--font-body);
  font-size: 0.875rem; /* text-sm */
  font-weight: 500; /* font-medium */
  margin-bottom: 1rem; /* mb-4 */
  margin-top: 0;
  color: var(--color-foreground);
}
.single-product .theme-product-details .woocommerce-product-details__short-description ul,
.theme-product-details ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem; /* space-y-2 */
}
.single-product .theme-product-details .woocommerce-product-details__short-description li,
.theme-product-details li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem; /* Lovable: mr-3 to bullet, items-start */
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--color-muted-fg);
  font-family: var(--font-body);
}
/* Lovable-style dot bullets: short-desc <ul> or .theme-class-details-bullets (text • split in PHP) */
.single-product .theme-class-details-bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem; /* space-y-2 */
}
.single-product .theme-class-details-bullets > li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.single-product .theme-class-details-bullets > li::before {
  content: '';
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background-color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 0.4rem;
}
.single-product .theme-product-details .woocommerce-product-details__short-description ul:not(.theme-class-details-bullets) > li::before {
  content: '';
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background-color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 0.5rem;
}
.single-product .theme-product-details .woocommerce-product-details__short-description li p,
.theme-product-details .woocommerce-product-details__short-description li p {
  margin: 0;
}
/* When details use theme-detail-bullet spans */
.single-product .theme-product-details .theme-detail-bullet { margin-top: 0.5rem; }
.theme-product-details { border-top: 1px solid var(--color-border); padding-top: 2rem; }
.theme-product-details h3 { font-size: 0.875rem; font-weight: 500; margin-bottom: 1rem; color: var(--color-foreground); }
.theme-detail-bullet {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 0.5rem;
}

/* Related products (Lovable: py-20 border-t, title text-xl md:text-2xl font-medium mb-10) */
.single-product .theme-related-products {
  padding-block: 5rem; /* py-20 */
  border-top: 1px solid var(--color-border);
  margin-top: 0;
}
.single-product .theme-related-title {
  font-family: var(--font-display);
  font-size: 1.25rem; /* text-xl */
  font-weight: 500;
  line-height: 1.3;
  color: var(--color-foreground);
  margin: 0 0 2.5rem; /* mb-10 */
}
@media (min-width: 768px) {
  .single-product .theme-related-title { font-size: 1.5rem; } /* md:text-2xl */
}
.single-product .theme-related-grid {
  gap: 1.5rem; /* gap-6 */
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 1024px) {
  .single-product .theme-related-grid { gap: 2rem; } /* gap-8 */
}
.theme-related-products { padding-block: 5rem; border-top: 1px solid var(--color-border); }
.theme-related-title { font-size: clamp(1.25rem, 2.5vw, 1.5rem); margin-bottom: 2.5rem; }
.theme-related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .theme-related-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

/* Lightbox dialog */
.theme-product-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background-color: rgba(0,0,0,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.theme-product-lightbox img { max-height: 90vh; border-radius: 0.5rem; }
.theme-lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.theme-product-lightbox[hidden] { display: none; }

/* ============================================================
   WOOCOMMERCE NOTICES
   ============================================================ */
.single-product .woocommerce-message,
.single-product .woocommerce-info { display: none; }
#theme-cart-drawer .woocommerce-message { display: none; }

/* WC notices styling on other pages */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  font-family: var(--font-body);
  font-size: 0.875rem;
  border-radius: 0.5rem;
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
  list-style: none;
}
.woocommerce-message { background-color: rgba(176,90,47,0.1); border-left: 3px solid var(--color-primary); }
.woocommerce-info { background-color: rgba(44,82,130,0.1); border-left: 3px solid var(--color-accent); }
.woocommerce-error { background-color: rgba(220,38,38,0.1); border-left: 3px solid #dc2626; }

/* ============================================================
   WOOCOMMERCE ARCHIVE
   ============================================================ */
.theme-archive-section {
  background-color: var(--color-card);
  padding-block: 5rem;
}
.theme-archive-header {
  text-align: center;
  margin-bottom: 3rem;
}

/* ============================================================
   CART DRAWER
   ============================================================ */
#theme-cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  max-width: 448px;
  background-color: var(--color-background);
  z-index: 60;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-elevated);
  transform: translateX(100%);
  transition: transform 0.35s var(--transition-smooth);
}
body.cart-open #theme-cart-drawer { transform: translateX(0); }

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

#theme-cart-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(42, 26, 14, 0.2);
  z-index: 59;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
body.cart-open #theme-cart-overlay {
  opacity: 1;
  pointer-events: auto;
}

.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: 500;
}

.cart-drawer-title-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.cart-drawer-header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cart-empty-btn {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--color-muted-fg);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s ease;
}
.cart-empty-btn:hover { color: #dc2626; }

.cart-close-btn {
  padding: 0.25rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-foreground);
  transition: opacity 0.2s ease;
  display: flex;
  align-items: center;
}
.cart-close-btn:hover { opacity: 0.6; }

.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
}

.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-text {
  font-family: var(--font-body);
  color: var(--color-muted-fg);
  margin-bottom: 1.5rem;
}

.cart-continue-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.625rem 1.5rem;
  border: 1px solid var(--color-border);
  border-radius: var(--btn-radius);
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-foreground);
  cursor: pointer;
  background: none;
  transition: border-color 0.2s;
}
.cart-continue-btn:hover { border-color: var(--color-foreground); }

/* Cart items */
.cart-items-list { display: flex; flex-direction: column; gap: 1.5rem; }

.cart-item {
  display: flex;
  gap: 1rem;
}

.cart-item-img-link {
  width: 80px;
  height: 96px;
  background-color: var(--color-secondary);
  border-radius: 0.5rem;
  overflow: hidden;
  flex-shrink: 0;
  display: block;
}
.cart-item-img-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-details { flex: 1; min-width: 0; }

.cart-item-name {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-foreground);
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: opacity 0.2s;
  text-decoration: none;
  margin-bottom: 0.125rem;
}
.cart-item-name:hover { opacity: 0.7; }

.cart-item-price {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-muted-fg);
  margin-bottom: 0.25rem;
}

.cart-item-meta {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--color-muted-fg);
  margin-bottom: 0.75rem;
}

.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.cart-qty-btn {
  padding: 0.25rem;
  background-color: none;
  border: none;
  cursor: pointer;
  color: var(--color-foreground);
  border-radius: 0.25rem;
  transition: background-color 0.15s;
  display: flex;
  align-items: center;
}
.cart-qty-btn:hover { background-color: var(--color-secondary); }

.cart-item-qty {
  font-family: var(--font-body);
  font-size: 0.875rem;
  width: 24px;
  text-align: center;
}

.cart-remove-btn {
  margin-left: auto;
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--color-muted-fg);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}
.cart-remove-btn:hover { color: var(--color-foreground); }

/* Cart footer */
.cart-drawer-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-family: var(--font-body);
  font-size: 0.875rem;
}

.cart-subtotal-label { color: var(--color-muted-fg); }
.cart-subtotal-value { font-weight: 500; }

.cart-shipping-note {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--color-muted-fg);
}

/* Lovable CartDrawer: Button w-full, h-11, rounded-md, text-sm, px-8, bg-primary, hover:primary/90 */
.cart-checkout-btn {
  display: inline-flex;
  width: 100%;
  min-height: 2.75rem; /* h-11 */
  height: 2.75rem;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  gap: 0.5rem; /* gap-2 */
  padding: 0 2rem; /* px-8 */
  background-color: var(--color-primary);
  color: var(--color-primary-fg);
  border-radius: 0.375rem; /* rounded-md, no píldora */
  font-family: var(--font-body);
  font-size: 0.875rem; /* text-sm */
  font-weight: 500; /* font-medium */
  line-height: 1.25rem;
  text-decoration: none;
  white-space: nowrap;
  border: 2px solid transparent;
  transition: filter 0.2s ease, background-color 0.2s ease, opacity 0.2s ease;
}
.cart-checkout-btn:hover { filter: brightness(0.92); }

/* ============================================================
   WOOCOMMERCE — MY ACCOUNT (formulario de login, tablero)
   ============================================================ */
/* Aire bajo el login / formularios; suma a .container-wide.py-20 (véase abajo) */
body.woocommerce-account .site-main {
  padding-bottom: 3.5rem;
}

/* ============================================================
   WOOCOMMERCE CHECKOUT
   ============================================================ */
body.woocommerce-checkout .site-main {
  padding-top: calc(var(--header-pad) + 2rem);
  padding-bottom: 4rem;
}

body.woocommerce-checkout .entry-content {
  max-width: 100%;
}

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: 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-card);
  border-radius: 1rem;
  padding: 2rem;
}

body.woocommerce-checkout .wc-block-components-text-input input,
body.woocommerce-checkout .wc-block-components-select select {
  width: 100% !important;
  max-width: none !important;
  border: 1px solid var(--color-border);
  border-radius: 0.5rem;
  background-color: var(--color-background);
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-foreground);
}

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;
}

body.woocommerce-checkout .page-title {
  font-size: clamp(1.75rem, 4vw, 3rem);
  margin-bottom: 2rem;
  font-family: var(--font-display);
}

/* ============================================================
   WOOCOMMERCE THANK YOU PAGE
   ============================================================ */
body.theme-thankyou-page { overflow-x: hidden; }

body.theme-thankyou-page .woocommerce-order {
  font-family: var(--font-body);
}

body.theme-thankyou-page .woocommerce-order h2,
body.theme-thankyou-page .woocommerce-order-details__title {
  font-family: var(--font-display);
  padding-bottom: 1rem;
}

body.theme-thankyou-page .woocommerce-order-overview {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  background-color: var(--color-card);
  border-radius: 1rem;
  padding: 1.5rem 2rem;
  margin-bottom: 2rem;
  list-style: none;
}

body.theme-thankyou-page .woocommerce-order-overview li {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-muted-fg);
}

body.theme-thankyou-page .woocommerce-order-details table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}

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;
}

body.theme-thankyou-page .woocommerce-customer-details address {
  max-width: 480px;
  overflow-wrap: break-word;
}

/* ============================================================
   VARIABLE PRODUCTS
   ============================================================ */
.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; }

.theme-attr-select-hidden { display: none !important; }

/* ============================================================
   PRODUCT CARD — PATTERN A overlay positioning (Section 31.3)
   ALL positioning lives here, never inline.
   ============================================================ */
.theme-product-card { position: relative; }
.theme-card-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: auto;
}
.theme-product-card * { pointer-events: none; }
.theme-product-quick-add {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  pointer-events: auto;
}
.theme-card-link,
.theme-product-quick-add { pointer-events: auto; }

/* ============================================================
   CONTENT PRODUCT — WC archive product list items
   ============================================================ */
.theme-product-grid.woocommerce ul.products,
ul.products.theme-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  list-style: none;
}
@media (max-width: 1023px) {
  .theme-product-grid.woocommerce ul.products,
  ul.products.theme-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 639px) {
  .theme-product-grid.woocommerce ul.products,
  ul.products.theme-product-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   PRODUCT CARD — equal height grid
   ============================================================ */
.theme-product-grid li.product,
.theme-product-card-wrap {
  align-self: stretch;
}

/* ============================================================
   QUICK ADD check icon state
   ============================================================ */
.theme-product-quick-add.is-added .icon-plus-quick  { display: none; }
.theme-product-quick-add.is-added .icon-check-quick { display: block !important; }

/* ============================================================
   PRODUCT CARD link display fix
   ============================================================ */
.theme-product-card__image-link {
  display: block;
  overflow: hidden;
}
.theme-product-card__image-link img {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  max-width: none;
}

/* ============================================================
   FRONT PAGE PRODUCT GRID — scoped 3-col
   ============================================================ */
#shop-product-grid {
  list-style: none;
}

