:root {
  --bg: #f8f2f4;
  --surface: rgba(255,255,255,0.8);
  --surface-strong: #ffffff;
  --text: #24161d;
  --muted: #705561;
  --primary: #8d4968;
  --primary-dark: #6d3250;
  --accent: #d8b0c2;
  --border: rgba(70, 27, 47, 0.1);
  --shadow: 0 18px 60px rgba(63, 21, 40, 0.12);
  --radius-lg: 30px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: min(1180px, calc(100% - 32px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(216,176,194,0.45), transparent 20%),
    linear-gradient(180deg, #fdf8fa 0%, #f8f2f4 40%, #fff 100%);
}
body.nav-open, body.cart-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
.container { width: var(--container); margin: 0 auto; }

.loader {
  position: fixed; inset: 0; z-index: 2000;
  display: grid; place-items: center;
  background: linear-gradient(135deg, #fdf7fa, #f7edf2);
  transition: opacity .5s ease, visibility .5s ease;
}
.loader.hidden { opacity: 0; visibility: hidden; }
.loader__mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 6vw, 4rem);
  letter-spacing: .1em;
  color: var(--primary-dark);
  position: relative;
}
.loader__mark::after {
  content: '';
  position: absolute;
  left: 0; bottom: -12px;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  animation: pulseLine 1.2s infinite ease-in-out;
}
@keyframes pulseLine {
  0%, 100% { transform: scaleX(.4); opacity: .4; }
  50% { transform: scaleX(1); opacity: 1; }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(18px);
  background: rgba(253, 249, 251, 0.76);
  border-bottom: 1px solid rgba(109,50,80,0.08);
}
.header-wrap {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 82px; gap: 20px;
}
.brand { display: flex; flex-direction: column; gap: 2px; }
.brand__mini, .eyebrow {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .72rem;
  color: var(--primary);
  font-weight: 700;
}
.brand strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  line-height: 1;
}
.nav {
  display: flex; align-items: center; gap: 26px;
}
.nav a {
  color: var(--muted); font-weight: 600; position: relative;
}
.nav a::after {
  content: ''; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 2px; background: var(--primary); transition: .3s;
}
.nav a:hover::after { width: 100%; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.cart-button {
  border: 0; background: var(--text); color: #fff; border-radius: 999px;
  display: inline-flex; align-items: center; gap: 12px; padding: 12px 16px;
  box-shadow: var(--shadow); font-weight: 700;
}
.cart-button strong {
  background: rgba(255,255,255,.14); width: 28px; height: 28px; border-radius: 50%;
  display: grid; place-items: center;
}
.menu-toggle {
  display: none; width: 46px; height: 46px; border: 0; border-radius: 14px;
  background: #fff; box-shadow: 0 12px 28px rgba(63, 21, 40, 0.1);
}
.menu-toggle span { display: block; width: 20px; height: 2px; background: var(--text); margin: 4px auto; }

.hero {
  position: relative;
  min-height: calc(100vh - 82px);
  display: flex; align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(141, 73, 104, 0.15), transparent 22%),
    radial-gradient(circle at 80% 10%, rgba(216, 176, 194, 0.45), transparent 20%),
    linear-gradient(135deg, rgba(255,255,255,.8), rgba(255,255,255,.3));
}
.hero__content {
  position: relative;
  display: grid; grid-template-columns: 1.1fr .9fr;
  gap: 50px; align-items: center; padding: 70px 0 54px;
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: .95;
  margin: 14px 0 18px;
}
.hero p {
  font-size: 1.05rem; line-height: 1.8; max-width: 640px; color: var(--muted);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 28px 0 34px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 54px; padding: 0 22px; border-radius: 999px; border: 1px solid transparent;
  font-weight: 700; transition: .28s ease; gap: 8px;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--primary), #b55a83); color: #fff; box-shadow: var(--shadow); }
.btn-outline { border-color: rgba(109,50,80,.15); background: rgba(255,255,255,.72); color: var(--text); }
.btn-soft { background: #f6e8ef; color: var(--primary-dark); }
.btn-full { width: 100%; }
.hero__highlights {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
.hero__highlights div {
  background: rgba(255,255,255,.65); backdrop-filter: blur(12px);
  border: 1px solid rgba(109,50,80,.08); border-radius: var(--radius-sm); padding: 16px;
}
.hero__highlights strong { display: block; margin-bottom: 4px; }
.hero__highlights span { color: var(--muted); font-size: .92rem; }
.hero__visual { position: relative; min-height: 610px; }
.hero-card {
  position: absolute; overflow: hidden; border-radius: var(--radius-lg);
  box-shadow: 0 30px 70px rgba(63, 21, 40, 0.17);
}
.hero-card img { width: 100%; height: 100%; object-fit: cover; }
.hero-card.one { right: 0; top: 0; width: 72%; height: 70%; }
.hero-card.two { left: 0; bottom: 0; width: 58%; height: 50%; }
.floating-card { animation: floatY 6s ease-in-out infinite; }
.floating-card.two { animation-delay: 1.2s; }
@keyframes floatY {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.floating-badge {
  position: absolute; right: 20px; bottom: 30px;
  padding: 18px 22px; border-radius: 22px; background: rgba(255,255,255,.82);
  backdrop-filter: blur(16px); box-shadow: var(--shadow);
}
.floating-badge strong { display: block; font-size: 1.5rem; }
.floating-badge span { color: var(--muted); }

.stats { padding: 10px 0 20px; }
.stats-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.stats-grid article {
  padding: 24px; border-radius: var(--radius-md);
  background: rgba(255,255,255,.7); border: 1px solid var(--border); box-shadow: var(--shadow);
}
.stats-grid strong { display: block; margin-bottom: 8px; font-size: 1.08rem; }
.stats-grid span { color: var(--muted); line-height: 1.7; }

section { padding: 90px 0; }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 34px; }
.section-head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.3rem, 4vw, 3.6rem);
  margin: 12px 0 14px;
}
.section-head p { color: var(--muted); line-height: 1.8; margin: 0; }

.carousel {
  background: rgba(255,255,255,.72); border: 1px solid var(--border);
  border-radius: 34px; padding: 20px; box-shadow: var(--shadow);
}
.carousel-track { position: relative; min-height: 540px; }
.slide {
  position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: .55s ease;
  overflow: hidden; border-radius: 26px;
}
.slide.active { opacity: 1; visibility: visible; }
.slide img { width: 100%; height: 540px; object-fit: cover; }
.slide-caption {
  position: absolute; left: 24px; right: 24px; bottom: 24px; color: #fff;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.55));
  padding: 70px 24px 24px; border-radius: 24px;
}
.slide-caption span { text-transform: uppercase; letter-spacing: .18em; font-size: .72rem; font-weight: 700; }
.slide-caption h3 { margin: 10px 0 0; font-size: clamp(1.6rem, 2.8vw, 2.4rem); max-width: 520px; }
.carousel-controls { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 18px; }
.carousel-btn {
  width: 52px; height: 52px; border-radius: 50%; border: 0; background: var(--text); color: #fff; font-size: 1.8rem;
}
.carousel-dots, .testimonial-dots { display: flex; justify-content: center; gap: 10px; flex: 1; }
.carousel-dots button, .testimonial-dots button {
  width: 12px; height: 12px; border-radius: 50%; border: 0; background: rgba(112,85,97,.28);
}
.carousel-dots button.active, .testimonial-dots button.active { background: var(--primary); transform: scale(1.1); }

.filters {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 28px;
}
.filter-btn {
  border: 1px solid rgba(109,50,80,.12); background: rgba(255,255,255,.75); color: var(--muted);
  border-radius: 999px; padding: 12px 18px; font-weight: 700;
}
.filter-btn.active { background: var(--text); color: #fff; }
.product-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
.product-card {
  background: var(--surface-strong); border-radius: 28px; overflow: hidden; border: 1px solid var(--border);
  box-shadow: var(--shadow); transition: transform .3s ease, box-shadow .3s ease;
}
.product-card:hover { transform: translateY(-8px); }
.product-image { position: relative; height: 340px; overflow: hidden; }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.product-card:hover .product-image img { transform: scale(1.08); }
.product-tag {
  position: absolute; top: 16px; left: 16px; background: rgba(255,255,255,.88); color: var(--primary-dark);
  padding: 8px 12px; border-radius: 999px; font-size: .78rem; font-weight: 800; letter-spacing: .08em;
}
.product-body { padding: 20px; }
.product-meta { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 10px; }
.product-meta span { color: var(--muted); font-size: .88rem; }
.product-card h3 { font-size: 1.12rem; margin: 0 0 10px; }
.product-card p { color: var(--muted); line-height: 1.7; font-size: .95rem; min-height: 66px; }
.product-footer {
  display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 18px;
}
.product-price strong { display: block; font-size: 1.2rem; }
.product-price span { color: var(--muted); font-size: .85rem; }
.add-cart-btn {
  border: 0; border-radius: 999px; background: var(--text); color: #fff;
  padding: 12px 16px; font-weight: 700;
}
.hidden-card { display: none; }

.banner-grid__wrap {
  display: grid; grid-template-columns: 1.3fr .7fr .7fr; gap: 18px;
}
.banner-card {
  min-height: 220px; border-radius: 30px; padding: 30px; color: #fff; position: relative; overflow: hidden;
  box-shadow: var(--shadow);
}
.banner-card.large {
  background: linear-gradient(135deg, rgba(109,50,80,.96), rgba(181,90,131,.82)),
    url('https://images.unsplash.com/photo-1521572267360-ee0c2909d518?auto=format&fit=crop&w=1200&q=80') center/cover;
}
.banner-card.small.one {
  background: linear-gradient(135deg, rgba(36,22,29,.82), rgba(141,73,104,.7)),
    url('https://images.unsplash.com/photo-1445205170230-053b83016050?auto=format&fit=crop&w=900&q=80') center/cover;
}
.banner-card.small.two {
  background: linear-gradient(135deg, rgba(141,73,104,.8), rgba(216,176,194,.72)),
    url('https://images.unsplash.com/photo-1487412947147-5cebf100ffc2?auto=format&fit=crop&w=900&q=80') center/cover;
}
.banner-card h3, .banner-card h4 { margin: 8px 0 10px; }
.banner-card p { max-width: 350px; line-height: 1.7; }

.testimonial-slider {
  background: rgba(255,255,255,.72); border: 1px solid var(--border); border-radius: 32px;
  padding: 24px; box-shadow: var(--shadow);
}
.testimonial-track { position: relative; min-height: 240px; }
.testimonial-card {
  position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: .5s ease;
  display: grid; align-content: center; justify-items: center; text-align: center; padding: 8px 18px;
}
.testimonial-card.active { opacity: 1; visibility: visible; }
.testimonial-card p { max-width: 720px; line-height: 1.9; color: var(--muted); font-size: 1.06rem; }
.stars { letter-spacing: .3em; color: #d4a727; font-size: 1.1rem; margin-bottom: 16px; }
.testimonial-card strong { margin-top: 8px; font-size: 1.1rem; }
.testimonial-card span { color: var(--muted); font-size: .92rem; }

.contact-map__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 24px; align-items: stretch; }
.contact-card, .map-card {
  background: rgba(255,255,255,.78); border: 1px solid var(--border); border-radius: 30px; padding: 32px; box-shadow: var(--shadow);
}
.contact-card h2 {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 3.6vw, 3rem); margin: 14px 0;
}
.contact-card p, .contact-card li { color: var(--muted); line-height: 1.8; }
.contact-card ul { padding-left: 18px; margin: 0 0 24px; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.map-card { padding: 0; overflow: hidden; }
.map-card iframe { width: 100%; height: 100%; min-height: 420px; border: 0; }

.site-footer {
  border-top: 1px solid rgba(109,50,80,.08);
  padding: 28px 0 42px;
}
.footer-wrap { display: flex; justify-content: space-between; gap: 18px; color: var(--muted); }
.footer-wrap strong { display: block; color: var(--text); margin-bottom: 8px; }

.floating-btn {
  position: fixed; right: 20px; z-index: 990; border-radius: 999px;
  padding: 14px 18px; color: #fff; font-weight: 700; box-shadow: var(--shadow);
}
.floating-btn.whatsapp { bottom: 22px; background: linear-gradient(135deg, #128c7e, #25d366); }
.floating-btn.instagram { bottom: 84px; background: linear-gradient(135deg, #8d4968, #d46b98); }

.cart-drawer {
  position: fixed; top: 0; right: 0; width: min(430px, 100%); height: 100vh;
  background: #fff; box-shadow: -20px 0 50px rgba(0,0,0,.16); z-index: 1200;
  transform: translateX(100%); transition: .35s ease;
  display: grid; grid-template-rows: auto 1fr auto;
}
.cart-drawer.open { transform: translateX(0); }
.cart-drawer__header, .cart-drawer__summary { padding: 22px; border-bottom: 1px solid var(--border); }
.cart-drawer__summary { border-bottom: 0; border-top: 1px solid var(--border); }
.cart-drawer__header {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.cart-drawer__header h3 { margin: 8px 0 0; font-size: 1.5rem; }
.icon-btn {
  width: 42px; height: 42px; border-radius: 50%; border: 0; background: #f3edf0; font-size: 1.8rem;
}
.cart-drawer__items { overflow: auto; padding: 18px 22px; }
.cart-item {
  display: grid; grid-template-columns: 88px 1fr; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--border);
}
.cart-item img { width: 88px; height: 110px; object-fit: cover; border-radius: 18px; }
.cart-item h4 { margin: 0 0 8px; font-size: 1rem; }
.cart-item p { margin: 0 0 8px; color: var(--muted); font-size: .92rem; }
.cart-item-actions { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.qty-controls {
  display: inline-flex; align-items: center; border: 1px solid var(--border); border-radius: 999px; overflow: hidden;
}
.qty-controls button { width: 34px; height: 34px; border: 0; background: #f8f2f4; }
.qty-controls span { width: 34px; text-align: center; font-weight: 700; }
.remove-btn { border: 0; background: transparent; color: var(--primary); font-weight: 700; }
.summary-row { display: flex; justify-content: space-between; gap: 18px; margin-bottom: 14px; color: var(--muted); }
.summary-row strong { color: var(--text); }
.cart-empty { text-align: center; padding: 40px 16px; color: var(--muted); }
.overlay {
  position: fixed; inset: 0; background: rgba(22,12,17,.38); z-index: 1100;
  opacity: 0; visibility: hidden; transition: .3s;
}
.overlay.show { opacity: 1; visibility: visible; }

.reveal { opacity: 0; transform: translateY(26px); transition: .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: .12s; }

@media (max-width: 1100px) {
  .hero__content, .contact-map__grid, .banner-grid__wrap { grid-template-columns: 1fr; }
  .hero__visual { min-height: 520px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid, .hero__highlights { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .nav {
    position: fixed; inset: 82px 16px auto 16px; padding: 18px; background: rgba(255,255,255,.98);
    border-radius: 22px; box-shadow: var(--shadow); display: none; flex-direction: column; align-items: flex-start;
  }
  .nav.open { display: flex; }
  .menu-toggle { display: inline-block; }
  .hero { min-height: auto; }
  .hero__content { padding-top: 42px; }
  .hero__visual { min-height: 430px; }
  .hero-card.one { width: 74%; height: 64%; }
  .hero-card.two { width: 62%; height: 46%; }
  .carousel-track { min-height: 420px; }
  .slide img { height: 420px; }
  .footer-wrap { flex-direction: column; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 20px, 100%); }
  .header-wrap { min-height: 74px; }
  .site-header { top: 0; }
  .brand strong { font-size: 1.75rem; }
  .cart-button { padding: 10px 14px; }
  section { padding: 72px 0; }
  .hero h1 { font-size: clamp(2.5rem, 13vw, 3.5rem); }
  .hero__actions, .contact-actions { flex-direction: column; }
  .hero__actions .btn, .contact-actions .btn { width: 100%; }
  .hero__visual { min-height: 360px; }
  .hero-card.one { width: 78%; height: 60%; }
  .hero-card.two { width: 64%; height: 42%; }
  .floating-badge { right: 10px; bottom: 18px; padding: 14px 18px; }
  .product-grid { grid-template-columns: 1fr; }
  .product-image { height: 320px; }
  .carousel, .testimonial-slider, .contact-card, .map-card, .stats-grid article { border-radius: 24px; }
  .slide img { height: 330px; }
  .slide-caption { left: 14px; right: 14px; bottom: 14px; padding: 54px 18px 18px; }
  .carousel-controls { gap: 10px; }
  .carousel-btn { width: 44px; height: 44px; }
  .cart-drawer { width: 100%; }
  .floating-btn { right: 12px; padding: 12px 14px; font-size: .9rem; }
  .floating-btn.instagram { bottom: 78px; }
}
