:root {
  --rose: #c9847a; --rose-deep: #a85d52;
  --cream: #faf6f2; --cream-warm: #f3ebe2;
  --ink: #2b1f1c; --ink-soft: #5c4843;
  --gold: #b08968; --whatsapp: #25d366;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Outfit', sans-serif; background: var(--cream); color: var(--ink); line-height: 1.6; overflow-x: hidden; }
h1, h2, h3 { font-family: 'Cormorant Garamond', serif; font-weight: 500; letter-spacing: -0.01em; }
img { max-width: 100%; height: auto; display: block; }

.top-bar { background: var(--ink); color: var(--cream); padding: 10px 20px; text-align: center; font-size: 0.85rem; letter-spacing: 0.05em; }
.top-bar a { color: var(--cream-warm); text-decoration: none; margin: 0 8px; }

header { padding: 24px 6vw; display: flex; justify-content: space-between; align-items: center; background: var(--cream); position: sticky; top: 0; z-index: 100; border-bottom: 1px solid rgba(176,137,104,0.15); }
.logo { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-style: italic; color: var(--rose-deep); letter-spacing: 0.02em; text-decoration: none; }
.logo span { color: var(--ink); font-style: normal; font-weight: 600; margin-left: 4px; }
nav { display: flex; gap: 24px; align-items: center; }
nav a { color: var(--ink); text-decoration: none; font-size: 0.95rem; font-weight: 400; transition: color 0.2s; }
nav a:hover { color: var(--rose-deep); }
.header-cta { background: var(--rose-deep); color: var(--cream) !important; padding: 10px 22px; border-radius: 30px; font-size: 0.9rem; font-weight: 500; }
.header-cta:hover { background: var(--ink); }
.menu-toggle { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--ink); }

/* ===== HERO with real product image ===== */
.hero { padding: 80px 6vw 100px; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; position: relative; background: linear-gradient(135deg, var(--cream) 0%, var(--cream-warm) 100%); }
.hero::before { content: ''; position: absolute; top: 10%; right: 5%; width: 280px; height: 280px; background: radial-gradient(circle, var(--rose) 0%, transparent 70%); opacity: 0.15; border-radius: 50%; filter: blur(40px); }
.hero-tag { display: inline-block; background: rgba(201,132,122,0.15); color: var(--rose-deep); padding: 6px 16px; border-radius: 20px; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 24px; }
.hero h1 { font-size: clamp(2.4rem, 5vw, 4rem); line-height: 1.05; color: var(--ink); margin-bottom: 24px; }
.hero h1 em { color: var(--rose-deep); font-weight: 600; font-style: italic; }
.hero p { font-size: 1.1rem; color: var(--ink-soft); margin-bottom: 36px; max-width: 520px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-image { position: relative; aspect-ratio: 4/5; border-radius: 8px; overflow: hidden; background: linear-gradient(135deg, var(--rose) 0%, var(--rose-deep) 100%); display: flex; align-items: center; justify-content: center; box-shadow: 0 30px 60px rgba(43,31,28,0.15); }
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-image-fallback { text-align: center; color: var(--cream); padding: 40px; }
.hero-image-fallback .quote { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.6rem; line-height: 1.3; margin-bottom: 16px; }
.hero-image-fallback .author { font-size: 0.85rem; letter-spacing: 0.15em; text-transform: uppercase; opacity: 0.85; }
.hero-image img[src=""] + .hero-image-fallback { display: block; }

.btn { padding: 16px 32px; border-radius: 50px; text-decoration: none; font-weight: 500; font-size: 1rem; display: inline-flex; align-items: center; gap: 10px; transition: all 0.3s; border: none; cursor: pointer; }
.btn-whatsapp { background: var(--whatsapp); color: white; box-shadow: 0 8px 24px rgba(37,211,102,0.3); }
.btn-whatsapp:hover { transform: translateY(-3px); }
.btn-call { background: var(--ink); color: var(--cream); }
.btn-call:hover { background: var(--rose-deep); }

.trust-strip { background: var(--ink); color: var(--cream); padding: 30px 6vw; display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.trust-item h3 { font-size: 2rem; color: var(--rose); margin-bottom: 4px; }
.trust-item p { font-size: 0.85rem; letter-spacing: 0.05em; opacity: 0.85; }

.section { padding: 100px 6vw; }
.section-label { font-size: 0.75rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.section h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.section h2 em { color: var(--rose-deep); font-style: italic; }
.section-intro { color: var(--ink-soft); max-width: 600px; margin-bottom: 50px; font-size: 1.05rem; }

/* ===== CATEGORY CARDS with real product photos ===== */
.category-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.category-card { background: white; border-radius: 8px; overflow: hidden; border: 1px solid rgba(176,137,104,0.15); text-decoration: none; color: var(--ink); display: flex; flex-direction: column; transition: all 0.3s; }
.category-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(43,31,28,0.1); }
.category-img { aspect-ratio: 4/3; overflow: hidden; background: var(--cream-warm); position: relative; }
.category-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.category-card:hover .category-img img { transform: scale(1.05); }
.no-img-label { display: none; position: absolute; inset: 0; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.4rem; color: var(--rose-deep); text-align: center; padding: 20px; }
.category-img.no-img .no-img-label { display: flex; }
.category-content { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.category-content h3 { font-size: 1.5rem; margin-bottom: 10px; }
.category-content p { font-size: 0.95rem; color: var(--ink-soft); margin-bottom: 16px; flex: 1; }
.category-link { color: var(--rose-deep); font-weight: 500; font-size: 0.95rem; }

.festival-card { border: 2px solid var(--gold); position: relative; }
.festival-card::before { content: 'FESTIVE'; position: absolute; top: 12px; right: 12px; background: var(--gold); color: white; padding: 4px 10px; border-radius: 20px; font-size: 0.7rem; letter-spacing: 0.1em; z-index: 2; }

/* ===== WHY US ===== */
.why-us { background: var(--cream-warm); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px; margin-top: 40px; }
.why-number { font-family: 'Cormorant Garamond', serif; font-size: 3rem; color: var(--rose-deep); font-style: italic; line-height: 1; margin-bottom: 16px; }
.why-item h3 { font-size: 1.4rem; margin-bottom: 10px; }
.why-item p { color: var(--ink-soft); font-size: 0.95rem; }

.highlight-quote { background: var(--ink); color: var(--cream); padding: 100px 6vw; text-align: center; }
.highlight-quote .quote-mark { font-family: 'Cormorant Garamond', serif; font-size: 5rem; color: var(--rose); line-height: 0.5; margin-bottom: 20px; }
.highlight-quote p { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.5rem, 3vw, 2.4rem); font-style: italic; max-width: 800px; margin: 0 auto 24px; line-height: 1.4; }
.highlight-quote .small { font-size: 0.85rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--rose); }

.cta-section { background: linear-gradient(135deg, var(--rose) 0%, var(--rose-deep) 100%); color: white; text-align: center; padding: 90px 6vw; }
.cta-section h2 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 16px; }
.cta-section p { margin-bottom: 36px; font-size: 1.1rem; opacity: 0.95; }
.cta-section .btn { background: white; color: var(--rose-deep); }
.cta-section .btn:hover { background: var(--ink); color: white; }

.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { background: white; border: 1px solid rgba(176,137,104,0.15); border-radius: 4px; margin-bottom: 16px; overflow: hidden; }
.faq-question { padding: 24px 28px; font-size: 1.1rem; font-weight: 500; cursor: pointer; display: flex; justify-content: space-between; align-items: center; color: var(--ink); background: none; border: none; width: 100%; text-align: left; font-family: inherit; }
.faq-question::after { content: '+'; font-size: 1.5rem; color: var(--rose-deep); transition: transform 0.3s; }
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; padding: 0 28px; color: var(--ink-soft); }
.faq-item.open .faq-answer { max-height: 500px; padding: 0 28px 24px; }

.visit { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.visit-detail { margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid rgba(176,137,104,0.2); }
.visit-detail:last-of-type { border: none; }
.visit-detail h4 { font-family: 'Outfit', sans-serif; font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.visit-detail p { color: var(--ink); font-size: 1.05rem; }
.map-placeholder { aspect-ratio: 4/3; background: var(--cream-warm); border-radius: 4px; border: 1px solid rgba(176,137,104,0.2); display: flex; align-items: center; justify-content: center; color: var(--ink-soft); font-size: 0.9rem; text-align: center; padding: 20px; }

footer { background: var(--ink); color: var(--cream); padding: 50px 6vw 30px; text-align: center; }
footer .logo { color: var(--rose); margin-bottom: 16px; display: inline-block; }
footer .logo span { color: var(--cream); }
footer p { font-size: 0.9rem; opacity: 0.7; margin: 8px 0; }
footer nav { justify-content: center; margin: 20px 0; flex-wrap: wrap; }
footer nav a { color: var(--cream); opacity: 0.8; }

.float-wa { position: fixed; bottom: 24px; right: 24px; width: 60px; height: 60px; background: var(--whatsapp); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.8rem; box-shadow: 0 8px 24px rgba(37,211,102,0.4); z-index: 200; text-decoration: none; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { box-shadow: 0 8px 24px rgba(37,211,102,0.4); } 50% { box-shadow: 0 8px 24px rgba(37,211,102,0.7), 0 0 0 12px rgba(37,211,102,0.1); } }

.page-hero { padding: 60px 6vw 40px; background: linear-gradient(135deg, var(--cream) 0%, var(--cream-warm) 100%); text-align: center; }
.page-hero h1 { font-size: clamp(2rem, 4.5vw, 3.5rem); margin-bottom: 16px; }
.page-hero h1 em { color: var(--rose-deep); font-style: italic; }
.page-hero p { color: var(--ink-soft); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }
.breadcrumb { font-size: 0.85rem; color: var(--ink-soft); margin-bottom: 20px; }
.breadcrumb a { color: var(--rose-deep); text-decoration: none; }

/* ===== CATALOGUE ===== */
.cat-filter { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 40px; }
.filter-btn { padding: 8px 20px; border-radius: 30px; border: 1px solid var(--rose-deep); background: white; color: var(--rose-deep); cursor: pointer; font-family: inherit; font-size: 0.9rem; transition: all 0.2s; }
.filter-btn:hover { background: var(--cream-warm); }
.filter-btn.active { background: var(--rose-deep); color: white; }
.cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
.cat-item { background: white; border-radius: 8px; overflow: hidden; border: 1px solid rgba(176,137,104,0.15); transition: all 0.3s; display: flex; flex-direction: column; }
.cat-item:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(43,31,28,0.1); }
.cat-img { aspect-ratio: 1/1; overflow: hidden; cursor: pointer; background: var(--cream-warm); position: relative; }
.cat-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.cat-img.no-img .no-img-label { display: flex; }
.cat-item:hover .cat-img img { transform: scale(1.05); }
.cat-info { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.cat-cat { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.cat-info h3 { font-size: 1.3rem; margin-bottom: 8px; }
.cat-info p { font-size: 0.9rem; color: var(--ink-soft); margin-bottom: 16px; flex: 1; }
.cat-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.cat-price { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 600; color: var(--rose-deep); }
.cat-buy { background: var(--whatsapp); color: white; padding: 10px 18px; border-radius: 30px; font-size: 0.85rem; text-decoration: none; font-weight: 500; }
.cat-buy:hover { transform: translateY(-2px); }

#lightbox { position: fixed; inset: 0; background: rgba(43,31,28,0.85); display: none; align-items: center; justify-content: center; z-index: 1000; padding: 20px; }
#lightbox.open { display: flex; }
.lb-content { background: white; max-width: 900px; width: 100%; max-height: 90vh; border-radius: 8px; overflow: hidden; display: grid; grid-template-columns: 1fr 1fr; position: relative; }
.lb-img { width: 100%; height: 100%; object-fit: cover; min-height: 400px; background: var(--cream-warm); }
.lb-details { padding: 40px; display: flex; flex-direction: column; }
.lb-details h3 { font-size: 1.8rem; margin-bottom: 12px; }
.lb-desc { color: var(--ink-soft); margin-bottom: 20px; flex: 1; }
.lb-price { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; color: var(--rose-deep); font-weight: 600; margin-bottom: 24px; }
.lb-buy { background: var(--whatsapp); color: white; padding: 14px 28px; border-radius: 50px; font-weight: 500; text-decoration: none; text-align: center; }
.lb-close { position: absolute; top: 12px; right: 12px; width: 40px; height: 40px; border-radius: 50%; background: rgba(0,0,0,0.6); color: white; border: none; font-size: 1.5rem; cursor: pointer; z-index: 10; }

@media (max-width: 800px) {
  .hero { grid-template-columns: 1fr; padding: 50px 6vw 70px; gap: 40px; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .visit { grid-template-columns: 1fr; }
  .section { padding: 70px 6vw; }
  .top-bar { font-size: 0.75rem; }
  nav { display: none; position: fixed; top: 80px; left: 0; right: 0; background: var(--cream); flex-direction: column; padding: 20px; }
  nav.open { display: flex; }
  .menu-toggle { display: block; }
  .lb-content { grid-template-columns: 1fr; max-height: 95vh; overflow-y: auto; }
  .lb-img { min-height: 250px; aspect-ratio: 1/1; }
  .lb-details { padding: 24px; }
}
