/* ============ FONTS ============ */
@font-face {
  font-family: "FiraGO";
  src: url("../fonts/FiraGO-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "FiraGO";
  src: url("../fonts/FiraGO-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "FiraGO";
  src: url("../fonts/FiraGO-SemiBold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "FiraGO";
  src: url("../fonts/FiraGO-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Clash Display";
  src: url("../fonts/ClashDisplay-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Clash Display";
  src: url("../fonts/ClashDisplay-Semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Clash Display";
  src: url("../fonts/ClashDisplay-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ============ TOKENS ============ */
:root {
  /* wine-label parchment ramp */
  --cream: #d9d1a9;
  --cream-soft: #d9d5a3;
  --sand: #a6a486;
  --parchment-stain: #cfc89a;
  --parchment-deep: #b3ae87;
  /* burgundy-label ramp, dark → bright */
  --terracotta: #8c3746;
  --terracotta-rgb: 140, 55, 70;
  --terracotta-dark: #6f2c37;
  --terracotta-deep: #4f2029;
  --clay: #d19aa2;
  --ink: #402630;
  --ink-rgb: 64, 38, 48;
  --ink-soft: #684249;
  --white: #ffffff;
  --wa-green: #25d366;
  --wa-green-dark: #1fb355;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 20px 45px -25px rgba(64, 38, 48, 0.45);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ============ RESET ============ */
* {
  box-sizing: border-box;
  letter-spacing: normal !important;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background-color: var(--cream);
  background-image:
    radial-gradient(ellipse 340px 260px at 12% 8%, rgba(217, 213, 163, 0.55) 0%, transparent 65%),
    radial-gradient(ellipse 260px 300px at 78% 22%, rgba(166, 164, 134, 0.4) 0%, transparent 60%),
    radial-gradient(ellipse 300px 240px at 45% 55%, rgba(217, 213, 163, 0.6) 0%, transparent 60%),
    radial-gradient(ellipse 280px 320px at 88% 78%, rgba(217, 213, 163, 0.45) 0%, transparent 65%),
    radial-gradient(ellipse 220px 260px at 20% 90%, rgba(166, 164, 134, 0.35) 0%, transparent 60%),
    radial-gradient(ellipse 260px 220px at 55% 15%, rgba(217, 213, 163, 0.3) 0%, transparent 55%);
  background-repeat: repeat;
  background-size: 620px 620px, 540px 540px, 480px 480px, 700px 700px, 460px 460px, 560px 560px;
  color: var(--ink);
  font-family: "FiraGO", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
h1, h2, h3 {
  margin: 0;
  font-weight: 600;
  line-height: 1.3;
}
p {
  margin: 0;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.96rem;
  white-space: nowrap;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background-color 0.35s var(--ease);
  will-change: transform;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn:active {
  transform: translateY(0);
}
.btn-primary {
  background: var(--terracotta);
  color: var(--cream-soft);
  box-shadow: 0 14px 30px -12px rgba(var(--terracotta-rgb), 0.65);
}
.btn-primary:hover {
  background: var(--terracotta-dark);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: var(--cream-soft);
  border: 1.5px solid rgba(217, 213, 163, 0.5);
  backdrop-filter: none;
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
}
.btn-whatsapp {
  background: var(--wa-green);
  color: #fff;
  padding: 11px 20px;
  box-shadow: 0 12px 24px -12px rgba(37, 211, 102, 0.6);
}
.btn-whatsapp:hover {
  background: var(--wa-green-dark);
}
.btn-order {
  background: var(--ink);
  color: var(--cream-soft);
  padding: 9px 16px;
  font-size: 0.85rem;
}
.btn-order:hover {
  background: var(--terracotta-dark);
}
.btn-order.is-added {
  background: var(--wa-green-dark);
}
.ico, .ico-sm {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex-shrink: 0;
}
.ico-sm {
  width: 15px;
  height: 15px;
}

/* ============ HEADER ============ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: transform 0.4s var(--ease), background-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.site-header.is-hidden {
  transform: translateY(-100%);
}
.site-header.is-scrolled {
  background: rgba(217, 213, 163, 0.92);
  box-shadow: 0 8px 30px -18px rgba(64, 38, 48, 0.4);
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(30, 16, 21, 0.55) 0%, rgba(30, 16, 21, 0.28) 55%, rgba(30, 16, 21, 0) 100%);
  opacity: 1;
  transition: opacity 0.4s var(--ease);
}
.site-header.is-scrolled::before {
  opacity: 0;
}
.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  width: 44px;
  flex-shrink: 0;
}
.brand-logo {
  height: 44px;
  width: 44px;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.35));
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.brand-text strong {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--cream-soft);
  transition: color 0.35s var(--ease);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}
.brand-text em {
  font-style: normal;
  font-family: "Clash Display", sans-serif;
  font-size: 0.68rem;
  letter-spacing: normal !important;
  color: var(--clay);
  text-transform: uppercase;
}
.site-header.is-scrolled .brand-text strong {
  color: var(--ink);
  text-shadow: none;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.main-nav a {
  font-size: 0.93rem;
  font-weight: 500;
  color: rgba(217, 213, 163, 0.92);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
  transition: color 0.3s var(--ease), text-shadow 0.3s var(--ease);
  position: relative;
}
.main-nav a:hover {
  color: var(--clay);
}
.site-header.is-scrolled .main-nav a {
  color: var(--ink-soft);
  text-shadow: none;
}
.site-header.is-scrolled .main-nav a:hover {
  color: var(--terracotta-dark);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  width: 42px;
  border-radius: 50%;
  background: rgba(217, 213, 163, 0.14);
  border: 1.5px solid rgba(217, 213, 163, 0.5);
  color: var(--cream-soft);
  transition: background-color 0.3s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
}
.cart-btn:hover {
  transform: translateY(-2px);
  background: rgba(217, 213, 163, 0.24);
}
.cart-btn .ico {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.site-header.is-scrolled .cart-btn {
  color: var(--ink);
  border-color: var(--sand);
  background: var(--cream-soft);
}
.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 19px;
  height: 19px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--terracotta);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 2px var(--cream);
  transition: transform 0.25s var(--ease);
}
.cart-count.is-empty {
  opacity: 0;
  transform: scale(0.6);
}
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
}
.burger span {
  display: block;
  height: 2px;
  width: 22px;
  background: var(--cream-soft);
  margin: 0 auto;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease), background-color 0.3s var(--ease);
}
.site-header.is-scrolled .burger span {
  background: var(--ink);
}
.burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger.is-open span:nth-child(2) {
  opacity: 0;
}
.burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img,
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(64, 38, 48, 0.55) 0%, rgba(64, 38, 48, 0.55) 100%),
    linear-gradient(100deg, rgba(30, 16, 21, 0.88) 20%, rgba(64, 38, 48, 0.45) 60%, rgba(64, 38, 48, 0.25) 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding-top: 110px;
  padding-bottom: 80px;
  color: var(--cream-soft);
  max-width: 720px;
}
.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--clay);
  background: rgba(217, 213, 163, 0.1);
  border: 1px solid rgba(217, 213, 163, 0.35);
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.22;
  margin-bottom: 22px;
}
.hero-lead {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: rgba(217, 213, 163, 0.88);
  max-width: 520px;
  margin-bottom: 34px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
}
.stat strong {
  font-family: "Clash Display", sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
}
.stat span {
  font-size: 0.8rem;
  color: rgba(217, 213, 163, 0.7);
}
.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 2px solid rgba(217, 213, 163, 0.6);
  border-radius: 999px;
  z-index: 1;
}
.scroll-cue span {
  position: absolute;
  top: 7px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--cream-soft);
  border-radius: 999px;
  animation: cueMove 1.8s ease-in-out infinite;
}
@keyframes cueMove {
  0% { transform: translate(-50%, 0); opacity: 1; }
  60% { transform: translate(-50%, 14px); opacity: 0; }
  61% { transform: translate(-50%, 0); opacity: 0; }
  100% { transform: translate(-50%, 0); opacity: 1; }
}

/* ============ SECTION SHARED ============ */
.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--terracotta);
  background: rgba(var(--terracotta-rgb), 0.1);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.section-tag-light {
  background: rgba(217, 213, 163, 0.15);
  color: var(--clay);
}
.section-head {
  max-width: 640px;
  margin-bottom: 44px;
}
.section-head h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.3rem);
  margin-bottom: 14px;
}
.section-head p {
  color: var(--ink-soft);
  font-size: 1rem;
}

/* ============ ABOUT STRIP ============ */
.about-strip {
  padding: 90px 0;
}
.about-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.about-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 18px;
}
.about-text p {
  color: var(--ink-soft);
  font-size: 1.02rem;
  margin-bottom: 30px;
}
.about-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.badge-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: var(--cream-soft);
  border: 1px solid var(--sand);
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  min-width: 190px;
}
.badge-card strong {
  font-size: 1rem;
  color: var(--ink);
}
.badge-card span {
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.about-media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
}
.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============ CATALOG ============ */
.catalog {
  padding: 40px 0 100px;
  border-top: 1px solid var(--sand);
}
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 42px;
}
.filter-btn {
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink-soft);
  background: var(--cream-soft);
  border: 1px solid var(--sand);
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.filter-btn:hover {
  transform: translateY(-1px);
  border-color: var(--clay);
}
.filter-btn.is-active {
  background: var(--ink);
  color: var(--cream-soft);
  border-color: var(--ink);
}
.filters-sub {
  margin-top: -24px;
  margin-bottom: 32px;
}
.filters-sub:empty {
  display: none;
}
.filters-sub .filter-btn {
  padding: 7px 16px;
  font-size: 0.8rem;
  background: transparent;
}
.filters-sub .filter-btn.is-active {
  background: var(--clay);
  border-color: var(--clay);
}
.product-variants {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}
.product-subtag {
  font-size: 0.72rem;
  font-family: inherit;
  color: var(--ink-soft);
  background: var(--cream-soft);
  border: 1px solid var(--sand);
  border-radius: 999px;
  padding: 4px 12px;
  cursor: pointer;
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.product-subtag:hover {
  border-color: var(--clay);
}
.product-subtag.is-selected {
  background: var(--ink);
  color: var(--cream-soft);
  border-color: var(--ink);
}
.catalog-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--ink-soft);
  padding: 40px 0;
}
.product-media-placeholder {
  width: 100%;
  height: 100%;
  background: var(--cream-soft);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
  gap: 26px;
}
.product-card {
  background: var(--cream-soft);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--sand);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.product-media {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.product-card:hover .product-media img {
  transform: scale(1.06);
}
.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 0;
  transition: opacity 0.7s var(--ease), transform 0.6s var(--ease);
}
.carousel-slide.is-active {
  opacity: 1;
  z-index: 1;
}
.carousel-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}
.carousel-dot {
  width: 6px;
  height: 6px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: background-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.carousel-dot.is-active {
  background: var(--white);
  transform: scale(1.35);
}
.product-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(64, 38, 48, 0.78);
  color: var(--cream-soft);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
}
.product-body {
  padding: 18px 18px 20px;
}
.product-body h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 14px;
  min-height: 2.6em;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.product-price {
  font-family: "Clash Display", sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--terracotta-dark);
  white-space: nowrap;
}

/* ============ GIFTBOX ============ */
.giftbox {
  background: var(--ink);
  color: var(--cream-soft);
  padding: 90px 0;
}
.giftbox-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.giftbox-media {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.giftbox-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.giftbox-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 18px;
}
.giftbox-text p {
  color: rgba(217, 213, 163, 0.8);
  margin-bottom: 30px;
  font-size: 1.02rem;
}

/* ============ SOCIAL PROOF ============ */
.social-proof {
  padding: 60px 0;
  border-top: 1px solid var(--sand);
  border-bottom: 1px solid var(--sand);
}
.social-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.social-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.social-stat strong {
  font-family: "Clash Display", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--terracotta);
}
.social-stat span {
  font-size: 0.85rem;
  color: var(--ink-soft);
}

/* ============ CONTACT ============ */
.contact {
  padding: 90px 0 100px;
}
.contact-inner {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: stretch;
}
.contact-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 26px;
}
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}
.contact-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.contact-ico {
  font-size: 1.3rem;
}
.contact-list strong {
  display: block;
  font-size: 0.92rem;
  margin-bottom: 2px;
}
.contact-list span {
  color: var(--ink-soft);
  font-size: 0.92rem;
}
.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 320px;
  box-shadow: var(--shadow);
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--cream-soft);
  border-top: 1px solid var(--sand);
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-logo {
  height: 34px;
  width: 34px;
  object-fit: contain;
}
.footer-brand p {
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.footer-links {
  display: flex;
  gap: 22px;
}
.footer-links a {
  font-size: 0.88rem;
  color: var(--ink-soft);
  transition: color 0.25s var(--ease);
}
.footer-links a:hover {
  color: var(--terracotta-dark);
}
.footer-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  font-size: 0.78rem;
  color: var(--ink-soft);
  opacity: 0.75;
}

/* ============ WHATSAPP FLOAT ============ */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--wa-green);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 32px -12px rgba(37, 211, 102, 0.65);
  transition: transform 0.35s var(--ease), background-color 0.35s var(--ease);
}
.whatsapp-float .ico {
  width: 28px;
  height: 28px;
  fill: #fff;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  background: var(--wa-green-dark);
}

/* ============ CART ============ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30, 16, 21, 0.5);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.cart-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100svh;
  width: min(420px, 92vw);
  background: var(--cream-soft);
  z-index: 201;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.45s var(--ease);
  box-shadow: -24px 0 60px -20px rgba(64, 38, 48, 0.4);
}
.cart-drawer.is-open {
  transform: translateX(0);
}
.cart-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid var(--sand);
}
.cart-drawer-head h3 {
  font-size: 1.15rem;
  font-weight: 600;
}
.cart-close {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  width: 34px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--ink);
  font-size: 1rem;
  transition: background-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.cart-close:hover {
  background: var(--sand);
  transform: rotate(90deg);
}
.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 10px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cart-item {
  display: flex;
  gap: 14px;
  align-items: center;
}
.cart-item-media {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
}
.cart-item-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart-item-body {
  flex: 1;
  min-width: 0;
}
.cart-item-body h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.cart-item-price {
  font-size: 0.85rem;
  color: var(--terracotta-dark);
  font-weight: 600;
}
.cart-item-variant {
  font-weight: 400;
  color: var(--ink-soft);
  font-size: 0.82rem;
}
.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}
.cart-qty-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 26px;
  width: 26px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--sand);
  font-size: 0.95rem;
  color: var(--ink);
  transition: background-color 0.25s var(--ease);
}
.cart-qty-btn:hover {
  background: var(--sand);
}
.cart-qty-val {
  font-size: 0.85rem;
  font-weight: 600;
  min-width: 16px;
  text-align: center;
}
.cart-item-remove {
  align-self: flex-start;
  color: var(--ink-soft);
  font-size: 1.1rem;
  line-height: 1;
  padding: 4px;
  transition: color 0.25s var(--ease);
}
.cart-item-remove:hover {
  color: var(--terracotta-dark);
}
.cart-empty {
  display: none;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  padding: 40px 24px;
  color: var(--ink-soft);
}
.cart-empty p {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
}
.cart-empty span {
  font-size: 0.85rem;
}
.cart-drawer.is-empty .cart-empty {
  display: flex;
}
.cart-drawer.is-empty .cart-items,
.cart-drawer.is-empty .cart-footer {
  display: none;
}
.cart-footer {
  padding: 20px 24px 26px;
  border-top: 1px solid var(--sand);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cart-subtotal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
}
.cart-subtotal strong {
  font-family: "Clash Display", sans-serif;
  font-size: 1.3rem;
  color: var(--terracotta-dark);
}
.cart-order-btn {
  width: 100%;
}
.cart-clear {
  text-align: center;
  font-size: 0.82rem;
  color: var(--ink-soft);
  padding: 4px;
  transition: color 0.25s var(--ease);
}
.cart-clear:hover {
  color: var(--terracotta-dark);
}

/* ============ REVEAL ANIMATION ============ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1000px) {
  .about-inner,
  .giftbox-inner,
  .contact-inner {
    grid-template-columns: 1fr;
  }
  .about-media,
  .giftbox-media {
    order: -1;
  }
  .social-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100svh;
    width: min(78vw, 320px);
    background: var(--cream-soft);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 28px;
    padding: 40px;
    transform: translateX(100%);
    transition: transform 0.45s var(--ease);
    box-shadow: -20px 0 50px -20px rgba(64, 38, 48, 0.35);
  }
  .main-nav.is-open {
    transform: translateX(0);
  }
  .main-nav a {
    font-size: 1.15rem;
    color: var(--ink-soft) !important;
    text-shadow: none !important;
  }
  .main-nav a:hover {
    color: var(--terracotta-dark) !important;
  }
  .burger {
    display: flex;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 18px;
  }
  .hero-inner {
    padding-top: 130px;
    padding-bottom: 60px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .hero-stats {
    gap: 24px;
  }
  .header-actions .btn-whatsapp {
    padding: 10px 14px;
    font-size: 0;
    gap: 0;
  }
  .header-actions .btn-whatsapp .ico {
    width: 20px;
    height: 20px;
  }
  .about-strip,
  .giftbox,
  .contact {
    padding: 64px 0;
  }
  .social-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
  }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-meta {
    align-items: flex-start;
  }
}
