:root {
  --wood: #3D1E16;
  --wood-dark: #24100B;
  --wood-light: #F5ECE9;
  --red: #A61C1C;
  --gold: #E1B345;
  --dark: #1C0B08;
  --white: #fff;
  --gray: #666;
  --radius: 16px;
  --shadow: 0 4px 24px rgba(36, 16, 11, 0.1);
  --shadow-lg: 0 16px 48px rgba(36, 16, 11, 0.15);
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "DM Sans", system-ui, sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 20px; }
body {
  font-family: var(--font-sans);
  color: #333;
  background: var(--wood-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.no-scroll { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }
.hidden { display: none !important; }

/* Reveal — desativado (sem rastros de animacao) */
.reveal { opacity: 1; transform: none; }
.reveal.visible { opacity: 1; transform: none; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: 12px; font-weight: 700; font-size: 0.95rem;
  border: none; cursor: pointer; transition: transform 0.25s var(--ease), box-shadow 0.25s, background 0.25s;
  position: relative; overflow: hidden;
}
.btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.btn-gold { background: var(--gold); color: var(--dark); }
.btn-gold:hover { background: #d4a83a; }
.btn-shop-cta {
  display: inline-flex; align-items: center; gap: 16px;
  margin-top: 24px; padding: 16px 22px 16px 18px;
  border-radius: 16px; text-decoration: none;
  background: linear-gradient(135deg, var(--wood-dark) 0%, #3d2018 100%);
  color: #fff; border: 2px solid rgba(212, 168, 67, 0.45);
  box-shadow: 0 10px 32px rgba(36, 16, 11, 0.25);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
  max-width: 100%;
}
.btn-shop-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(36, 16, 11, 0.32);
  border-color: var(--gold);
}
.btn-shop-cta-icon {
  display: flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  background: rgba(212, 168, 67, 0.2); font-size: 1.4rem;
}
.btn-shop-cta-text { display: flex; flex-direction: column; gap: 2px; text-align: left; flex: 1; min-width: 0; }
.btn-shop-cta-text strong { font-family: var(--font-serif); font-size: 1.1rem; color: var(--gold); font-weight: 700; }
.btn-shop-cta-text small { font-size: 0.78rem; color: rgba(255,255,255,0.75); font-weight: 500; }
.btn-shop-cta-arrow {
  font-size: 1.25rem; color: var(--gold); font-weight: 700; flex-shrink: 0;
  transition: transform 0.25s var(--ease);
}
.btn-shop-cta:hover .btn-shop-cta-arrow { transform: translateX(4px); }
.btn-buy {
  font-family: var(--font-serif);
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 16px 30px;
  border-radius: 14px;
  border: 2px solid rgba(36, 16, 11, 0.12);
  background: linear-gradient(145deg, #f0c850 0%, var(--gold) 45%, #c9a030 100%);
  color: var(--wood-dark);
  box-shadow: 0 6px 22px rgba(225, 179, 69, 0.45), inset 0 1px 0 rgba(255,255,255,0.45);
  gap: 10px;
  min-width: 240px;
}
.btn-buy:hover {
  background: linear-gradient(145deg, #f5d060 0%, #e8c24a 50%, #d4a83a 100%);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 10px 32px rgba(225, 179, 69, 0.55);
}
.btn-buy-plus {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--wood-dark); color: var(--gold);
  font-family: var(--font-sans); font-size: 1.15rem; font-weight: 800;
  line-height: 1; flex-shrink: 0;
}
.btn-buy-text { line-height: 1.2; }
.btn-buy-icon { width: 20px; height: 20px; flex-shrink: 0; stroke: var(--wood-dark); }
.btn-buy-compact {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 12px 14px;
  min-width: 0;
  flex: 1.2;
  border-radius: 12px;
}
.btn-wa {
  background: #25D366; color: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
}
.icon-wa { flex-shrink: 0; }
.icon-svg { width: 28px; height: 28px; stroke: currentColor; fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.icon-svg-fill { width: 28px; height: 28px; fill: currentColor; }
.card-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px; background: rgba(225, 179, 69, 0.12); color: var(--gold);
}
.card-icon .icon-svg { width: 20px; height: 20px; }
.contact-card strong { display: block; color: var(--gold); margin-bottom: 4px; font-size: 0.85rem; }
.cart-header-title {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-serif); font-size: 1.35rem; margin: 0;
}
.cart-header-title .icon-svg { width: 22px; height: 22px; stroke: var(--gold); }
.card-icon .icon-wa { color: #25D366; }
.cart-item-ph { font-size: 0.72rem; font-weight: 800; color: var(--wood); letter-spacing: 0.5px; }
.success-icon { margin-bottom: 8px; animation: successPop 0.5s var(--ease); display: flex; justify-content: center; }
.success-icon svg { width: 56px; height: 56px; color: #25D366; }
.gallery-block h3 { font-family: var(--font-serif); font-size: 1.15rem; color: var(--wood); margin-bottom: 14px; padding-bottom: 0; border-bottom: none; }
.btn-outline { background: transparent; border: 2px solid var(--wood); color: var(--wood); }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-full { width: 100%; margin-top: 8px; }
.btn-shine::after { display: none; }
.hover-glow { box-shadow: none !important; }

/* Section menu + scroll progress */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--gold), #f0d78c);
  z-index: 10001; pointer-events: none;
  transition: width 0.08s linear;
  box-shadow: 0 0 8px rgba(225, 179, 69, 0.5);
}
.section-menu {
  position: fixed; top: 16px; left: 16px; z-index: 9998;
}
.section-menu-btn {
  width: 46px; height: 46px; border-radius: 12px;
  border: 1px solid rgba(225, 179, 69, 0.35);
  background: rgba(36, 16, 11, 0.92);
  backdrop-filter: blur(10px);
  color: #fff; cursor: pointer; padding: 0;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.section-menu-btn:hover,
.section-menu-btn[aria-expanded="true"] {
  background: rgba(61, 30, 22, 0.95);
  border-color: rgba(225, 179, 69, 0.6);
}
.section-menu-lines {
  display: flex; flex-direction: column; gap: 5px; width: 20px;
}
.section-menu-lines span {
  display: block; height: 2px; width: 100%;
  background: var(--gold); border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.section-menu-btn[aria-expanded="true"] .section-menu-lines span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.section-menu-btn[aria-expanded="true"] .section-menu-lines span:nth-child(2) {
  opacity: 0;
}
.section-menu-btn[aria-expanded="true"] .section-menu-lines span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.section-menu-panel {
  position: absolute; top: calc(100% + 8px); left: 0;
  width: min(240px, 78vw);
  background: rgba(36, 16, 11, 0.98);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(225, 179, 69, 0.35);
  border-radius: 14px; padding: 8px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.22s;
  max-height: min(70vh, 420px); overflow-y: auto;
}
.section-menu-panel.open {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateY(0);
}
.section-nav { list-style: none; margin: 0; padding: 0; }
.section-nav li { margin: 0; }
.section-nav a {
  display: block; padding: 11px 14px; border-radius: 10px;
  color: rgba(255, 255, 255, 0.85); font-size: 0.9rem; font-weight: 500;
  border: 1px solid transparent;
  transition: color 0.2s, background 0.2s;
}
.section-nav a:hover {
  color: var(--gold); background: rgba(225, 179, 69, 0.12);
}
.section-nav a.active {
  color: var(--gold); font-weight: 700;
  background: rgba(225, 179, 69, 0.14);
  border-color: rgba(225, 179, 69, 0.28);
}
@media (max-width: 480px) {
  .section-menu { top: max(12px, env(safe-area-inset-top)); left: 12px; }
}

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(36, 16, 11, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(225, 179, 69, 0.15);
  transition: padding 0.3s, box-shadow 0.3s;
}
.site-header-minimal {
  position: absolute; top: 0; left: 0; right: 0;
  background: transparent; backdrop-filter: none;
  border-bottom: none; box-shadow: none;
}
.site-header-minimal .header-inner {
  padding: 10px 16px; justify-content: flex-start;
}
.site-header-minimal .brand-logo {
  height: 44px; max-width: 100px;
}
.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
  border-bottom-color: rgba(225, 179, 69, 0.3);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 12px 20px; max-width: 1140px; margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 12px; transition: transform 0.2s; }
.brand:hover { transform: scale(1.02); }
.brand-logo {
  width: auto; height: 52px; max-width: 120px;
  object-fit: contain; display: block;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.35));
}
.brand-name { display: block; font-family: var(--font-serif); font-size: 1.2rem; font-weight: 700; color: var(--gold); line-height: 1.2; }
.brand-tag { display: block; font-size: 0.65rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1.2px; }
.main-nav { display: flex; gap: 6px; }
.main-nav a {
  color: rgba(255,255,255,0.7); font-size: 0.85rem; font-weight: 500;
  padding: 8px 14px; border-radius: 8px; transition: all 0.25s;
}
.main-nav a:hover, .main-nav a.active { color: var(--gold); background: rgba(225,179,69,0.1); }
.main-nav .nav-buy { background: var(--gold); color: var(--dark) !important; font-weight: 700; }
.main-nav .nav-buy:hover { background: #d4a83a; color: var(--dark) !important; }
.main-nav .nav-featured { color: var(--gold); font-weight: 700; border: 1px solid rgba(225, 179, 69, 0.35); }
.main-nav .nav-featured:hover { background: rgba(225, 179, 69, 0.15); }
.hero .btn-outline-light {
  background: transparent; border: 2px solid rgba(255,255,255,0.5); color: #fff;
}
.hero .btn-outline-light:hover { border-color: var(--gold); color: var(--gold); background: rgba(225,179,69,0.08); }
.showcase-hero-product { border-top: none; }
.product-card-featured {
  border: 2px solid var(--gold);
  box-shadow: 0 8px 32px rgba(225, 179, 69, 0.2);
  position: relative;
}
.product-main-badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: var(--red); color: #fff; font-size: 0.72rem; font-weight: 700;
  padding: 6px 12px; border-radius: 99px; text-transform: uppercase; letter-spacing: 0.5px;
}
.cart-btn {
  position: relative; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  color: #fff; width: 44px; height: 44px; border-radius: 12px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s;
}
.cart-btn:hover { background: rgba(225,179,69,0.25); transform: scale(1.05); }
.cart-badge {
  position: absolute; top: -4px; right: -4px;
  background: var(--red); color: #fff; font-size: 0.65rem; font-weight: 700;
  min-width: 18px; height: 18px; border-radius: 99px;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s;
}
.cart-badge.pop { animation: badgePop 0.35s var(--ease); }
@keyframes badgePop { 0%,100%{transform:scale(1)} 50%{transform:scale(1.35)} }

/* Hero */
.hero {
  position: relative; min-height: 92vh; display: flex; align-items: center;
  overflow: hidden; color: #fff;
}
.hero-bg {
  position: absolute; inset: -5%;
  background-size: cover; background-position: center;
  transition: transform 0.15s ease-out;
  will-change: transform;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(36,16,11,0.92) 0%, rgba(61,30,22,0.78) 45%, rgba(28,11,8,0.88) 100%);
}
.hero-particles { display: none; }
.hero-content {
  position: relative; z-index: 1; text-align: center;
  padding: 100px 20px 80px; max-width: 860px; margin: 0 auto;
}
.hero-kicker {
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 4px;
  color: var(--gold); font-weight: 600; margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font-serif); font-size: clamp(2.8rem, 7vw, 4.5rem);
  font-weight: 700; line-height: 1.05; margin-bottom: 16px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.3);
  background: linear-gradient(135deg, #fff 0%, var(--gold) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-headline {
  font-family: var(--font-serif); font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 600; margin-bottom: 20px; color: rgba(255,255,255,0.95);
}
.hero-headline em { color: var(--gold); font-style: italic; }
.hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,0.78); margin-bottom: 36px;
  max-width: 620px; margin-left: auto; margin-right: auto; line-height: 1.75;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-bottom: 48px; }
.hero-scroll {
  display: inline-flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,0.5); font-size: 0.72rem; text-transform: uppercase;
  letter-spacing: 2px; animation: bounce 2s ease-in-out infinite;
}
.hero-scroll svg { opacity: 0.6; }
@keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(8px)} }

/* Highlights */
.highlights-section { padding: 80px 0; background: linear-gradient(180deg, #fff 0%, var(--wood-light) 100%); }
.highlights-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.highlight-card {
  background: #fff; border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid rgba(0,0,0,0.04);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
  position: relative;
}
.highlight-card:hover { box-shadow: var(--shadow-lg); }
.highlight-card.featured { border: 2px solid var(--gold); }
.highlight-badge {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  background: var(--gold); color: var(--dark); font-size: 0.68rem;
  font-weight: 700; padding: 5px 12px; border-radius: 99px;
}
.highlight-img { height: 220px; overflow: hidden; }
.highlight-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.highlight-card:hover .highlight-img img { transform: scale(1.08); }
.highlight-body { padding: 24px; }
.highlight-tag { font-size: 0.72rem; font-weight: 700; color: var(--red); text-transform: uppercase; letter-spacing: 1px; }
.highlight-body h3 { font-family: var(--font-serif); font-size: 1.35rem; color: var(--wood); margin: 8px 0; }
.highlight-body p { font-size: 0.88rem; color: var(--gray); margin-bottom: 16px; }
.highlight-price { font-size: 1.5rem; font-weight: 700; color: var(--red); margin-bottom: 16px; }
.highlight-price small { font-size: 0.75rem; color: var(--gray); font-weight: 500; }

/* Features */
.features { background: var(--wood-dark); padding: 56px 0; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.feature {
  text-align: center; padding: 28px 20px; border-radius: var(--radius);
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.35s var(--ease);
}
.feature:hover {
  background: rgba(225,179,69,0.08); border-color: rgba(225,179,69,0.2);
  transform: translateY(-6px);
}
.feature-icon {
  width: 52px; height: 52px; margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 14px; background: rgba(225, 179, 69, 0.12);
  color: var(--gold); transition: transform 0.3s;
}
.feature-icon .icon-svg { width: 26px; height: 26px; }
.feature:hover .feature-icon { transform: scale(1.08); }
.feature p { font-size: 0.85rem; color: rgba(255,255,255,0.65); }

/* Sections */
.section-kicker { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 2.5px; color: var(--red); font-weight: 700; margin-bottom: 8px; }
.section-kicker.light { color: var(--gold); }
.section-title { font-family: var(--font-serif); font-size: clamp(1.7rem, 3.5vw, 2.4rem); color: var(--wood); margin-bottom: 12px; line-height: 1.15; }
.section-title.light { color: #fff; }
.section-desc { color: var(--gray); margin-bottom: 32px; max-width: 560px; font-size: 1rem; }

/* Shop */
.shop-section { padding: 80px 0; background: linear-gradient(180deg, var(--wood-light) 0%, #fff 40%, var(--wood-light) 100%); }

.cart-toast,
.cart-mini-bar {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.cart-toast {
  position: fixed; bottom: 96px; left: 50%; transform: translateX(-50%) translateY(20px);
  z-index: 300; background: var(--wood-dark); color: #fff; padding: 14px 22px;
  border-radius: 12px; font-size: 0.9rem; font-weight: 600; box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transition: all 0.35s var(--ease);
  border: 1px solid rgba(225, 179, 69, 0.35); white-space: nowrap; max-width: 92vw;
}
.cart-toast.show { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }

.cart-fly-ball {
  position: fixed; z-index: 500; width: 32px; height: 32px;
  background: var(--gold); color: var(--dark); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 800; pointer-events: none;
  box-shadow: 0 4px 16px rgba(225, 179, 69, 0.5);
  transition: left 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), top 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.7s, opacity 0.7s;
}
.cart-fly-ball.fly { transform: scale(0.4); opacity: 0.85; }
.cart-fly-item {
  position: fixed; z-index: 500; width: 44px; height: 44px;
  border-radius: 12px; overflow: hidden; pointer-events: none;
  box-shadow: 0 8px 24px rgba(36, 16, 11, 0.35);
  border: 2px solid var(--gold);
  will-change: transform, left, top;
}
.cart-fly-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cart-fly-item.fly { transform: scale(0.35); opacity: 0.95; }
.cart-trail-svg {
  position: fixed; inset: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 499; overflow: visible;
}
.cart-trail-path {
  fill: none; stroke: var(--gold); stroke-width: 3; stroke-linecap: round;
  stroke-dasharray: 1; stroke-dashoffset: 1;
  filter: drop-shadow(0 0 6px rgba(225, 179, 69, 0.6));
  animation: cartTrailDraw 0.75s ease-out forwards;
}
@keyframes cartTrailDraw {
  to { stroke-dashoffset: 0; opacity: 0; }
}
.cart-trail-dot {
  position: fixed; width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold); pointer-events: none; z-index: 498;
  box-shadow: 0 0 10px rgba(225, 179, 69, 0.8);
  animation: cartTrailDot 0.55s ease-out forwards;
}
@keyframes cartTrailDot {
  0% { opacity: 0.9; transform: scale(1); }
  100% { opacity: 0; transform: scale(0.2); }
}
.cart-mini-bar {
  position: fixed; left: 50%; bottom: 88px; transform: translateX(-50%);
  z-index: 250; display: flex; align-items: center; gap: 16px;
  background: var(--wood-dark); color: #fff; padding: 12px 16px 12px 20px;
  border-radius: 16px; box-shadow: var(--shadow-lg);
  border: 1px solid rgba(225, 179, 69, 0.35); max-width: min(420px, 92vw);
  animation: miniBarIn 0.35s var(--ease);
}
@keyframes miniBarIn { from { opacity: 0; transform: translateX(-50%) translateY(16px); } to { opacity: 1; transform: translateX(-50%) translateY(0); } }
.cart-mini-text { display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 0; }
.cart-mini-text strong { font-size: 0.9rem; }
.cart-mini-text span { font-size: 0.85rem; color: var(--gold); font-weight: 600; }
@media (max-width: 480px) {
  .cart-mini-bar { flex-direction: column; align-items: stretch; text-align: center; bottom: 80px; }
  .cart-mini-bar .btn { width: 100%; }
  .btn-buy { font-size: 1rem; padding: 14px 22px; min-width: 0; width: 100%; }
  .btn-add { font-size: 0.82rem; padding: 11px 10px; }
  .product-actions-row { flex-direction: column; }
  .product-actions { flex-direction: column; }
  .btn-detail, .btn-add { flex: none; width: 100%; }
}
.cart-btn.cart-pulse,
.cart-float.cart-pulse {
  animation: cartPulseBtn 0.7s ease;
  box-shadow: 0 0 0 0 rgba(225, 179, 69, 0.6);
}
@keyframes cartPulseBtn {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(225, 179, 69, 0.6); }
  50% { transform: scale(1.12); box-shadow: 0 0 0 12px rgba(225, 179, 69, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(225, 179, 69, 0); }
}
.delivery-fee-note {
  font-size: 0.85rem; color: var(--wood); background: var(--wood-light);
  padding: 12px 14px; border-radius: 10px; margin-top: 4px;
}

.shop-header {
  display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between;
  gap: 20px; margin-bottom: 28px;
}
.shop-header .section-desc { margin-bottom: 0; max-width: 640px; line-height: 1.65; }
.shop-store {
  margin-top: 8px;
  background: #fff;
  border-radius: 28px;
  padding: 28px 24px 36px;
  box-shadow: 0 16px 48px rgba(36, 16, 11, 0.08);
  border: 1px solid rgba(212, 168, 67, 0.18);
}
.shop-departments {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}
.shop-dept-card {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px; border-radius: 16px;
  border: 1px solid rgba(212, 168, 67, 0.28);
  background: linear-gradient(145deg, #fffdf8 0%, #faf6ef 100%);
  cursor: pointer; text-align: left; transition: all 0.28s var(--ease);
  font-family: inherit;
}
.shop-dept-card:hover, .shop-dept-card.is-active {
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(212, 168, 67, 0.22);
  transform: translateY(-2px);
}
.shop-dept-card.is-active {
  background: linear-gradient(145deg, #fff8e8 0%, #f5ecd6 100%);
}
.shop-dept-icon { font-size: 1.75rem; line-height: 1; flex-shrink: 0; }
.shop-dept-text { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.shop-dept-text strong { font-size: 0.88rem; color: var(--wood-dark); line-height: 1.3; }
.shop-dept-text small { font-size: 0.75rem; color: var(--gray); line-height: 1.35; }
.shop-filter-wrap { margin-bottom: 32px; }
.shop-filter-label {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--gray); text-align: center; margin-bottom: 12px;
}
.shop-filter-bar {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
}
.shop-catalog { display: flex; flex-direction: column; gap: 48px; }
.shop-category-block { scroll-margin-top: 96px; }
.shop-category-block.is-hidden { display: none; }
.shop-category-head {
  margin-bottom: 22px; padding-bottom: 14px;
  border-bottom: 1px solid rgba(212, 168, 67, 0.28);
}
.shop-category-title-row {
  display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  margin-bottom: 6px;
}
.shop-category-count {
  font-size: 0.7rem; font-weight: 700; color: var(--wood);
  text-transform: uppercase; letter-spacing: 0.8px;
  background: rgba(212, 168, 67, 0.15); padding: 5px 12px; border-radius: 99px;
  white-space: nowrap;
}
.shop-category-head h3 {
  font-family: var(--font-serif); font-size: 1.45rem; color: var(--wood); margin: 0;
  display: flex; align-items: center; gap: 8px;
}
.shop-category-icon { font-size: 1.2rem; line-height: 1; }
.shop-category-desc { font-size: 0.9rem; color: var(--gray); margin: 0; line-height: 1.55; }
.shop-category-group {
  padding: 28px; border-radius: 24px;
  background: rgba(255, 255, 255, 0.72); border: 1px solid rgba(212, 168, 67, 0.22);
}
.shop-category-group.is-hidden { display: none; }
.shop-category-group-head {
  margin-bottom: 28px; padding-bottom: 18px;
  border-bottom: 2px solid rgba(36, 16, 11, 0.08);
}
.shop-category-group-head h2 {
  font-family: var(--font-serif); font-size: 1.85rem; color: var(--wood-dark); margin-bottom: 8px;
}
.shop-category-group-head p { font-size: 0.92rem; color: var(--gray); margin: 0; line-height: 1.55; }
.shop-category-group .shop-category-block { margin-bottom: 32px; }
.shop-category-group .shop-category-block:last-child { margin-bottom: 0; }
.shop-category-group .shop-category-head { border-bottom-color: rgba(212, 168, 67, 0.2); }
.shop-count {
  background: var(--wood-dark); color: var(--gold); font-size: 0.82rem; font-weight: 700;
  padding: 10px 18px; border-radius: 99px; white-space: nowrap;
  box-shadow: var(--shadow);
}

/* Product showcase sections */
.product-showcase {
  padding: 88px 0;
  background: var(--wood-light);
  position: relative;
  overflow: hidden;
}
.product-showcase::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(225,179,69,0.08), transparent 55%);
  pointer-events: none;
}
.product-showcase.showcase-energy {
  background: linear-gradient(135deg, #F3E2C4 0%, #E8CFA0 48%, #DFBF88 100%);
}
.product-showcase.showcase-energy::before {
  background:
    radial-gradient(ellipse at 88% 12%, rgba(225, 179, 69, 0.32), transparent 42%),
    radial-gradient(ellipse at 8% 88%, rgba(166, 28, 28, 0.08), transparent 38%);
}
.product-showcase.showcase-wellness {
  background: linear-gradient(135deg, #E4F0E8 0%, #D0E4D8 50%, #BDD9C8 100%);
}
.product-showcase.showcase-wellness::before {
  background: radial-gradient(ellipse at 12% 50%, rgba(72, 140, 90, 0.22), transparent 50%);
}
.product-showcase.showcase-mix {
  background: linear-gradient(145deg, #D9BC8E 0%, #C49A58 38%, #A8783A 100%);
}
.product-showcase.showcase-mix::before {
  background:
    radial-gradient(ellipse at 80% 18%, rgba(225, 179, 69, 0.38), transparent 52%),
    radial-gradient(ellipse at 12% 88%, rgba(61, 30, 22, 0.2), transparent 48%),
    radial-gradient(ellipse at 50% 50%, rgba(255, 255, 255, 0.06), transparent 60%);
}
.product-showcase.showcase-mix .showcase-content,
.product-showcase.showcase-mix .showcase-title { color: #2a1510; }
.product-showcase.showcase-mix .section-kicker { color: var(--red); }
.product-showcase.showcase-mix .showcase-tagline,
.product-showcase.showcase-mix .showcase-desc,
.product-showcase.showcase-mix .showcase-list,
.product-showcase.showcase-mix .showcase-list li,
.product-showcase.showcase-mix .showcase-ing,
.product-showcase.showcase-mix .showcase-usage { color: #3d2818; }
.product-showcase.showcase-mix .showcase-price { color: var(--wood-dark); }
.product-showcase.showcase-mix .showcase-price span { color: #5c4030; }
.product-showcase.showcase-mix h4 { color: #2a1510; }
.product-showcase.showcase-dark {
  background: linear-gradient(135deg, var(--wood-dark) 0%, #2a1510 100%);
  color: #fff;
}
.product-showcase.showcase-accent {
  background: linear-gradient(135deg, #1a3d2e 0%, #0f2419 100%);
  color: #fff;
}
.showcase-grid {
  display: grid; grid-template-columns: 1fr 1.15fr; gap: 48px; align-items: center;
  position: relative; z-index: 1;
}
.showcase-grid.reverse { direction: rtl; }
.showcase-grid.reverse > * { direction: ltr; }
.showcase-img {
  position: relative; border-radius: 24px; overflow: hidden;
  box-shadow: var(--shadow-lg); background: #f0ebe8;
}
.showcase-img img {
  width: 100%; height: 100%; min-height: 420px; object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.showcase-img:hover img { transform: scale(1.03); }
.showcase-badge {
  position: absolute; top: 20px; left: 20px;
  background: var(--gold); color: var(--dark); font-size: 0.78rem; font-weight: 700;
  padding: 8px 16px; border-radius: 99px; box-shadow: var(--shadow);
}
.showcase-badge.featured { background: var(--red); color: #fff; }
.showcase-content h4 {
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--wood); margin: 22px 0 10px;
}
.showcase-content h4.light { color: var(--gold); }
.showcase-title {
  font-family: var(--font-serif); font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--wood); line-height: 1.15; margin-bottom: 10px;
}
.showcase-title.light { color: #fff; }
.showcase-tagline {
  font-size: 1rem; font-weight: 600; color: var(--red); margin-bottom: 14px; line-height: 1.5;
}
.showcase-tagline.light { color: rgba(255,255,255,0.85); }
.showcase-price {
  font-size: 2.1rem; font-weight: 700; color: var(--red); margin-bottom: 18px;
}
.showcase-price.light { color: var(--gold); }
.showcase-price span { font-size: 0.95rem; color: var(--gray); font-weight: 500; }
.showcase-price.light span { color: rgba(255,255,255,0.6); }
.showcase-desc {
  font-size: 0.95rem; color: #444; line-height: 1.75; margin-bottom: 8px;
}
.showcase-desc.light { color: rgba(255,255,255,0.82); }
.showcase-list { list-style: none; margin-bottom: 8px; }
.showcase-list li {
  font-size: 0.9rem; color: #555; padding: 7px 0 7px 24px; position: relative; line-height: 1.55;
}
.showcase-list.light li { color: rgba(255,255,255,0.78); }
.showcase-list.compact li { padding-left: 0; }
.showcase-list.compact li::before { display: none; }
.showcase-list li::before {
  content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 700;
}
.showcase-ing {
  font-size: 0.9rem; color: #555; line-height: 1.6; margin-bottom: 8px;
}
.showcase-usage {
  font-size: 0.88rem; color: #555; background: rgba(225,179,69,0.12);
  padding: 14px 18px; border-radius: 12px; border-left: 4px solid var(--gold);
  margin: 16px 0 24px; line-height: 1.6;
}
.showcase-usage.light {
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.82); border-left-color: var(--gold);
}
.showcase-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
.showcase-actions .btn-buy { min-width: 260px; }
.btn-outline-light {
  background: transparent; border: 2px solid rgba(255,255,255,0.45); color: #fff;
}
.btn-outline-light:hover { border-color: var(--gold); color: var(--gold); background: rgba(225,179,69,0.08); }

@media (max-width: 900px) {
  .showcase-grid, .showcase-grid.reverse { grid-template-columns: 1fr; direction: ltr; gap: 32px; }
  .showcase-img img { min-height: 280px; }
  .product-showcase { padding: 64px 0; }
}

/* Product tabs */
.product-tabs {
  display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px;
  background: #fff; padding: 10px; border-radius: 16px; box-shadow: var(--shadow);
}
.product-tab {
  flex: 1; min-width: 140px; padding: 14px 18px; border: 2px solid transparent;
  border-radius: 12px; background: var(--wood-light); font-family: var(--font-sans);
  font-size: 0.88rem; font-weight: 700; color: var(--wood); cursor: pointer;
  transition: all 0.3s var(--ease);
}
.product-tab:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.product-tab.active {
  background: var(--wood-dark); color: var(--gold); border-color: var(--gold);
  box-shadow: var(--shadow);
}

.product-tab-panels { min-height: 400px; }
.product-tab-panel { display: none; animation: fadeIn 0.4s var(--ease); }
.product-tab-panel.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

.tab-panel-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 36px;
  background: #fff; border-radius: 24px; padding: 32px; box-shadow: var(--shadow-lg);
  border: 1px solid rgba(225,179,69,0.15);
}
.tab-panel-img { border-radius: 20px; overflow: hidden; background: #f0ebe8; }
.tab-panel-img img { width: 100%; height: 100%; min-height: 360px; object-fit: cover; }
.tab-panel-content h3 {
  font-family: var(--font-serif); font-size: 1.6rem; color: var(--wood);
  margin-bottom: 8px; line-height: 1.2;
}
.tab-tagline { color: var(--red); font-weight: 600; font-size: 0.95rem; margin-bottom: 12px; }
.tab-price { font-size: 2rem; font-weight: 700; color: var(--red); margin-bottom: 16px; }
.tab-price span { font-size: 0.9rem; color: var(--gray); font-weight: 500; }
.tab-desc { font-size: 0.95rem; color: #444; line-height: 1.7; margin-bottom: 20px; }
.tab-panel-content h4 {
  font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--wood); margin: 18px 0 10px;
}
.tab-list { list-style: none; margin-bottom: 8px; }
.tab-list li {
  font-size: 0.88rem; color: #555; padding: 6px 0 6px 22px; position: relative; line-height: 1.5;
}
.tab-list li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.tab-usage {
  font-size: 0.88rem; color: #555; background: var(--wood-light);
  padding: 14px 16px; border-radius: 12px; border-left: 4px solid var(--gold);
}
.tab-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.tab-actions .btn { flex: 1; min-width: 180px; }

.shop-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  margin-top: 40px; padding-top: 32px; border-top: 1px solid rgba(0,0,0,0.08);
}
.shop-steps .step {
  text-align: center; padding: 16px; background: #fff; border-radius: 14px;
  box-shadow: var(--shadow); transition: transform 0.25s;
}
.shop-steps .step:hover { transform: translateY(-4px); }
.shop-steps .step span {
  display: inline-flex; width: 32px; height: 32px; align-items: center; justify-content: center;
  background: var(--gold); color: var(--dark); font-weight: 700; border-radius: 50%; margin-bottom: 8px;
}
.shop-steps .step p { font-size: 0.82rem; color: var(--gray); font-weight: 600; }

.checkout-note {
  font-size: 0.75rem; color: var(--gray); text-align: center; margin-top: 10px; line-height: 1.5;
}
.checkout-payment {
  font-size: 0.82rem; font-weight: 600; color: var(--wood); margin-bottom: 12px;
}

@media (max-width: 768px) {
  .shop-store { padding: 20px 16px 28px; border-radius: 20px; }
  .shop-departments { grid-template-columns: 1fr; }
  .shop-dept-card { padding: 14px 16px; }
  .product-actions-row { flex-direction: column; }
  .product-actions { flex-direction: column; }
  .btn-detail, .btn-add-cart { width: 100%; flex: none; }
  .btn-shop-cta { width: 100%; }
}
@media (max-width: 768px) {
  .tab-panel-grid { grid-template-columns: 1fr; padding: 20px; }
  .tab-panel-img img { min-height: 240px; }
  .shop-steps { grid-template-columns: repeat(2, 1fr); }
  .product-tab { min-width: 100%; }
}
.cat-btn {
  padding: 0; border: none; background: none; cursor: pointer;
}
.cat-btn span {
  display: block; padding: 11px 18px; border-radius: 99px;
  border: 1px solid rgba(212, 168, 67, 0.35); background: #fff; font-size: 0.82rem; font-weight: 600;
  color: var(--wood); transition: all 0.3s var(--ease);
}
.cat-btn:hover span { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.cat-btn.active span { background: var(--wood-dark); color: var(--gold); border-color: var(--wood-dark); box-shadow: var(--shadow); }
.shop-loading { text-align: center; padding: 48px; color: var(--gray); }
.loader {
  width: 40px; height: 40px; border: 3px solid #eee; border-top-color: var(--gold);
  border-radius: 50%; margin: 0 auto 16px; animation: spin 0.8s linear infinite;
}
@keyframes spin { to{transform:rotate(360deg)} }
.shop-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px;
  min-height: 120px;
}
.shop-grid .product-card { opacity: 1; transform: none; }
.product-card.visible { opacity: 1; transform: translateY(0); }

.product-card-shop {
  background: #fff; border-radius: 22px; overflow: hidden;
  box-shadow: 0 8px 28px rgba(36, 16, 11, 0.07);
  border: 1px solid rgba(212, 168, 67, 0.12);
  display: flex; flex-direction: column; position: relative;
  transition: box-shadow 0.35s var(--ease), transform 0.35s var(--ease);
}
.product-card-shop:hover {
  box-shadow: 0 16px 40px rgba(36, 16, 11, 0.12);
  transform: translateY(-4px);
}
.product-card-featured {
  border-color: rgba(212, 168, 67, 0.45);
  box-shadow: 0 12px 36px rgba(212, 168, 67, 0.18);
}
.product-card {
  background: #fff; border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid rgba(0,0,0,0.04);
  display: flex; flex-direction: column; position: relative;
  transition: box-shadow 0.35s var(--ease);
  will-change: transform;
}
.product-card:hover { box-shadow: var(--shadow-lg); }
.product-shine { display: none; }
.product-img-wrap { position: relative; height: 220px; overflow: hidden; background: #f0ebe8; }
.product-img-placeholder {
  display: flex; align-items: center; justify-content: center; width: 100%; height: 100%;
  font-family: var(--font-serif); font-size: 2rem; color: #D4A843;
}
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.product-card:hover .product-img-wrap img { transform: scale(1.06); }
.product-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(36,16,11,0.5) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.3s;
}
.product-card:hover .product-img-overlay { opacity: 1; }
.product-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.product-cat {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: rgba(36,16,11,0.88); color: var(--gold);
  font-size: 0.62rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; padding: 5px 12px; border-radius: 99px;
}
.product-weight-badge {
  position: absolute; bottom: 14px; right: 14px; z-index: 2;
  background: var(--gold); color: var(--dark);
  font-size: 0.72rem; font-weight: 700; padding: 4px 10px; border-radius: 8px;
}
.product-body { padding: 20px 20px 18px; flex: 1; display: flex; flex-direction: column; }
.product-name { font-family: var(--font-serif); font-size: 1.28rem; color: var(--wood-dark); margin-bottom: 8px; line-height: 1.25; }
.product-body h3 { font-family: var(--font-serif); font-size: 1.25rem; color: var(--wood); margin-bottom: 6px; }
.product-tagline {
  font-size: 0.88rem; color: var(--gray); margin-bottom: 0; flex: 1; line-height: 1.55;
  min-height: 2.8em;
}
.product-card-footer {
  margin-top: 18px; padding-top: 16px;
  border-top: 1px solid rgba(212, 168, 67, 0.2);
}
.product-dept-label {
  display: inline-block; font-size: 0.65rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.8px; color: var(--red); background: rgba(166, 28, 28, 0.08);
  padding: 4px 10px; border-radius: 99px; width: fit-content; margin-bottom: 4px;
}
.product-price-block {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  padding: 12px 14px; background: #faf6ef; border-radius: 12px;
  border: 1px solid rgba(212, 168, 67, 0.25); margin-top: 8px;
}
.product-actions {
  display: flex; flex-direction: column; gap: 8px; margin-top: 12px;
}
.product-actions .btn-detail,
.product-actions .btn-add-cart { width: 100%; }
.product-price-box {
  background: linear-gradient(135deg, #faf6ef 0%, #f3ebe0 100%);
  border-radius: 14px; padding: 12px 14px; margin-bottom: 14px;
  border: 1px solid rgba(212, 168, 67, 0.2);
}
.product-price-label {
  display: block; font-size: 0.65rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; color: var(--gray); margin-bottom: 4px;
}
.product-price-line { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.product-price-row { display: flex; align-items: baseline; gap: 10px; margin-bottom: 16px; }
.product-price { font-size: 1.55rem; font-weight: 800; color: var(--red); letter-spacing: -0.02em; }
.product-weight-chip {
  font-size: 0.78rem; font-weight: 600; color: var(--wood);
  background: rgba(255,255,255,0.8); padding: 3px 10px; border-radius: 99px;
  border: 1px solid rgba(212, 168, 67, 0.25);
}
.product-weight { font-size: 0.78rem; color: var(--gray); }
.product-actions-row { display: flex; gap: 10px; align-items: stretch; }
.btn-detail {
  flex: 0 0 auto; padding: 12px 16px; border-radius: 12px; border: 1px solid rgba(212, 168, 67, 0.35);
  background: #fff; font-size: 0.8rem; font-weight: 600; color: var(--wood);
  cursor: pointer; transition: all 0.25s;
  text-decoration: none; display: flex; align-items: center; justify-content: center;
  white-space: nowrap;
}
.btn-detail:hover { border-color: var(--gold); color: var(--gold); background: rgba(225,179,69,0.06); }
.btn-add-cart {
  flex: 1; min-width: 0;
  border: none; border-radius: 12px; cursor: pointer;
  transition: all 0.25s; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-sans); font-size: 0.82rem; font-weight: 700;
  padding: 12px 14px;
  background: linear-gradient(145deg, #f0c850 0%, var(--gold) 50%, #c9a030 100%);
  color: var(--wood-dark);
  box-shadow: 0 4px 14px rgba(212, 168, 67, 0.35), inset 0 1px 0 rgba(255,255,255,0.4);
}
.btn-add-cart:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(212, 168, 67, 0.45);
}
.btn-add-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--wood-dark); color: var(--gold); font-size: 1rem; font-weight: 800; line-height: 1;
}
.btn-add-text { line-height: 1.2; }
.btn-add {
  flex: 1.2; border: none; border-radius: 12px; cursor: pointer;
  transition: all 0.25s; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-serif); font-size: 0.95rem; font-weight: 700;
  padding: 12px 14px;
  background: linear-gradient(145deg, #f0c850 0%, var(--gold) 50%, #c9a030 100%);
  color: var(--wood-dark);
  box-shadow: 0 4px 16px rgba(225, 179, 69, 0.4), inset 0 1px 0 rgba(255,255,255,0.4);
  border: 2px solid rgba(36, 16, 11, 0.1);
}
.btn-add span {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--wood-dark); color: var(--gold);
  font-family: var(--font-sans); font-size: 0.95rem; font-weight: 800;
}
.btn-add:hover {
  background: linear-gradient(145deg, #f5d060 0%, #e8c24a 50%, #d4a83a 100%);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 24px rgba(225, 179, 69, 0.5);
}

/* Product modal */
.product-modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 250;
  opacity: 0; visibility: hidden; transition: opacity 0.35s, visibility 0.35s;
  backdrop-filter: blur(4px);
}
.product-modal-overlay.open { opacity: 1; visibility: visible; }
.product-modal {
  position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0.92);
  background: #fff; border-radius: 24px; z-index: 260;
  width: min(720px, 94vw); max-height: 90vh; overflow-y: auto;
  opacity: 0; visibility: hidden;
  transition: all 0.4s var(--ease);
  box-shadow: 0 24px 80px rgba(0,0,0,0.25);
}
.product-modal.open { opacity: 1; visibility: visible; transform: translate(-50%, -50%) scale(1); }
.modal-close {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  width: 36px; height: 36px; border-radius: 50%; border: none;
  background: rgba(0,0,0,0.06); font-size: 1.4rem; cursor: pointer;
  transition: background 0.2s;
}
.modal-close:hover { background: rgba(0,0,0,0.12); }
.modal-product { display: grid; grid-template-columns: 1fr 1.2fr; }
.modal-img img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; border-radius: 24px 0 0 24px; }
.modal-info { padding: 32px; }
.modal-info h2 { font-family: var(--font-serif); font-size: 1.5rem; color: var(--wood); margin-bottom: 8px; }
.modal-tagline { color: var(--red); font-weight: 600; font-size: 0.9rem; margin-bottom: 12px; }
.modal-price { font-size: 1.6rem; font-weight: 700; color: var(--red); margin-bottom: 16px; }
.modal-price span { font-size: 0.85rem; color: var(--gray); font-weight: 500; }
.modal-info p { font-size: 0.9rem; color: #444; margin-bottom: 12px; line-height: 1.65; }
.modal-info h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; color: var(--wood); margin: 16px 0 8px; }
.modal-info ul { list-style: none; margin-bottom: 8px; }
.modal-info li { font-size: 0.85rem; color: #555; padding: 4px 0 4px 18px; position: relative; line-height: 1.5; }
.modal-info li::before { content: "•"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.modal-add-btn { margin-top: 20px; }

/* About */
.about-section { padding: 80px 0; background: #fff; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-img { position: relative; }
.about-img img { border-radius: 20px; box-shadow: var(--shadow-lg); width: 100%; height: 420px; object-fit: cover; transition: transform 0.5s; }
.about-img:hover img { transform: scale(1.02); }
.about-img-accent {
  position: absolute; bottom: -16px; right: -16px; width: 120px; height: 120px;
  border: 3px solid var(--gold); border-radius: 20px; z-index: -1;
}
.about-text p { margin-bottom: 16px; color: #444; font-size: 1rem; }
.about-list { list-style: none; margin: 24px 0 32px; }
.about-list li { padding: 10px 0 10px 32px; position: relative; font-size: 0.95rem; transition: transform 0.2s; }
.about-list li:hover { transform: translateX(6px); }
.about-list li::before { content: "✓"; position: absolute; left: 0; color: var(--red); font-weight: 700; font-size: 1.1rem; }

/* Gallery */
.gallery-section { padding: 80px 0; background: #fff; }
.gallery-desc { margin-bottom: 36px; }
.gallery-block { margin-bottom: 48px; }
.gallery-block h3 {
  font-family: var(--font-serif); color: var(--wood); font-size: 1.35rem;
  margin-bottom: 20px; padding-bottom: 0; border-bottom: none; display: block;
}
.gallery-row { display: grid; gap: 18px; }
.gallery-row-4 { grid-template-columns: repeat(2, 1fr); }
.gallery-row-5 { grid-template-columns: repeat(2, 1fr); }
.gallery-item {
  border: none; padding: 0; cursor: zoom-in; border-radius: 18px; overflow: hidden;
  position: relative; background: #f0ebe8;
  box-shadow: var(--shadow); transition: transform 0.35s var(--ease), box-shadow 0.35s;
  width: 100%; text-align: left;
}
.gallery-item::before {
  content: "🔍 Ampliar"; position: absolute; bottom: 14px; right: 14px; z-index: 2;
  background: rgba(36,16,11,0.85); color: var(--gold); font-size: 0.72rem; font-weight: 700;
  padding: 6px 12px; border-radius: 99px; opacity: 0; transform: translateY(8px);
  transition: all 0.3s var(--ease); pointer-events: none;
}
.gallery-item::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at var(--mx,50%) var(--my,50%), rgba(225,179,69,0.2) 0%, transparent 65%);
  opacity: 0; transition: opacity 0.3s; pointer-events: none;
}
.gallery-item:hover { transform: translateY(-8px) scale(1.02); box-shadow: var(--shadow-lg); }
.gallery-item:hover::before { opacity: 1; transform: translateY(0); }
.gallery-item:hover::after { opacity: 1; }
.gallery-item img {
  width: 100%; height: 260px; object-fit: cover; transition: transform 0.55s var(--ease);
  display: block;
}
.gallery-item:hover img { transform: scale(1.06); }

.gallery-lightbox-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.88); z-index: 400;
  opacity: 0; visibility: hidden; transition: opacity 0.35s, visibility 0.35s;
  backdrop-filter: blur(6px);
}
.gallery-lightbox-overlay.open { opacity: 1; visibility: visible; }
.gallery-lightbox {
  position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0.92);
  z-index: 410; max-width: min(920px, 94vw); max-height: 90vh;
  opacity: 0; visibility: hidden; transition: all 0.4s var(--ease); text-align: center;
}
.gallery-lightbox.open { opacity: 1; visibility: visible; transform: translate(-50%, -50%) scale(1); }
.gallery-lightbox img {
  max-width: 100%; max-height: 78vh; border-radius: 16px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5); object-fit: contain;
}
.gallery-lightbox-caption { color: #fff; margin-top: 14px; font-size: 1rem; font-weight: 500; }
.gallery-lightbox-close {
  position: absolute; top: -44px; right: 0; background: none; border: none;
  color: #fff; font-size: 2rem; cursor: pointer; opacity: 0.8; line-height: 1;
}
.gallery-lightbox-close:hover { opacity: 1; }

@media (min-width: 640px) {
  .gallery-row-4 { grid-template-columns: repeat(2, 1fr); }
  .gallery-row-5 { grid-template-columns: repeat(3, 1fr); }
  .gallery-item img { height: 300px; }
}
@media (min-width: 900px) {
  .gallery-row-4 { grid-template-columns: repeat(4, 1fr); }
  .gallery-row-5 { grid-template-columns: repeat(5, 1fr); }
  .gallery-item img { height: 340px; }
}

/* Contact */
.contact-section { background: var(--wood-dark); padding: 80px 0; color: rgba(255,255,255,0.85); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px; padding: 16px 20px; margin-bottom: 14px;
  transition: all 0.3s; display: flex; gap: 14px; align-items: flex-start;
}
.contact-card:hover { background: rgba(225,179,69,0.08); border-color: rgba(225,179,69,0.2); transform: translateX(4px); }
.contact-card p { font-size: 0.92rem; line-height: 1.6; }
.contact-card a { color: var(--gold); }
.contact-card a:hover { text-decoration: underline; }
.contact-map iframe { width: 100%; height: 360px; border: none; border-radius: 20px; box-shadow: var(--shadow-lg); }

/* Footer */
.site-footer { background: var(--dark); color: rgba(255,255,255,0.5); text-align: center; padding: 36px 20px; }
.footer-inner { display: flex; flex-direction: column; align-items: center; text-align: center; }
.footer-logo { width: auto; height: 64px; max-width: 140px; margin: 0 auto 12px; opacity: 0.95; object-fit: contain; transition: transform 0.3s; }
.footer-logo:hover { transform: rotate(-5deg) scale(1.05); }
.footer-quote { font-family: var(--font-serif); color: var(--gold); font-style: italic; margin-top: 4px; font-size: 1.05rem; }
.footer-credit {
  margin-top: 20px; padding-top: 18px; width: 100%;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
}
.footer-credit-label {
  margin: 0; font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.28);
}
.footer-kaunay-link {
  display: inline-flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 5px 6px;
  padding: 6px 14px; border-radius: 999px;
  background: rgba(255,255,255,0.035); border: 1px solid rgba(255,255,255,0.08);
  text-decoration: none; transition: background 0.25s, border-color 0.25s, transform 0.25s;
}
.footer-kaunay-link:hover {
  background: rgba(255,255,255,0.07); border-color: rgba(212,168,67,0.22);
  transform: translateY(-1px);
}
.footer-kaunay-logo { height: 9px; width: auto; display: block; opacity: 0.95; }
.footer-kaunay-brand { font-size: 0.62rem; font-weight: 700; color: rgba(255,255,255,0.72); letter-spacing: 0.01em; }
.footer-kaunay-sep { font-size: 0.55rem; color: rgba(255,255,255,0.22); line-height: 1; }
.footer-kaunay-url { font-size: 0.58rem; font-weight: 500; color: rgba(120,190,255,0.88); letter-spacing: 0.02em; }
.footer-kaunay-link:hover .footer-kaunay-url { color: rgba(160,210,255,1); }
.footer-admin { display: inline-block; margin-top: 14px; font-size: 0.72rem; opacity: 0.35; transition: opacity 0.2s; }
.footer-admin:hover { opacity: 0.8; }

/* WhatsApp + carrinho flutuante */
.float-actions {
  position: fixed; right: 0; bottom: 0; z-index: 9999;
  width: 0; height: 0; overflow: visible; pointer-events: none;
}
.float-actions > * { pointer-events: auto; }
.cart-float {
  position: fixed; right: 27px; bottom: 94px;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--wood-dark); border: 2px solid rgba(225, 179, 69, 0.45);
  color: #fff; cursor: pointer; padding: 0;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
  z-index: 9999;
}
.cart-float:hover {
  transform: scale(1.06);
  box-shadow: 0 6px 28px rgba(225, 179, 69, 0.35);
}
.wa-float {
  position: fixed; right: 24px; bottom: 24px;
  width: 58px; height: 58px; background: #25D366; color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.4);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
  animation: waPulse 3s ease-in-out infinite;
  z-index: 9999;
}
@media (max-width: 480px) {
  .wa-float { right: 16px; bottom: max(16px, env(safe-area-inset-bottom)); }
  .cart-float { right: 19px; bottom: calc(max(16px, env(safe-area-inset-bottom)) + 70px); }
}
.wa-float .icon-wa { width: 32px; height: 32px; }
.wa-float:hover { transform: scale(1.12); box-shadow: 0 8px 32px rgba(37,211,102,0.5); animation: none; }
@keyframes waPulse { 0%,100%{box-shadow:0 4px 24px rgba(37,211,102,0.4)} 50%{box-shadow:0 4px 32px rgba(37,211,102,0.65)} }

/* Cart */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.55); z-index: 200;
  opacity: 0; visibility: hidden; transition: opacity 0.35s, visibility 0.35s;
  backdrop-filter: blur(3px);
}
.cart-overlay.open { opacity: 1; visibility: visible; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(440px, 100vw);
  background: #fff; z-index: 210; display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform 0.4s var(--ease);
  box-shadow: -12px 0 48px rgba(0,0,0,0.18);
}
.cart-drawer.open { transform: translateX(0); }
.cart-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px; background: var(--wood-dark); color: #fff;
}
.cart-header h2 { font-family: var(--font-serif); font-size: 1.35rem; }
.cart-header button { background: none; border: none; color: #fff; font-size: 1.8rem; cursor: pointer; opacity: 0.7; transition: opacity 0.2s; }
.cart-header button:hover { opacity: 1; }
.cart-body { flex: 1; overflow-y: auto; padding: 18px; }
.cart-empty-state { text-align: center; padding: 48px 20px; color: var(--gray); }
.cart-item {
  display: flex; gap: 12px; padding: 14px; background: var(--wood-light);
  border-radius: 14px; margin-bottom: 10px; align-items: flex-start;
  transition: transform 0.2s;
}
.cart-item:hover { transform: translateX(4px); }
.cart-item img, .cart-item-ph {
  width: 68px; height: 68px; border-radius: 12px; object-fit: cover; flex-shrink: 0;
  background: #eee; display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-info h4 { font-size: 0.9rem; color: var(--wood); margin-bottom: 2px; }
.cart-item-info p { font-size: 0.78rem; color: var(--gray); }
.qty-row { display: flex; align-items: center; gap: 6px; margin-top: 8px; }
.qty-row button {
  width: 30px; height: 30px; border-radius: 8px; border: 1px solid #ddd;
  background: #fff; font-weight: 700; cursor: pointer; transition: all 0.2s;
}
.qty-row button:hover { border-color: var(--gold); color: var(--gold); }
.qty-row span { font-size: 0.88rem; font-weight: 600; min-width: 22px; text-align: center; }
.remove-btn { margin-left: auto; background: none; border: none; color: var(--red); font-size: 0.72rem; cursor: pointer; font-weight: 600; }
.cart-item-total { font-weight: 700; color: var(--red); font-size: 0.9rem; white-space: nowrap; }
.cart-summary { padding: 14px 0; border-top: 1px solid #eee; margin-top: 10px; }
.summary-row { display: flex; justify-content: space-between; font-size: 0.9rem; padding: 5px 0; color: var(--gray); }
.summary-row.total { font-size: 1.1rem; font-weight: 700; color: var(--wood); border-top: 1px solid #eee; padding-top: 12px; margin-top: 8px; }
.checkout-form { margin-top: 18px; padding-top: 18px; border-top: 2px solid var(--gold); }
.checkout-form h3 { font-family: var(--font-serif); color: var(--wood); margin-bottom: 16px; }
.checkout-form label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--wood); margin-bottom: 12px; }
.checkout-form input, .checkout-form select, .checkout-form textarea {
  display: block; width: 100%; margin-top: 5px; padding: 11px 14px;
  border: 1px solid #ddd; border-radius: 10px; font-family: inherit; font-size: 0.88rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.checkout-form input:focus, .checkout-form select:focus, .checkout-form textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(225,179,69,0.15);
}
.order-type-fieldset { border: none; margin-bottom: 12px; }
.order-type-fieldset legend { font-size: 0.82rem; font-weight: 600; color: var(--wood); margin-bottom: 8px; }
.radio-card {
  display: flex; align-items: center; gap: 8px; padding: 12px 16px;
  border: 1px solid #ddd; border-radius: 12px; margin-bottom: 8px; cursor: pointer;
  font-weight: 500; font-size: 0.85rem; transition: all 0.25s;
}
.radio-card:has(input:checked) { border-color: var(--gold); background: rgba(225,179,69,0.08); box-shadow: 0 0 0 2px rgba(225,179,69,0.15); }
.field-hint { font-size: 0.72rem; color: var(--gray); margin-top: -8px; margin-bottom: 12px; }
.delivery-fields {
  margin-bottom: 12px;
  padding: 14px;
  border-radius: 14px;
  background: rgba(225, 179, 69, 0.08);
  border: 1px solid rgba(225, 179, 69, 0.25);
}
.delivery-fields-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--wood);
  margin: 0 0 12px;
}
.delivery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.delivery-fee-note { font-size: 0.78rem; color: var(--gray); margin: 4px 0 0; }

/* Success */
.success-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 300;
  opacity: 0; visibility: hidden; transition: opacity 0.35s, visibility 0.35s;
  backdrop-filter: blur(4px);
}
.success-overlay.open { opacity: 1; visibility: visible; }
.success-modal {
  position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0.9);
  background: #fff; border-radius: 24px; padding: 36px; z-index: 310;
  width: min(420px, 92vw); text-align: center;
  opacity: 0; visibility: hidden; transition: all 0.4s var(--ease);
  box-shadow: 0 24px 80px rgba(0,0,0,0.2);
}
.success-modal.open { opacity: 1; visibility: visible; transform: translate(-50%, -50%) scale(1); }
@keyframes successPop { 0%{transform:scale(0)} 60%{transform:scale(1.2)} 100%{transform:scale(1)} }
.success-modal h2 { font-family: var(--font-serif); color: var(--wood); margin-bottom: 14px; }
.success-num { font-size: 1.1rem; margin-bottom: 8px; }
.success-note { font-size: 0.85rem; color: var(--gray); margin: 14px 0 22px; }

/* Responsive */
@media (max-width: 768px) {
  .main-nav { display: none; }
  .about-grid, .contact-grid, .modal-product { grid-template-columns: 1fr; }
  .modal-img img { border-radius: 24px 24px 0 0; min-height: 220px; }
  .about-img img { height: 280px; }
  .hero { min-height: 85vh; }
  .hero-title { font-size: 2.4rem; }
  .highlights-grid { grid-template-columns: 1fr; }
}
