/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { overflow-x: hidden; font-family: 'Poppins', sans-serif; background: #FFF8F0; color: #3E2723; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #FFF3E0; }
::-webkit-scrollbar-thumb { background: #8D6E63; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #4E342E; }

/* ===== ANIMATIONS ===== */
@keyframes floatSlow { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-20px); } }
@keyframes rotate3d { 0% { transform: rotateY(0deg); } 100% { transform: rotateY(360deg); } }
@keyframes typing-cursor { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes bounce-gentle { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes gradient-shift { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInLeft { from { opacity: 0; transform: translateX(-40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes scaleIn { from { opacity: 0; transform: scale(0.8); } to { opacity: 1; transform: scale(1); } }
@keyframes floatEmoji { 0% { transform: translateY(0) rotateY(0deg) rotateX(0deg); } 25% { transform: translateY(-20px) rotateY(90deg) rotateX(-10deg); } 50% { transform: translateY(-10px) rotateY(180deg) rotateX(10deg); } 75% { transform: translateY(-25px) rotateY(270deg) rotateX(-5deg); } 100% { transform: translateY(0) rotateY(360deg) rotateX(0deg); } }
@keyframes scrollBounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(8px); } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }

/* ===== UTILITY CLASSES ===== */
.font-playfair { font-family: 'Playfair Display', serif; }
.font-poppins { font-family: 'Poppins', sans-serif; }
.max-w-7xl { max-width: 1280px; margin: 0 auto; }
.text-gradient { background: linear-gradient(to right, #FF6F61, #FFD54F, #FFA726); background-size: 200% auto; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; animation: gradient-shift 4s ease infinite; }
.decoration-dots { background-image: radial-gradient(circle, #FFD54F 1px, transparent 1px); background-size: 20px 20px; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-50px); transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(50px); transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.85); transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1); }
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* ===== NAVBAR ===== */
#navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 999; transition: all 0.3s; overflow: hidden; background: linear-gradient(to bottom, rgba(0,0,0,0.4), transparent); }
#navbar.scrolled { background: rgba(62,39,35,0.95); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); box-shadow: 0 25px 50px -12px rgba(0,0,0,0.2); }
#navbar .nav-inner { max-width: 1280px; margin: 0 auto; padding: 0 16px; display: flex; align-items: center; justify-content: space-between; height: 64px; }
@media(min-width:640px) { #navbar .nav-inner { padding: 0 24px; height: 68px; } }
@media(min-width:768px) { #navbar .nav-inner { padding: 0 32px; height: 76px; } }
.nav-golden-line { position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: linear-gradient(to right, transparent, rgba(255,213,79,0.5), transparent); opacity: 0.4; transition: opacity 0.3s; }
#navbar.scrolled .nav-golden-line { opacity: 1; }
.nav-logo { display: flex; align-items: center; gap: 8px; z-index: 10; }
.nav-logo-icon { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, #FF6F61, #FFD54F); display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(255,111,97,0.3); flex-shrink: 0; color: white; }
.nav-logo-text { font-size: 18px; font-weight: 700; color: white; white-space: nowrap; }
@media(min-width:640px) { .nav-logo-text { font-size: 20px; } }
@media(min-width:768px) { .nav-logo-text { font-size: 24px; } }
.nav-desktop { display: none; align-items: center; gap: 20px; }
@media(min-width:768px) { .nav-desktop { display: flex; } }
@media(min-width:1024px) { .nav-desktop { gap: 28px; } }
.nav-link { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.8); transition: color 0.3s; position: relative; }
.nav-link:hover { color: #FFD54F; }
.nav-link::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: #FFD54F; transition: width 0.3s; }
.nav-link:hover::after { width: 100%; }
.nav-whatsapp { display: flex; align-items: center; gap: 6px; background: #25D366; color: white; font-size: 14px; font-weight: 600; border-radius: 50px; padding: 8px 16px; box-shadow: 0 4px 14px rgba(37,211,102,0.3); transition: all 0.3s; }
.nav-whatsapp:hover { background: #1da851; transform: scale(1.05); box-shadow: 0 6px 20px rgba(37,211,102,0.5); }
.nav-order-btn { background: #FF6F61; color: white; font-size: 14px; font-weight: 600; border-radius: 50px; padding: 8px 16px; box-shadow: 0 4px 14px rgba(255,111,97,0.3); transition: all 0.3s; display: flex; align-items: center; gap: 6px; }
.nav-order-btn:hover { background: #E64A19; transform: scale(1.05); box-shadow: 0 6px 20px rgba(255,111,97,0.5); }
.nav-mobile { display: flex; align-items: center; gap: 8px; }
@media(min-width:768px) { .nav-mobile { display: none; } }
.nav-mobile-whatsapp { width: 40px; height: 40px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 14px rgba(37,211,102,0.3); transition: all 0.3s; flex-shrink: 0; color: white; }
.nav-mobile-whatsapp:hover { background: #1da851; transform: scale(1.05); }
.nav-hamburger { width: 40px; height: 40px; border-radius: 12px; background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); display: flex; align-items: center; justify-content; center; border: 1px solid rgba(255,255,255,0.2); transition: all 0.3s; flex-shrink: 0; color: white; }
.nav-hamburger:hover { background: rgba(255,255,255,0.2); }

/* Mobile Menu Overlay */
.mobile-menu-overlay { position: fixed; inset: 0; z-index: 1000; background: rgba(0,0,0,0.5); opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.mobile-menu-overlay.open { opacity: 1; pointer-events: all; }
.mobile-menu-panel { position: fixed; top: 0; right: -300px; width: 288px; height: 100%; background: #3E2723; border-left: 1px solid #5D4037; z-index: 1001; transition: right 0.3s cubic-bezier(0.23, 1, 0.32, 1); display: flex; flex-direction: column; }
.mobile-menu-panel.open { right: 0; }
.mobile-menu-header { padding: 24px; padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: space-between; }
.mobile-menu-header h2 { color: white; font-size: 20px; display: flex; align-items: center; gap: 8px; }
.mobile-menu-close { width: 32px; height: 32px; border-radius: 8px; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: white; transition: background 0.3s; }
.mobile-menu-close:hover { background: rgba(255,255,255,0.2); }
.mobile-menu-links { flex: 1; padding: 16px; display: flex; flex-direction: column; gap: 4px; }
.mobile-menu-links a { color: rgba(255,255,255,0.8); padding: 12px 16px; border-radius: 12px; font-size: 16px; font-weight: 500; transition: all 0.3s; }
.mobile-menu-links a:hover { color: #FFD54F; background: rgba(255,255,255,0.05); }
.mobile-menu-footer { padding: 16px; border-top: 1px solid rgba(255,255,255,0.1); display: flex; flex-direction: column; gap: 12px; }
.mobile-menu-footer .mobile-wa-btn { display: flex; align-items: center; justify-content: center; gap: 8px; background: #25D366; color: white; border-radius: 12px; padding: 12px; font-weight: 600; box-shadow: 0 4px 14px rgba(37,211,102,0.3); transition: all 0.3s; }
.mobile-menu-footer .mobile-wa-btn:hover { background: #1da851; }
.mobile-menu-footer .mobile-order-btn { display: flex; align-items: center; justify-content: center; gap: 8px; background: #FF6F61; color: white; border-radius: 12px; padding: 12px; font-weight: 600; transition: all 0.3s; }
.mobile-menu-footer .mobile-order-btn:hover { background: #E64A19; }

/* ===== HERO SECTION ===== */
#hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; background: #3E2723; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.15; transform: scale(1.1); }
.hero-bg-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, #2C1810, #3E2723, #3E2723); }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(100px); pointer-events: none; transition: transform 0.3s ease-out; }
.hero-orb-1 { top: 80px; left: 40px; width: 320px; height: 320px; background: rgba(255,111,97,0.15); }
.hero-orb-2 { bottom: 80px; right: 40px; width: 384px; height: 384px; background: rgba(255,213,79,0.1); }
.hero-orb-3 { top: 50%; left: 50%; transform: translate(-50%, -50%); width: 256px; height: 256px; background: rgba(255,111,97,0.1); filter: blur(80px); }
.hero-content { position: relative; z-index: 10; padding: 80px 12px 40px; max-width: 1280px; margin: 0 auto; width: 100%; }
@media(min-width:640px) { .hero-content { padding: 96px 16px 40px; } }
@media(min-width:768px) { .hero-content { padding: 112px 24px 40px; } }
.hero-inner { display: flex; flex-direction: column; align-items: center; gap: 32px; }
@media(min-width:1024px) { .hero-inner { flex-direction: row; gap: 48px; justify-content: space-between; } }
.hero-text { flex: 1; text-align: center; }
@media(min-width:1024px) { .hero-text { text-align: left; } }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.1); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.2); border-radius: 50px; padding: 10px 20px; margin-bottom: 32px; box-shadow: 0 4px 16px rgba(0,0,0,0.1); opacity: 0; transform: scale(0.8); animation: scaleIn 0.6s 0.3s forwards; }
.hero-badge span { color: rgba(255,255,255,0.9); font-size: 14px; font-weight: 500; }
.hero-badge .badge-icon { color: #FFD54F; }
.hero-title { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 700; color: white; line-height: 1.1; margin-bottom: 24px; opacity: 0; transform: translateY(50px); animation: fadeInUp 0.8s 0.5s forwards; }
@media(min-width:640px) { .hero-title { font-size: 48px; } }
@media(min-width:768px) { .hero-title { font-size: 60px; } }
@media(min-width:1024px) { .hero-title { font-size: 72px; } }
@media(min-width:1280px) { .hero-title { font-size: 96px; } }
.hero-subtitle { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 300; color: rgba(255,243,224,0.8); margin-bottom: 16px; opacity: 0; transform: translateY(30px); animation: fadeInUp 0.8s 0.7s forwards; }
@media(min-width:640px) { .hero-subtitle { font-size: 20px; } }
@media(min-width:768px) { .hero-subtitle { font-size: 24px; } }
.hero-typing { height: 28px; margin-bottom: 32px; opacity: 0; animation: fadeInUp 0.5s 1s forwards; }
.hero-typing span { color: rgba(255,243,224,0.5); font-size: 14px; font-family: monospace; }
@media(min-width:640px) { .hero-typing span { font-size: 16px; } }
.typing-cursor { display: inline-block; width: 2px; height: 16px; background: #FF6F61; margin-left: 4px; vertical-align: middle; animation: typing-cursor 1s infinite; }
.hero-buttons { display: flex; flex-direction: column; gap: 16px; justify-content: center; opacity: 0; transform: translateY(30px); animation: fadeInUp 0.8s 1s forwards; }
@media(min-width:640px) { .hero-buttons { flex-direction: row; } }
@media(min-width:1024px) { .hero-buttons { justify-content: flex-start; } }
.btn-primary { background: linear-gradient(to right, #FF6F61, #E64A19); color: white; border-radius: 50px; padding: 20px 32px; font-size: 18px; font-weight: 600; box-shadow: 0 8px 30px rgba(255,111,97,0.3); transition: all 0.3s; display: inline-flex; align-items: center; gap: 8px; }
.btn-primary:hover { background: linear-gradient(to right, #E64A19, #FF6F61); transform: scale(1.05); box-shadow: 0 12px 40px rgba(255,111,97,0.5); }
.btn-outline { border: 1px solid rgba(255,255,255,0.3); color: white; border-radius: 50px; padding: 20px 32px; font-size: 18px; font-weight: 600; backdrop-filter: blur(10px); transition: all 0.3s; display: inline-flex; align-items: center; gap: 8px; background: transparent; }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); transform: scale(1.05); }

/* Floating emojis */
.hero-emojis { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.floating-emoji { position: absolute; font-size: 40px; opacity: 0.2; user-select: none; }
@media(min-width:640px) { .floating-emoji { font-size: 48px; } }

/* 3D Cake */
.hero-cake-wrapper { flex-shrink: 0; perspective: 1200px; opacity: 0; transform: scale(0.3) translateX(80px); animation: fadeInUp 1.2s 0.6s forwards; }
.cake-3d-container { position: relative; perspective: 1500px; }
.cake-3d { position: relative; width: 288px; height: 192px; transform-style: preserve-3d; animation: floatSlow 6s ease-in-out infinite; transition: transform 0.15s ease-out; }
@media(min-width:640px) { .cake-3d { width: 384px; height: 256px; } }
@media(min-width:1024px) { .cake-3d { width: 500px; height: 340px; } }
.cake-3d-image { position: absolute; inset: 0; border-radius: 24px; overflow: hidden; box-shadow: 0 0 80px rgba(255,111,97,0.3), 0 0 120px rgba(255,213,79,0.15); transform: translateZ(0); }
.cake-3d-image img { width: 100%; height: 100%; object-fit: cover; }
.cake-3d-image .cake-gradient { position: absolute; inset: 0; background: linear-gradient(to top, rgba(62,39,35,0.7), rgba(62,39,35,0.1), transparent); }
.cake-border-1 { position: absolute; inset: -4px; border-radius: 28px; border: 1px solid rgba(255,213,79,0.3); pointer-events: none; transform: translateZ(2px); }
.cake-border-2 { position: absolute; inset: -8px; border-radius: 32px; border: 1px solid rgba(255,213,79,0.1); pointer-events: none; transform: translateZ(-5px); }
.cake-ring-gold { position: absolute; inset: -24px; border-radius: 40px; border: 2px dashed rgba(255,213,79,0.3); transform: translateZ(50px) rotateX(65deg); animation: rotate3d 25s linear infinite; }
.cake-ring-pink { position: absolute; inset: -40px; border-radius: 48px; border: 1px dashed rgba(255,111,97,0.2); transform: translateZ(-30px) rotateX(65deg); animation: rotate3d 35s linear infinite reverse; }
.cake-orbit-icon { position: absolute; display: flex; align-items: center; justify-content: center; border-radius: 50%; box-shadow: 0 4px 16px; color: white; }
.cake-glow-1 { position: absolute; inset: 0; border-radius: 24px; background: rgba(255,111,97,0.15); filter: blur(60px); animation: pulse 3s infinite; }
.cake-glow-2 { position: absolute; inset: -48px; border-radius: 24px; background: rgba(255,213,79,0.08); filter: blur(80px); animation: pulse 3s 1s infinite; }

/* Scroll indicator */
.scroll-indicator { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; opacity: 0; animation: fadeInUp 0.5s 1.5s forwards; }
.scroll-indicator span { color: rgba(255,255,255,0.4); font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase; }
.scroll-indicator i { color: rgba(255,255,255,0.4); animation: scrollBounce 1.5s infinite; }

/* ===== MARQUEE ===== */
.marquee-banner { background: linear-gradient(to right, #FF6F61, #E64A19); padding: 16px 0; overflow: hidden; }
.marquee-track { display: flex; white-space: nowrap; animation: marquee 25s linear infinite; }
.marquee-item { display: inline-flex; align-items: center; gap: 12px; color: white; font-weight: 600; font-size: 14px; margin: 0 16px; }
@media(min-width:640px) { .marquee-item { font-size: 16px; } }
.marquee-item .star { color: #FFD54F; }

/* ===== SECTION HEADING ===== */
.section-heading { text-align: center; margin-bottom: 48px; }
@media(min-width:768px) { .section-heading { margin-bottom: 64px; } }
.section-heading .label { display: inline-block; font-size: 14px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 12px; }
.section-heading .label.dark { color: #FF6F61; }
.section-heading .label.light { color: #FFD54F; }
.section-heading h2 { font-family: 'Playfair Display', serif; font-size: 30px; font-weight: 700; margin-bottom: 16px; }
@media(min-width:640px) { .section-heading h2 { font-size: 36px; } }
@media(min-width:1024px) { .section-heading h2 { font-size: 48px; } }
.section-heading h2.dark { color: #3E2723; }
.section-heading h2.light { color: white; }
.section-heading .subtitle { font-size: 16px; max-width: 640px; margin: 0 auto; }
@media(min-width:640px) { .section-heading .subtitle { font-size: 18px; } }
.section-heading .subtitle.dark { color: #8D6E63; }
.section-heading .subtitle.light { color: rgba(255,255,255,0.7); }
.section-heading .divider { width: 96px; height: 4px; background: linear-gradient(to right, #FF6F61, #FFD54F); margin: 16px auto 0; border-radius: 999px; }

/* ===== ABOUT SECTION ===== */
#about { padding: 80px 0; background: #FFF8F0; position: relative; overflow: hidden; }
@media(min-width:768px) { #about { padding: 112px 0; } }
.about-grid { display: grid; gap: 48px; align-items: center; }
@media(min-width:1024px) { .about-grid { grid-template-columns: 1fr 1fr; gap: 80px; } }
.about-image-wrap { position: relative; }
.about-image-container { position: relative; border-radius: 24px; overflow: hidden; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); }
.about-image-container img { width: 100%; aspect-ratio: 4/5; object-fit: cover; transition: transform 0.7s; }
.about-image-container:hover img { transform: scale(1.05); }
.about-image-border { position: absolute; inset: -12px; border: 2px dashed rgba(255,213,79,0.4); border-radius: 32px; z-index: 0; transition: border-color 0.3s; pointer-events: none; }
.about-image-wrap:hover .about-image-border { border-color: rgba(255,111,97,0.4); }
.about-badge { position: absolute; bottom: 16px; right: 16px; z-index: 20; background: #FF6F61; color: white; border-radius: 16px; padding: 12px 20px; box-shadow: 0 8px 24px rgba(255,111,97,0.3); }
.about-badge .value { font-size: 24px; font-weight: 700; }
.about-badge .label { font-size: 12px; opacity: 0.9; }
.about-text p { color: #6D4C41; line-height: 1.8; margin-bottom: 20px; }
.about-text .quote { color: #4E342E; font-weight: 600; font-size: 18px; font-style: italic; font-family: 'Playfair Display', serif; }
.about-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding-top: 16px; }
@media(min-width:640px) { .about-stats { grid-template-columns: repeat(4, 1fr); } }
.about-stat { text-align: center; padding: 16px; background: white; border-radius: 16px; box-shadow: 0 4px 12px rgba(0,0,0,0.05); border: 1px solid #FFE0B2; transition: all 0.3s; cursor: default; }
.about-stat:hover { box-shadow: 0 12px 24px rgba(0,0,0,0.1); transform: translateY(-4px); }
.about-stat .icon { font-size: 24px; margin-bottom: 4px; }
.about-stat .value { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; color: #FF6F61; }
@media(min-width:640px) { .about-stat .value { font-size: 30px; } }
.about-stat .label { font-size: 12px; color: #8D6E63; }

/* ===== SIGNATURE SECTION ===== */
.signature-section { padding: 80px 0; background: #3E2723; position: relative; overflow: hidden; }
@media(min-width:768px) { .signature-section { padding: 112px 0; } }
.signature-radial-1 { position: absolute; inset: 0; background: radial-gradient(circle at 30% 50%, rgba(255,111,97,0.08), transparent 50%); }
.signature-radial-2 { position: absolute; inset: 0; background: radial-gradient(circle at 70% 50%, rgba(255,213,79,0.06), transparent 50%); }
.signature-grid { display: grid; gap: 32px; position: relative; z-index: 1; }
@media(min-width:768px) { .signature-grid { grid-template-columns: repeat(3, 1fr); } }
.signature-card { background: rgba(255,255,255,0.05); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.1); border-radius: 24px; overflow: hidden; transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1); cursor: pointer; }
.signature-card:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,213,79,0.3); box-shadow: 0 25px 50px -12px rgba(255,213,79,0.1); transform: translateY(-12px); }
.signature-card-image { position: relative; height: 288px; overflow: hidden; }
.signature-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.signature-card:hover .signature-card-image img { transform: scale(1.1); }
.signature-card-image .overlay { position: absolute; inset: 0; background: linear-gradient(to top, #3E2723, transparent); }
.signature-bestseller-badge { position: absolute; top: 16px; left: 16px; background: #FFD54F; color: #3E2723; border-radius: 50px; padding: 6px 12px; font-weight: 700; font-size: 12px; display: flex; align-items: center; gap: 4px; box-shadow: 0 4px 12px rgba(0,0,0,0.2); }
.signature-price { position: absolute; bottom: 16px; right: 16px; font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; color: #FFD54F; }
.signature-card-body { padding: 24px; }
.signature-card-body h3 { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: white; margin-bottom: 8px; transition: color 0.3s; }
.signature-card:hover .signature-card-body h3 { color: #FFD54F; }
.signature-card-body p { color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.7; }
.signature-fav { margin-top: 16px; display: flex; align-items: center; gap: 8px; color: #FF6F61; font-weight: 500; font-size: 14px; transition: gap 0.3s; }
.signature-card:hover .signature-fav { gap: 12px; }

/* ===== MENU SECTION ===== */
#menu { padding: 80px 0; background: #FFF3E0; position: relative; }
@media(min-width:768px) { #menu { padding: 112px 0; } }
.menu-categories { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-bottom: 40px; }
@media(min-width:640px) { .menu-categories { gap: 12px; } }
.menu-cat-btn { padding: 10px 20px; border-radius: 50px; font-size: 14px; font-weight: 500; transition: all 0.3s; background: white; color: rgba(78,52,46,0.7); border: 1px solid #FFE0B2; box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
.menu-cat-btn:hover { color: #FF6F61; box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.menu-cat-btn.active { background: #FF6F61; color: white; border-color: #FF6F61; box-shadow: 0 4px 16px rgba(255,111,97,0.3); transform: scale(1.05); }
.menu-grid { display: grid; gap: 24px; }
@media(min-width:640px) { .menu-grid { grid-template-columns: repeat(2, 1fr); } }
@media(min-width:1024px) { .menu-grid { grid-template-columns: repeat(3, 1fr); } }
@media(min-width:1280px) { .menu-grid { grid-template-columns: repeat(4, 1fr); } }
.menu-card { perspective: 800px; }
.menu-card-inner { position: relative; background: white; border-radius: 16px; overflow: hidden; box-shadow: 0 4px 16px rgba(0,0,0,0.06); border: 1px solid rgba(255,224,178,0.5); transform-style: preserve-3d; transition: transform 0.2s ease-out, box-shadow 0.3s; }
.menu-card-inner:hover { box-shadow: 0 12px 32px rgba(0,0,0,0.12); }
.menu-card-glare { position: absolute; inset: 0; z-index: 20; pointer-events: none; opacity: 0; transition: opacity 0.3s; border-radius: 16px; }
.menu-card-inner:hover .menu-card-glare { opacity: 1; }
.menu-card-image { position: relative; height: 192px; overflow: hidden; }
.menu-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.menu-card-inner:hover .menu-card-image img { transform: scale(1.1); }
.menu-card-price { position: absolute; top: 12px; right: 12px; z-index: 10; background: #FF6F61; color: white; border-radius: 50px; padding: 4px 12px; font-weight: 700; font-size: 13px; box-shadow: 0 4px 12px rgba(0,0,0,0.2); }
.menu-card-body { padding: 16px; }
.menu-card-body h3 { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: #3E2723; margin-bottom: 4px; }
.menu-card-body p { color: #8D6E63; font-size: 14px; line-height: 1.6; margin-bottom: 12px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.menu-card-btn { width: 100%; background: #4E342E; color: #FFF3E0; border-radius: 12px; padding: 10px; font-size: 14px; font-weight: 500; display: flex; align-items: center; justify-content: center; gap: 6px; transition: all 0.3s; }
.menu-card-btn:hover { background: #3E2723; transform: scale(1.02); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section { padding: 80px 0; background: #4E342E; position: relative; overflow: hidden; }
@media(min-width:768px) { .testimonials-section { padding: 112px 0; } }
.testimonial-carousel { max-width: 768px; margin: 0 auto; position: relative; }
.testimonial-card { background: rgba(255,255,255,0.05); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.1); border-radius: 24px; padding: 32px; text-align: center; transition: all 0.4s; }
@media(min-width:640px) { .testimonial-card { padding: 40px; } }
.testimonial-quote-mark { font-size: 48px; color: rgba(255,213,79,0.3); line-height: 1; margin-bottom: 8px; }
.testimonial-text { color: rgba(255,255,255,0.9); font-size: 18px; line-height: 1.7; margin-bottom: 32px; font-style: italic; }
@media(min-width:640px) { .testimonial-text { font-size: 20px; } }
.testimonial-avatar { width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, #FF6F61, #FFD54F); display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 18px; margin: 0 auto 12px; box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.testimonial-name { color: white; font-family: 'Playfair Display', serif; font-weight: 700; font-size: 18px; margin-bottom: 4px; }
.testimonial-role { color: rgba(255,243,224,0.5); font-size: 14px; margin-bottom: 8px; }
.testimonial-stars { display: flex; gap: 4px; justify-content: center; }
.testimonial-stars .star { color: #FFD54F; }
.testimonial-dots { display: flex; justify-content: center; gap: 8px; margin-top: 32px; }
.testimonial-dot { border-radius: 999px; transition: all 0.3s; cursor: pointer; border: none; }
.testimonial-dot.active { width: 32px; height: 12px; background: #FF6F61; }
.testimonial-dot:not(.active) { width: 12px; height: 12px; background: rgba(255,255,255,0.2); }
.testimonial-dot:not(.active):hover { background: rgba(255,255,255,0.4); }

/* ===== GALLERY SECTION ===== */
#gallery { padding: 80px 0; background: #FFF8F0; }
@media(min-width:768px) { #gallery { padding: 112px 0; } }
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; auto-rows: 180px; }
@media(min-width:768px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); auto-rows: 220px; } }
@media(min-width:1024px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }
.gallery-item { position: relative; border-radius: 16px; overflow: hidden; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item .hover-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0); transition: all 0.3s; display: flex; align-items: center; justify-content: center; }
.gallery-item:hover .hover-overlay { background: rgba(0,0,0,0.4); }
.gallery-item .hover-icon { opacity: 0; transform: scale(0.75); transition: all 0.3s; }
.gallery-item:hover .hover-icon { opacity: 1; transform: scale(1); }
.gallery-item .hover-icon-inner { width: 48px; height: 48px; background: rgba(255,255,255,0.9); backdrop-filter: blur(10px); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(0,0,0,0.2); color: #3E2723; }
.gallery-item.span-2-col { grid-column: span 2; }
.gallery-item.span-2-row { grid-row: span 2; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 2000; background: rgba(0,0,0,0.95); backdrop-filter: blur(10px); display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox img { max-width: 90%; max-height: 85vh; object-fit: contain; border-radius: 12px; }
.lightbox-close { position: absolute; top: 20px; right: 20px; width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: white; transition: background 0.3s; border: none; cursor: pointer; }
.lightbox-close:hover { background: rgba(255,255,255,0.2); }

/* ===== CONTACT SECTION ===== */
#contact { padding: 80px 0; background: #FFF3E0; position: relative; }
@media(min-width:768px) { #contact { padding: 112px 0; } }
.contact-form-wrap { max-width: 672px; margin: 0 auto; }
.contact-form { background: white; border-radius: 24px; box-shadow: 0 8px 32px rgba(0,0,0,0.06); border: 1px solid #FFE0B2; padding: 24px; }
@media(min-width:640px) { .contact-form { padding: 32px; } }
.form-group { margin-bottom: 20px; }
.form-label { display: block; color: #3E2723; font-weight: 500; margin-bottom: 8px; font-size: 14px; }
.form-label .required { color: #FF6F61; }
.form-input, .form-select, .form-textarea { width: 100%; background: #FFF8F0; border: 1px solid #FFE0B2; border-radius: 12px; padding: 12px 16px; font-size: 14px; font-family: 'Poppins', sans-serif; color: #3E2723; outline: none; transition: border-color 0.3s, box-shadow 0.3s; }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: #FF6F61; box-shadow: 0 0 0 3px rgba(255,111,97,0.2); }
.form-input::placeholder, .form-textarea::placeholder { color: #8D6E63; opacity: 0.6; }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238D6E63' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 40px; cursor: pointer; }
.form-textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; gap: 20px; }
@media(min-width:640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-error { color: #FF6F61; font-size: 12px; margin-top: 4px; }
.form-submit { width: 100%; background: linear-gradient(to right, #FF6F61, #E64A19); color: white; border-radius: 12px; padding: 20px; font-size: 16px; font-weight: 600; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; box-shadow: 0 4px 16px rgba(255,111,97,0.2); transition: all 0.3s; }
.form-submit:hover { background: linear-gradient(to right, #E64A19, #FF6F61); box-shadow: 0 8px 32px rgba(255,111,97,0.3); }
.form-submit:disabled { opacity: 0.5; cursor: not-allowed; }

/* Toast */
.toast { position: fixed; bottom: 24px; right: 24px; z-index: 3000; background: #3E2723; color: white; border-radius: 16px; padding: 16px 24px; box-shadow: 0 12px 32px rgba(0,0,0,0.3); transform: translateY(100px); opacity: 0; transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1); max-width: 360px; }
.toast.show { transform: translateY(0); opacity: 1; }
.toast h4 { font-weight: 600; margin-bottom: 4px; }
.toast p { font-size: 14px; opacity: 0.8; }

/* ===== FOOTER ===== */
footer { background: #2C1810; color: rgba(255,243,224,0.7); padding-top: 64px; padding-bottom: 24px; }
.footer-grid { display: grid; gap: 32px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1); }
@media(min-width:640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media(min-width:1024px) { .footer-grid { grid-template-columns: 1fr 1fr 1fr 1fr; } }
.footer-brand p { font-size: 14px; line-height: 1.7; margin-bottom: 16px; color: rgba(255,243,224,0.5); }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a { width: 40px; height: 40px; background: rgba(255,255,255,0.05); border-radius: 12px; display: flex; align-items: center; justify-content: center; transition: all 0.3s; color: rgba(255,243,224,0.7); }
.footer-socials a:hover { background: #FF6F61; transform: scale(1.1); color: white; }
.footer-col h4 { color: white; font-family: 'Playfair Display', serif; font-weight: 600; margin-bottom: 16px; font-size: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a { color: rgba(255,243,224,0.5); font-size: 14px; transition: color 0.3s; }
.footer-col ul a:hover { color: #FFD54F; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; }
.footer-contact-icon { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.footer-contact-icon.pink { background: rgba(255,111,97,0.1); color: #FF6F61; }
.footer-contact-icon.gold { background: rgba(255,213,79,0.2); color: #FFC107; }
.footer-contact-text h5 { font-weight: 600; color: rgba(255,243,224,0.9); font-size: 14px; }
.footer-contact-text p { font-size: 13px; white-space: pre-line; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; padding-top: 24px; gap: 12px; }
.footer-bottom p { font-size: 13px; color: rgba(255,243,224,0.4); }
.footer-bottom-links { display: flex; gap: 16px; }
.footer-bottom-links a { font-size: 13px; color: rgba(255,243,224,0.4); transition: color 0.3s; }
.footer-bottom-links a:hover { color: #FFD54F; }

/* Back to top */
.back-to-top { position: fixed; bottom: 24px; right: 24px; z-index: 998; width: 48px; height: 48px; background: #FF6F61; color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(255,111,97,0.3); transition: all 0.3s; border: none; cursor: pointer; opacity: 0; transform: scale(0); pointer-events: none; }
.back-to-top.show { opacity: 1; transform: scale(1); pointer-events: all; }
.back-to-top:hover { background: #E64A19; transform: scale(1.1); }

/* Spinner */
.spinner { width: 16px; height: 16px; border: 2px solid rgba(255,255,255,0.3); border-top-color: white; border-radius: 50%; animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
