:root {
  --pink-50: #fff4f8;
  --pink-100: #ffe3ed;
  --pink-300: #f8aac3;
  --pink-500: #ef789d;
  --rose: #d88b7b;
  --gold: #b8865b;
  --brown: #5c372f;
  --brown-2: #7d4e44;
  --text: #3b2a2a;
  --muted: #806967;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(216, 139, 123, .2);
  --radius: 28px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; color: var(--text); background: linear-gradient(180deg, #fff 0%, var(--pink-50) 45%, #fff 100%); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.skip-link { position: absolute; left: -999px; top: 8px; background: var(--brown); color: #fff; padding: 10px 14px; border-radius: 8px; z-index: 999; }
.skip-link:focus { left: 8px; }
.topbar { background: var(--brown); color: #fff7f5; text-align: center; padding: 10px 16px; font-size: 13px; letter-spacing: .3px; }
.site-header { position: sticky; top: 0; z-index: 50; display: flex; align-items: center; justify-content: space-between; gap: 22px; padding: 16px 7vw; background: rgba(255,255,255,.95); backdrop-filter: blur(14px); border-bottom: 1px solid #f3d8df; }
.brand img { width: 170px; max-height: 72px; object-fit: contain; }
.main-nav { display: flex; gap: 18px; font-size: 14px; font-weight: 600; color: var(--brown); align-items: center; }
.main-nav a:hover { color: var(--pink-500); }
.menu-toggle { display: none; border: 1px solid #efc3cb; background: #fff; color: var(--brown); border-radius: 14px; padding: 9px 12px; font-size: 22px; }
.header-button, .primary-button, .secondary-button, .mini-button { display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; font-weight: 800; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; min-height: 44px; }
.header-button, .primary-button, .mini-button { background: linear-gradient(135deg, var(--pink-500), var(--rose)); color: white; box-shadow: 0 10px 22px rgba(239,120,157,.28); }
.header-button { padding: 11px 17px; font-size: 14px; white-space: nowrap; }
.primary-button, .secondary-button { padding: 14px 22px; }
.secondary-button { border: 1px solid #efc3cb; color: var(--brown); background: #fff; }
.mini-button { padding: 10px 14px; font-size: 13px; }
.header-button:hover, .primary-button:hover, .secondary-button:hover, .mini-button:hover { transform: translateY(-2px); }
.hero { min-height: 650px; padding: 70px 7vw 48px; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr); gap: 48px; align-items: center; }
.hero-copy { max-width: 740px; }
.eyebrow, .section-heading span { color: var(--pink-500); text-transform: uppercase; letter-spacing: 2px; font-weight: 800; font-size: 12px; }
h1, h2 { font-family: "Playfair Display", Georgia, serif; line-height: 1.04; color: var(--brown); margin: 12px 0 18px; }
h1 { font-size: clamp(40px, 7vw, 76px); }
h2 { font-size: clamp(30px, 4vw, 50px); }
h3 { color: var(--brown); }
.hero-copy p, .page-hero p, .custom-section p { font-size: 18px; color: var(--muted); line-height: 1.8; max-width: 680px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.hero-card { position: relative; min-height: 520px; background: white; border-radius: 38px; padding: 22px; box-shadow: var(--shadow); border: 1px solid #f8d7df; overflow: hidden; }
.carousel { position: relative; min-height: 476px; }
.carousel-slide { position: absolute; inset: 0; opacity: 0; pointer-events: none; transition: opacity .8s ease, transform .8s ease; transform: scale(.985); border-radius: 28px; overflow: hidden; background: radial-gradient(circle at top left, #fff 0%, var(--pink-100) 46%, #f7c2d3 100%); display: grid; place-items: center; }
.carousel-slide.is-active { opacity: 1; pointer-events: auto; transform: scale(1); }
.carousel-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge { position: absolute; right: 20px; bottom: 20px; left: 20px; background: rgba(92,55,47,.92); color: #fff; padding: 14px 18px; border-radius: 20px; font-size: 14px; box-shadow: 0 12px 20px rgba(92,55,47,.22); }
.hero-illustration { width: 100%; min-height: 420px; display: grid; place-items: center; }
.features { margin: 0 7vw; display: grid; grid-template-columns: repeat(3, 1fr); background: white; border-radius: var(--radius); border: 1px solid #f4d5dc; box-shadow: var(--shadow); overflow: hidden; }
.features article { padding: 28px; border-right: 1px solid #f4d5dc; }
.features article:last-child { border-right: 0; }
.features strong { display: block; color: var(--brown); font-size: 18px; margin-bottom: 6px; }
.features span { color: var(--muted); line-height: 1.6; }
.section-block { padding: 84px 7vw 24px; }
.compact-top { padding-top: 34px; }
.section-heading { text-align: center; margin-bottom: 34px; }
.section-heading.split { display: flex; justify-content: space-between; align-items: end; gap: 24px; text-align: left; }
.filter-pill, .pill { background: #fff; border: 1px solid #f0cfd6; color: var(--muted); border-radius: 999px; padding: 12px 16px; font-size: 13px; font-weight: 700; }
.pill.active, .pill:hover, .filter-pill:hover { color: #fff; background: var(--brown); border-color: var(--brown); }
.category-grid, .product-grid, .testimonial-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.category-card { background: #fff; border: 1px solid #f4d5dc; border-radius: var(--radius); padding: 28px; min-height: 190px; box-shadow: 0 12px 30px rgba(216,139,123,.12); transition: transform .2s ease; }
.category-card .icon { font-size: 36px; display: block; margin-bottom: 18px; }
.category-card strong { display: block; color: var(--brown); font-size: 18px; margin-bottom: 8px; }
.category-card small { color: var(--muted); line-height: 1.6; }
.category-card:hover { transform: translateY(-4px); }
.catalog-section { padding-bottom: 82px; }
.product-grid { grid-template-columns: repeat(3, 1fr); }
.product-card { background: white; border: 1px solid #f4d5dc; border-radius: 30px; overflow: hidden; box-shadow: 0 16px 40px rgba(216,139,123,.14); display: flex; flex-direction: column; }
.product-media { position: relative; min-height: 260px; background: radial-gradient(circle at top left, #fff 0%, var(--pink-100) 46%, #f7c2d3 100%); display: grid; place-items: center; overflow: hidden; }
.product-media img { width: 100%; height: 260px; object-fit: cover; transition: transform .25s ease; }
.product-media:hover img { transform: scale(1.04); }
.product-media .tag { position: absolute; left: 18px; top: 18px; z-index: 1; background: white; color: var(--pink-500); padding: 8px 12px; border-radius: 999px; font-size: 12px; font-weight: 800; }
.bag-illustration { position: relative; width: 150px; height: 130px; }
.bag-handle { position: absolute; left: 36px; top: 0; width: 76px; height: 58px; border: 10px solid var(--gold); border-bottom: 0; border-radius: 60px 60px 0 0; }
.bag-body { position: absolute; left: 0; bottom: 0; width: 150px; height: 98px; border-radius: 28px 28px 18px 18px; background: linear-gradient(135deg, #ffd3df, #fff5ed); border: 4px solid var(--gold); }
.bag-body::after { content: "♡"; position: absolute; inset: 0; display: grid; place-items: center; color: var(--pink-500); font-size: 38px; font-weight: 800; }
.product-info { padding: 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product-info small { color: var(--muted); }
.product-info h3 { margin: 0; font-size: 20px; }
.product-description { color: var(--muted); line-height: 1.55; margin: 0; }
.product-bottom { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.product-bottom strong, .price-line { color: var(--pink-500); font-size: 22px; font-weight: 900; }
.custom-section { margin: 0 7vw 80px; background: linear-gradient(135deg, var(--brown), #8b5549); color: #fff; border-radius: 38px; padding: 56px; display: grid; grid-template-columns: 1fr 420px; gap: 36px; align-items: center; box-shadow: var(--shadow); }
.custom-section h2, .custom-section p { color: #fff; }
.custom-section .eyebrow { color: #ffd1dc; }
.custom-section.light-card { background: #fff; color: var(--text); border: 1px solid #f4d5dc; }
.custom-section.light-card h2, .custom-section.light-card p { color: var(--brown); }
.steps { display: grid; gap: 14px; }
.steps div { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.18); border-radius: 22px; padding: 18px; display: flex; gap: 16px; align-items: center; }
.light-card .steps div { background: var(--pink-50); border-color: #f4d5dc; }
.steps strong { color: #ffd1dc; font-size: 22px; min-width: 34px; }
.light-card .steps strong { color: var(--pink-500); }
.testimonial-grid { grid-template-columns: repeat(3, 1fr); }
.testimonial-grid article, .contact-card, .contact-form, .faq-list details, .empty-state { background: #fff; border: 1px solid #f4d5dc; border-radius: 26px; padding: 24px; box-shadow: 0 12px 30px rgba(216,139,123,.1); }
.testimonial-grid strong { color: var(--gold); }
.testimonial-grid p, .testimonial-grid span { color: var(--muted); line-height: 1.7; }
.center { display: flex; justify-content: center; margin-top: 28px; }
.page-hero { padding: 76px 7vw 34px; text-align: center; background: linear-gradient(180deg, var(--pink-50), rgba(255,255,255,0)); }
.page-hero p { margin-left: auto; margin-right: auto; }
.category-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; justify-content: center; }
.product-detail { padding: 70px 7vw; display: grid; grid-template-columns: minmax(300px, .95fr) minmax(0, 1.05fr); gap: 44px; align-items: start; }
.gallery { display: grid; gap: 14px; }
.main-photo { min-height: 500px; border-radius: 34px; overflow: hidden; background: radial-gradient(circle at top left, #fff 0%, var(--pink-100) 46%, #f7c2d3 100%); box-shadow: var(--shadow); border: 1px solid #f4d5dc; display: grid; place-items: center; }
.main-photo img { width: 100%; height: 100%; max-height: 620px; object-fit: cover; }
.thumb-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.thumb-grid img { height: 110px; width: 100%; object-fit: cover; border-radius: 16px; border: 1px solid #f4d5dc; }
.product-detail-copy { background: #fff; border: 1px solid #f4d5dc; border-radius: 34px; padding: 34px; box-shadow: 0 16px 40px rgba(216,139,123,.12); }
.product-detail-copy p, .rich-text { color: var(--muted); line-height: 1.8; }
.badges { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0; }
.badges span { background: var(--pink-50); border: 1px solid #f2cbd4; border-radius: 999px; padding: 8px 12px; color: var(--brown); font-size: 13px; font-weight: 700; }
.detail-actions { display: flex; gap: 12px; flex-wrap: wrap; margin: 22px 0; }
.faq-list { display: grid; gap: 12px; max-width: 980px; margin: 0 auto; }
.faq-list details { padding: 0; overflow: hidden; }
.faq-list summary { cursor: pointer; padding: 20px 24px; font-weight: 800; color: var(--brown); }
.faq-list p { padding: 0 24px 22px; color: var(--muted); line-height: 1.75; margin: 0; }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 24px; align-items: start; }
.contact-form { display: grid; gap: 14px; }
.contact-form label { display: grid; gap: 7px; font-weight: 700; color: var(--brown); }
.contact-form input, .contact-form textarea { width: 100%; border: 1px solid #efc3cb; border-radius: 16px; padding: 13px 14px; font: inherit; color: var(--text); background: #fff; }
.site-footer { background: white; border-top: 1px solid #f4d5dc; padding: 44px 7vw; display: grid; grid-template-columns: 1fr 220px 220px; gap: 30px; }
.site-footer img { width: 170px; display: block; margin-bottom: 12px; }
.site-footer p { color: var(--muted); max-width: 420px; line-height: 1.7; }
.site-footer strong { display: block; color: var(--brown); margin-bottom: 14px; }
.site-footer a, .site-footer span { display: block; color: var(--muted); margin: 9px 0; overflow-wrap: anywhere; }
.small-muted { font-size: 13px; }
.floating-whatsapp { position: fixed; z-index: 80; right: 20px; bottom: 20px; background: #25d366; color: #fff; padding: 14px 18px; border-radius: 999px; font-weight: 900; box-shadow: 0 14px 30px rgba(37,211,102,.36); }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 300px; }
@media (prefers-reduced-motion: reduce) { * { animation: none !important; transition: none !important; scroll-behavior: auto !important; } }
@media (max-width: 1100px) { .site-header { flex-wrap: wrap; } .main-nav { order: 3; width: 100%; justify-content: center; flex-wrap: wrap; } .hero, .custom-section, .product-detail, .contact-grid { grid-template-columns: 1fr; } .category-grid { grid-template-columns: repeat(2, 1fr); } .product-grid, .testimonial-grid, .site-footer { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px) { .topbar { font-size: 12px; } .site-header { padding: 12px 18px; gap: 12px; } .brand img { width: 136px; } .menu-toggle { display: inline-flex; } .main-nav { display: none; width: 100%; order: 4; align-items: stretch; flex-direction: column; gap: 4px; background: #fff; border: 1px solid #f4d5dc; border-radius: 20px; padding: 12px; } .main-nav.is-open { display: flex; } .main-nav a { padding: 10px 12px; border-radius: 12px; } .main-nav a:hover { background: var(--pink-50); } .header-button { width: auto; padding: 10px 14px; font-size: 13px; } .hero { padding: 40px 20px; min-height: auto; gap: 28px; } .hero-card { min-height: 380px; padding: 14px; border-radius: 28px; } .carousel { min-height: 350px; } .hero-copy p, .page-hero p, .custom-section p { font-size: 16px; } .hero-actions .primary-button, .hero-actions .secondary-button, .detail-actions a { width: 100%; } .features, .category-grid, .product-grid, .testimonial-grid, .site-footer { grid-template-columns: 1fr; } .features { margin: 0 20px; } .features article { border-right: 0; border-bottom: 1px solid #f4d5dc; } .section-block, .page-hero, .product-detail, .site-footer { padding-left: 20px; padding-right: 20px; } .section-heading.split { display: block; text-align: center; } .custom-section { margin: 20px; padding: 32px 22px; border-radius: 28px; } .main-photo { min-height: 340px; } .product-detail-copy { padding: 24px; } .thumb-grid { grid-template-columns: repeat(2, 1fr); } .product-bottom { align-items: stretch; flex-direction: column; } .mini-button { width: 100%; } .floating-whatsapp { left: 20px; right: 20px; text-align: center; } body { padding-bottom: 70px; } }
