:root {
  --red: #C8171A; --red-deep: #8B0000; --red-light: #E8201D;
  --cream: #FFFFFF; --warm: #FFF8F5; --warm2: #FFF0E8;
  --gold: #C8860A; --gold-light: #F5B429;
  --charcoal: #1C1008; --text: #1A1A1A; --muted: #888; --border: #E8E8E8;
  --green: #1A7A3A; --shadow: rgba(200,23,26,0.12);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Outfit', sans-serif; background: #fff; color: var(--text); overflow-x: hidden; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 2px; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes notifAnim { 0% { opacity: 0; transform: translateY(-20px); } 10%, 85% { opacity: 1; transform: translateY(0); } 100% { opacity: 0; transform: translateY(-20px); } }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* NAV */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; transition: all 0.35s ease; padding: 0 5%; }
nav.scrolled { background: rgba(255,255,255,0.97); backdrop-filter: blur(20px); box-shadow: 0 2px 24px rgba(0,0,0,0.08); }
.nav-inner { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-logo { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 900; color: #fff; text-decoration: none; transition: color 0.3s; }
.nav-sub { color: rgba(255,255,255,0.5); font-size: 10px; font-style: italic; display: block; margin-top: -3px; transition: color 0.3s; }
nav.scrolled .nav-logo { color: var(--red); }
nav.scrolled .nav-sub { color: var(--muted); }
.nav-links { display: flex; gap: 26px; list-style: none; align-items: center; }
.nav-links a { color: rgba(255,255,255,0.85); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.2s; }
nav.scrolled .nav-links a { color: var(--text); }
.nav-links a:hover, .nav-links a:focus { color: var(--gold-light); }
nav.scrolled .nav-links a:hover { color: var(--red); }
.nav-cta { background: var(--red) !important; color: #fff !important; padding: 10px 22px; border-radius: 25px; font-weight: 700 !important; box-shadow: 0 4px 16px var(--shadow); }
.nav-account { display: flex; align-items: center; gap: 8px; }
.nav-account-btn { background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25); color: #fff; padding: 8px 16px; border-radius: 20px; font-size: 13px; font-weight: 600; text-decoration: none; transition: all 0.2s; cursor: pointer; font-family: 'Outfit', sans-serif; }
nav.scrolled .nav-account-btn { background: var(--warm); border-color: var(--border); color: var(--text); }
.nav-account-btn:hover { background: rgba(255,255,255,0.22); }
nav.scrolled .nav-account-btn:hover { background: var(--border); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.hamburger span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s; display: block; }
nav.scrolled .hamburger span { background: var(--text); }
.mobile-menu { display: none; position: fixed; top: 72px; left: 0; right: 0; background: #fff; padding: 24px 5%; z-index: 999; flex-direction: column; gap: 0; box-shadow: 0 8px 32px rgba(0,0,0,0.1); }
.mobile-menu a { color: var(--text); text-decoration: none; font-size: 16px; font-weight: 600; padding: 14px 0; border-bottom: 1px solid var(--border); display: block; }
.mobile-menu.open { display: flex; }

/* HERO */
.hero { min-height: 100vh; position: relative; display: flex; align-items: center; overflow: hidden; background: #1a1a1a; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center top; filter: brightness(0.42) saturate(1.15); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(160deg, rgba(139,0,0,0.6) 0%, rgba(0,0,0,0.25) 55%, rgba(0,0,0,0.6) 100%); }
.hero-content { max-width: 1280px; margin: 0 auto; padding: 130px 5% 80px; position: relative; z-index: 2; width: 100%; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25); border-radius: 30px; padding: 8px 18px; margin-bottom: 24px; animation: fadeUp 0.6s ease both; backdrop-filter: blur(10px); }
.hero-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold-light); animation: pulse 2s ease infinite; flex-shrink: 0; }
.hero-badge span { color: rgba(255,255,255,0.9); font-size: 13px; font-weight: 600; letter-spacing: 0.5px; }
h1.hero-title { font-family: 'Playfair Display', serif; font-size: clamp(42px, 6vw, 76px); font-weight: 900; color: #fff; line-height: 1.05; letter-spacing: -1.5px; animation: fadeUp 0.7s 0.1s ease both; max-width: 700px; }
h1.hero-title em { color: var(--gold-light); font-style: normal; }
.hero-sub { color: rgba(255,255,255,0.72); font-size: 18px; line-height: 1.75; margin: 20px 0 36px; font-weight: 300; animation: fadeUp 0.7s 0.2s ease both; max-width: 560px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; animation: fadeUp 0.7s 0.3s ease both; }
.btn-primary { background: var(--red); color: #fff; padding: 16px 32px; border-radius: 50px; font-weight: 800; font-size: 15px; text-decoration: none; display: inline-flex; align-items: center; gap: 10px; transition: all 0.3s; box-shadow: 0 8px 32px rgba(200,23,26,0.4); border: none; cursor: pointer; font-family: 'Outfit', sans-serif; }
.btn-primary:hover { background: var(--red-deep); transform: translateY(-3px); }
.btn-outline { background: rgba(255,255,255,0.1); color: #fff; padding: 16px 32px; border-radius: 50px; font-weight: 700; font-size: 15px; text-decoration: none; display: inline-flex; align-items: center; gap: 10px; border: 2px solid rgba(255,255,255,0.3); transition: all 0.3s; backdrop-filter: blur(10px); }
.btn-outline:hover { background: rgba(255,255,255,0.2); transform: translateY(-3px); }
.hero-stats { display: flex; gap: 36px; margin-top: 48px; animation: fadeUp 0.7s 0.4s ease both; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 900; color: var(--gold-light); }
.stat-label { color: rgba(255,255,255,0.5); font-size: 11px; margin-top: 2px; letter-spacing: 1px; text-transform: uppercase; }
.hero-scroll { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.4); font-size: 11px; display: flex; flex-direction: column; align-items: center; gap: 8px; animation: float 3s ease infinite; z-index: 2; letter-spacing: 2px; text-transform: uppercase; }
.scroll-line { width: 1px; height: 38px; background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent); }

/* MARQUEE */
.marquee-wrap { background: var(--red); padding: 14px 0; overflow: hidden; }
.marquee-track { display: flex; animation: marqueeScroll 24s linear infinite; white-space: nowrap; }
.marquee-item { display: inline-flex; align-items: center; gap: 10px; padding: 0 24px; font-size: 11px; font-weight: 800; color: rgba(255,255,255,0.9); letter-spacing: 2px; text-transform: uppercase; }
.mdot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold-light); flex-shrink: 0; }

/* SECTIONS */
section { padding: 88px 5%; }
.section-inner { max-width: 1280px; margin: 0 auto; }
.s-label { display: inline-block; background: rgba(200,23,26,0.08); color: var(--red); font-size: 11px; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase; padding: 6px 16px; border-radius: 20px; margin-bottom: 14px; }
.s-title { font-family: 'Playfair Display', serif; font-size: clamp(28px, 4vw, 46px); font-weight: 800; color: var(--text); line-height: 1.15; letter-spacing: -0.5px; }
.s-title em { color: var(--red); font-style: normal; }
.s-sub { color: var(--muted); font-size: 16px; line-height: 1.7; margin-top: 12px; max-width: 520px; }

/* ABOUT */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; margin-top: 52px; }
.about-img-wrap { border-radius: 28px; overflow: hidden; position: relative; box-shadow: 0 24px 64px rgba(0,0,0,0.12); }
.about-img-wrap img { width: 100%; height: 480px; object-fit: cover; object-position: center; filter: brightness(1.04) saturate(1.1); }
.about-badge-float { position: absolute; bottom: 22px; left: 22px; background: #fff; border-radius: 16px; padding: 12px 18px; box-shadow: 0 8px 28px rgba(0,0,0,0.15); display: flex; align-items: center; gap: 12px; }
.ab-num { font-size: 22px; color: var(--red); font-family: 'Playfair Display', serif; font-weight: 900; }
.ab-text strong { display: block; font-size: 13px; font-weight: 700; color: var(--text); }
.ab-text span { color: var(--muted); font-size: 11px; }
.about-p { color: #555; font-size: 15.5px; line-height: 1.85; margin-bottom: 14px; }
.vals { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 28px; }
.val { background: var(--warm); border: 1px solid var(--border); border-radius: 18px; padding: 18px; transition: all 0.3s; }
.val:hover { border-color: var(--red); box-shadow: 0 6px 20px var(--shadow); transform: translateY(-3px); }
.val-icon { font-size: 24px; margin-bottom: 7px; }
.val-title { font-weight: 700; font-size: 14px; }
.val-desc { color: var(--muted); font-size: 12px; margin-top: 3px; line-height: 1.5; }

/* MENU */
.menu-section { background: var(--charcoal); padding: 88px 5%; }
.cat-tabs { display: flex; gap: 8px; margin: 32px 0 24px; flex-wrap: wrap; }
.cat-tab { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.5); padding: 10px 20px; border-radius: 24px; font-size: 13px; font-weight: 600; cursor: pointer; transition: all 0.25s; font-family: 'Outfit', sans-serif; }
.cat-tab.active, .cat-tab:hover { background: var(--red); border-color: var(--red); color: #fff; }
.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 16px; }
.menu-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); border-radius: 20px; overflow: hidden; transition: all 0.3s; cursor: default; }
.menu-card:hover { border-color: rgba(200,23,26,0.5); transform: translateY(-5px); box-shadow: 0 18px 44px rgba(0,0,0,0.3); }
.mc-img { height: 155px; overflow: hidden; position: relative; background: #111; }
.mc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.menu-card:hover .mc-img img { transform: scale(1.06); }
.mc-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 48px; background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01)); }
.mc-badge { position: absolute; top: 9px; right: 9px; border-radius: 7px; padding: 3px 8px; font-size: 9px; font-weight: 800; letter-spacing: 0.5px; }
.b-hot { background: var(--red); color: #fff; }
.b-fav { background: var(--gold); color: var(--charcoal); }
.b-new { background: var(--green); color: #fff; }
.b-made { background: rgba(255,255,255,0.15); color: #fff; }
.mc-body { padding: 13px 15px 15px; }
.mc-name { font-family: 'Playfair Display', serif; font-size: 15px; font-weight: 800; color: #fff; line-height: 1.2; }
.mc-desc { color: rgba(255,255,255,0.38); font-size: 11px; margin-top: 4px; line-height: 1.5; }
.mc-foot { display: flex; justify-content: space-between; align-items: center; margin-top: 11px; }
.mc-price { font-family: 'Playfair Display', serif; font-size: 19px; font-weight: 900; color: var(--gold-light); }
.add-btn { background: var(--red); border: none; border-radius: 9px; padding: 7px 14px; color: #fff; font-size: 12px; font-weight: 700; cursor: pointer; font-family: 'Outfit', sans-serif; transition: all 0.2s; }
.add-btn:hover { background: var(--red-light); transform: scale(1.05); }

/* BUNDLES */
.bundle-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 32px; }
.bundle-card { border-radius: 24px; padding: 26px; position: relative; overflow: hidden; transition: all 0.3s; border: 1px solid rgba(255,255,255,0.06); }
.bundle-card:hover { transform: translateY(-6px); box-shadow: 0 22px 56px rgba(0,0,0,0.35); }
.bc1 { background: linear-gradient(135deg, #0D1F0D, #162216); }
.bc2 { background: linear-gradient(135deg, #221708, #1A1000); }
.bc3 { background: linear-gradient(135deg, #220808, #180000); }
.b-emoji { font-size: 42px; margin-bottom: 12px; display: block; }
.b-name { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 900; color: #fff; margin-bottom: 4px; }
.b-for { color: rgba(255,255,255,0.4); font-size: 12px; margin-bottom: 10px; }
.b-contents { color: rgba(255,255,255,0.3); font-size: 11px; line-height: 1.8; margin-bottom: 16px; }
.b-price { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 900; color: #fff; }
.b-cta { display: block; margin-top: 16px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); color: #fff; text-align: center; padding: 11px; border-radius: 12px; font-weight: 700; font-size: 13px; text-decoration: none; cursor: pointer; font-family: 'Outfit', sans-serif; transition: all 0.25s; }
.b-cta:hover { background: var(--red); border-color: var(--red); }

/* EVENTS */
.events-section { background: var(--warm); padding: 88px 5%; }
.ev-gallery { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 260px 260px; gap: 10px; margin-top: 44px; border-radius: 22px; overflow: hidden; }
.ev-img { overflow: hidden; position: relative; cursor: pointer; }
.ev-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s, filter 0.3s; filter: brightness(0.88) saturate(1.1); }
.ev-img:hover img { transform: scale(1.06); filter: brightness(1) saturate(1.2); }
.ev-main { grid-column: 1; grid-row: 1 / 3; }
.ev-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.5), transparent); display: flex; align-items: flex-end; padding: 18px; opacity: 0; transition: opacity 0.3s; }
.ev-img:hover .ev-overlay { opacity: 1; }
.ev-overlay span { color: #fff; font-weight: 700; font-size: 13px; }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 44px; }
.svc-card { background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 22px; text-align: center; transition: all 0.3s; }
.svc-card:hover { border-color: var(--red); box-shadow: 0 8px 28px var(--shadow); transform: translateY(-4px); }
.svc-icon { font-size: 34px; margin-bottom: 10px; }
.svc-title { font-weight: 700; font-size: 14px; color: var(--text); margin-bottom: 5px; }
.svc-desc { color: var(--muted); font-size: 12px; line-height: 1.6; margin-bottom: 14px; }
.svc-btn { background: var(--red); color: #fff; border: none; border-radius: 11px; padding: 9px 18px; font-size: 12px; font-weight: 700; cursor: pointer; font-family: 'Outfit', sans-serif; text-decoration: none; display: inline-block; transition: all 0.2s; }
.svc-btn:hover { background: var(--red-deep); transform: translateY(-2px); }
.event-tags { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 32px; justify-content: center; }
.etag { background: #fff; border: 1px solid var(--border); border-radius: 22px; padding: 7px 18px; font-size: 13px; font-weight: 600; transition: all 0.2s; cursor: default; }
.etag:hover { background: var(--red); color: #fff; border-color: var(--red); }

/* HOW IT WORKS */
.how-section { background: #fff; padding: 88px 5%; }
.how-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 52px; position: relative; }
.how-grid::before { content: ''; position: absolute; top: 48px; left: calc(12.5% + 8px); right: calc(12.5% + 8px); height: 2px; background: linear-gradient(to right, var(--red), var(--gold)); z-index: 0; }
.how-step { text-align: center; position: relative; z-index: 1; }
.how-num { width: 96px; height: 96px; border-radius: 50%; background: var(--red); color: #fff; font-family: 'Playfair Display', serif; font-size: 30px; font-weight: 900; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; box-shadow: 0 8px 28px var(--shadow); }
.how-title { font-weight: 700; font-size: 14px; color: var(--text); margin-bottom: 6px; }
.how-desc { color: var(--muted); font-size: 13px; line-height: 1.6; }

/* DELIVERY */
.delivery-section { background: var(--warm); padding: 88px 5%; }
.delivery-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; margin-top: 52px; }
.del-cards { display: flex; flex-direction: column; gap: 14px; }
.del-card { background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 20px 24px; display: flex; align-items: flex-start; gap: 14px; transition: all 0.3s; }
.del-card:hover { border-color: var(--red); box-shadow: 0 6px 24px var(--shadow); transform: translateX(4px); }
.del-icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(200,23,26,0.08); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.del-title { font-weight: 700; font-size: 14px; color: var(--text); margin-bottom: 3px; }
.del-desc { color: var(--muted); font-size: 13px; line-height: 1.6; }
.cov-box { background: #fff; border-radius: 24px; padding: 28px; box-shadow: 0 8px 36px rgba(0,0,0,0.07); border: 1px solid var(--border); }
.cov-title { font-family: 'Playfair Display', serif; font-size: 19px; font-weight: 800; color: var(--text); margin-bottom: 4px; }
.cov-sub { color: var(--muted); font-size: 13px; margin-bottom: 20px; }
.cov-list { display: flex; flex-direction: column; gap: 9px; }
.cov-item { display: flex; align-items: center; gap: 11px; padding: 11px 14px; border-radius: 12px; background: var(--warm); border: 1px solid var(--border); }
.cov-check { width: 26px; height: 26px; border-radius: 7px; background: var(--green); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 11px; flex-shrink: 0; }
.cov-name { font-weight: 600; font-size: 14px; }
.cov-fee { margin-left: auto; color: var(--red); font-weight: 700; font-size: 14px; font-family: 'Playfair Display', serif; }

/* ORDER CTA */
.order-section { background: linear-gradient(160deg, var(--red-deep), var(--red) 60%, #C84010); padding: 88px 5%; position: relative; overflow: hidden; }
.order-section::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(45deg, rgba(255,255,255,0.015) 0, rgba(255,255,255,0.015) 1px, transparent 0, transparent 50%); background-size: 20px 20px; }
.order-inner { max-width: 820px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.order-methods { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 40px 0; }
.order-method { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14); border-radius: 20px; padding: 24px 16px; text-decoration: none; transition: all 0.3s; cursor: pointer; font-family: 'Outfit', sans-serif; }
.order-method:hover { background: rgba(255,255,255,0.15); transform: translateY(-4px); }
.om-icon { font-size: 34px; margin-bottom: 10px; display: block; }
.om-title { color: #fff; font-weight: 700; font-size: 14px; margin-bottom: 4px; }
.om-desc { color: rgba(255,255,255,0.5); font-size: 12px; line-height: 1.5; }
.wa-big { display: inline-flex; align-items: center; gap: 11px; background: #fff; color: var(--red); padding: 17px 38px; border-radius: 50px; font-weight: 800; font-size: 17px; text-decoration: none; box-shadow: 0 12px 36px rgba(0,0,0,0.2); transition: all 0.3s; }
.wa-big:hover { background: var(--gold-light); color: var(--charcoal); transform: translateY(-3px); }
.wa-big svg { width: 22px; height: 22px; flex-shrink: 0; }

/* REVIEWS */
.reviews-section { background: #fff; padding: 88px 5%; }
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; }
.rev-card { background: var(--warm); border: 1px solid var(--border); border-radius: 22px; padding: 26px; transition: all 0.3s; position: relative; }
.rev-card:hover { border-color: var(--red); box-shadow: 0 8px 28px var(--shadow); transform: translateY(-4px); }
.rev-card::before { content: '"'; position: absolute; top: 12px; right: 18px; font-family: 'Playfair Display', serif; font-size: 68px; color: rgba(200,23,26,0.05); line-height: 1; }
.rev-stars { color: var(--gold); font-size: 14px; margin-bottom: 10px; letter-spacing: 2px; }
.rev-text { color: var(--text); font-size: 14px; line-height: 1.75; font-style: italic; margin-bottom: 16px; }
.rev-author { display: flex; align-items: center; gap: 9px; }
.rev-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--red); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 15px; font-family: 'Playfair Display', serif; flex-shrink: 0; }
.rev-name { font-weight: 700; font-size: 13px; }
.rev-loc { color: var(--muted); font-size: 11px; margin-top: 2px; }

/* GALLERY */
.gallery-section { background: var(--charcoal); padding: 72px 5%; }
.gal-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: 200px 200px; gap: 8px; margin-top: 40px; border-radius: 18px; overflow: hidden; }
.gal-item { overflow: hidden; position: relative; }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s, filter 0.3s; filter: brightness(0.82) saturate(1.1); }
.gal-item:hover img { transform: scale(1.08); filter: brightness(1) saturate(1.3); }
.gal-large { grid-column: span 2; grid-row: span 2; }
.gal-label { color: rgba(255,255,255,0.28); font-size: 11px; margin-top: 14px; text-align: center; letter-spacing: 1.5px; text-transform: uppercase; }

/* FOLLOW */
.follow-section { background: #fff; padding: 56px 5%; }
.follow-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.follow-title { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 800; margin-bottom: 6px; }
.follow-sub { color: var(--muted); font-size: 15px; margin-bottom: 28px; }
.social-row { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.soc-btn { display: flex; align-items: center; gap: 9px; padding: 13px 24px; border-radius: 50px; font-weight: 700; font-size: 14px; text-decoration: none; transition: all 0.3s; }
.soc-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 22px rgba(0,0,0,0.15); }
.soc-btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.soc-ig { background: linear-gradient(135deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D); color: #fff; }
.soc-wa { background: #25D366; color: #fff; }
.soc-tt { background: #010101; color: #fff; }

/* FOOTER */
.footer { background: var(--charcoal); padding: 64px 5% 0; }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 52px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.foot-brand { font-family: 'Playfair Display', serif; font-size: 30px; font-weight: 900; color: #fff; margin-bottom: 5px; }
.foot-brand span { color: var(--gold-light); }
.foot-tag { color: rgba(255,255,255,0.3); font-size: 12px; font-style: italic; margin-bottom: 16px; }
.foot-desc { color: rgba(255,255,255,0.38); font-size: 13px; line-height: 1.8; margin-bottom: 22px; }
.foot-socials { display: flex; gap: 9px; }
.foot-soc { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; text-decoration: none; transition: all 0.2s; }
.foot-soc:hover { background: var(--red); border-color: var(--red); transform: translateY(-3px); }
.foot-soc svg { width: 16px; height: 16px; }
.foot-col-title { color: rgba(255,255,255,0.35); font-size: 10px; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 16px; }
.foot-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.foot-links a { color: rgba(255,255,255,0.45); text-decoration: none; font-size: 13px; transition: color 0.2s; }
.foot-links a:hover { color: var(--gold-light); }
.foot-contact { display: flex; flex-direction: column; gap: 10px; }
.fci { display: flex; gap: 9px; align-items: flex-start; }
.fci-icon { font-size: 14px; margin-top: 2px; flex-shrink: 0; }
.fci-text { color: rgba(255,255,255,0.42); font-size: 13px; line-height: 1.5; }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; color: rgba(255,255,255,0.18); font-size: 12px; flex-wrap: wrap; gap: 8px; }
.foot-bottom a { color: rgba(255,255,255,0.32); text-decoration: none; }

/* WA FLOAT */
.wa-float { position: fixed; bottom: 26px; right: 26px; z-index: 999; display: flex; align-items: center; gap: 9px; background: #25D366; color: #fff; padding: 12px 20px; border-radius: 50px; text-decoration: none; font-weight: 700; font-size: 14px; box-shadow: 0 8px 28px rgba(37,211,102,0.38); transition: all 0.3s; animation: float 3.5s ease infinite; }
.wa-float:hover { background: #20BA5A; box-shadow: 0 14px 44px rgba(37,211,102,0.5); }
.wa-float svg { width: 20px; height: 20px; flex-shrink: 0; }
.waf-text small { display: block; font-size: 10px; font-weight: 400; opacity: 0.8; margin-top: 1px; }

/* CART MODAL */
.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.72); z-index: 2000; align-items: center; justify-content: center; padding: 20px; }
.modal-overlay.open { display: flex; }
.modal { background: #fff; border-radius: 26px; padding: 32px; max-width: 520px; width: 100%; max-height: 88vh; overflow-y: auto; position: relative; animation: fadeUp 0.3s ease; }
.modal-close { position: absolute; top: 16px; right: 16px; background: var(--border); border: none; border-radius: 50%; width: 30px; height: 30px; cursor: pointer; color: var(--muted); font-size: 15px; display: flex; align-items: center; justify-content: center; }
.modal-close:hover { background: var(--red); color: #fff; }
.modal-title { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 800; margin-bottom: 3px; }
.modal-sub { color: var(--muted); font-size: 13px; margin-bottom: 20px; }
.cart-items { display: flex; flex-direction: column; gap: 9px; margin-bottom: 18px; max-height: 260px; overflow-y: auto; }
.cart-item { background: var(--warm); border: 1px solid var(--border); border-radius: 12px; padding: 11px 13px; display: flex; align-items: center; gap: 10px; }
.ci-emoji { font-size: 24px; width: 34px; text-align: center; flex-shrink: 0; }
.ci-info { flex: 1; }
.ci-name { font-weight: 700; font-size: 13px; }
.ci-price { color: var(--red); font-size: 12px; font-weight: 600; margin-top: 2px; }
.qty-row { display: flex; align-items: center; gap: 6px; }
.qty-btn { width: 24px; height: 24px; border-radius: 6px; border: none; cursor: pointer; font-size: 14px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.qty-minus { background: var(--border); color: var(--text); }
.qty-plus { background: var(--red); color: #fff; }
.qty-n { font-weight: 700; min-width: 16px; text-align: center; font-size: 13px; }
.cart-total { display: flex; justify-content: space-between; align-items: center; padding: 11px 0; border-top: 1px solid var(--border); }
.ct-label { font-weight: 600; font-size: 14px; }
.ct-val { font-family: 'Playfair Display', serif; font-size: 21px; font-weight: 900; color: var(--red); }
.form-group { margin-bottom: 12px; }
.form-label { display: block; font-size: 11px; font-weight: 700; margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.5px; }
.form-input { width: 100%; background: var(--warm); border: 1.5px solid var(--border); border-radius: 11px; padding: 11px 13px; font-size: 14px; color: var(--text); outline: none; font-family: 'Outfit', sans-serif; transition: border-color 0.2s; }
.form-input:focus { border-color: var(--red); background: #fff; }
.min-note { background: rgba(200,23,26,0.06); border: 1px solid rgba(200,23,26,0.2); border-radius: 9px; padding: 8px 12px; color: var(--red); font-size: 12px; font-weight: 600; margin-bottom: 12px; display: none; }
.min-note.show { display: block; }
.wa-send-btn { width: 100%; background: linear-gradient(135deg, #25D366, #1DA854); color: #fff; border: none; border-radius: 14px; padding: 16px; font-size: 15px; font-weight: 800; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 9px; transition: all 0.3s; font-family: 'Outfit', sans-serif; margin-top: 8px; }
.wa-send-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.3); }
.wa-send-btn svg { width: 20px; height: 20px; }

/* STRIPE CHECKOUT */
.stripe-btn { width: 100%; background: var(--red); color: #fff; border: none; border-radius: 14px; padding: 16px; font-size: 15px; font-weight: 800; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 9px; transition: all 0.3s; font-family: 'Outfit', sans-serif; margin-top: 8px; }
.stripe-btn:hover { background: var(--red-deep); transform: translateY(-2px); }
.stripe-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.cart-tabs { display: flex; gap: 8px; margin-bottom: 16px; }
.cart-tab { flex: 1; padding: 10px; border: 1.5px solid var(--border); border-radius: 10px; background: #fff; font-size: 13px; font-weight: 600; cursor: pointer; font-family: 'Outfit', sans-serif; transition: all 0.2s; color: var(--muted); }
.cart-tab.active { border-color: var(--red); color: var(--red); background: rgba(200,23,26,0.04); }
#stripeCardElement { border: 1.5px solid var(--border); border-radius: 11px; padding: 13px; background: var(--warm); margin-top: 4px; transition: border-color 0.2s; }
#stripeCardElement:focus-within { border-color: var(--red); }
.payment-error { color: var(--red); font-size: 12px; margin-top: 6px; display: none; }
.payment-error.show { display: block; }

/* LOYALTY BADGE */
.loyalty-badge { display: inline-flex; align-items: center; gap: 6px; background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--charcoal); padding: 6px 14px; border-radius: 20px; font-size: 12px; font-weight: 700; }

/* TOAST */
.toast { position: fixed; top: 26px; left: 50%; transform: translateX(-50%); background: var(--charcoal); border: 1px solid rgba(200,23,26,0.4); border-radius: 16px; padding: 10px 18px; font-size: 13px; color: #fff; animation: notifAnim 2.8s ease forwards; box-shadow: 0 8px 28px rgba(0,0,0,0.35); white-space: nowrap; z-index: 9999; font-family: 'Outfit', sans-serif; font-weight: 500; }

/* RESPONSIVE */
@media (max-width: 960px) {
  .about-grid, .delivery-grid { grid-template-columns: 1fr; gap: 36px; }
  .how-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .how-grid::before { display: none; }
  .bundle-grid, .order-methods, .rev-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; gap: 32px; }
  .ev-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .ev-main { grid-column: 1; grid-row: 1; }
  .gal-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gal-large { grid-column: span 2; }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 600px) {
  section { padding: 60px 5%; }
  .hero-stats { gap: 20px; }
  .svc-grid { grid-template-columns: 1fr; }
  .social-row { flex-direction: column; align-items: center; }
  .wa-float { padding: 10px 15px; font-size: 13px; bottom: 14px; right: 14px; }
}
