/* =========================================================
   DR. NASHVILLE — Design Tokens
   Palette: Charcoal #0D0B0A, Surface #1A1210, Fire #E4291B,
            Ember #FF6B1A, Gold #F2B705, Off-white #F5EDE4
   Display: Anton | Body: Poppins | Arabic: Tajawal
   ========================================================= */

:root{
  --charcoal:#0D0B0A;
  --surface:#1A1210;
  --surface-2:#231815;
  --fire:#E4291B;
  --ember:#FF6B1A;
  --gold:#F2B705;
  --off-white:#F5EDE4;
  --muted:#B9ACA3;
  --line: rgba(245,237,228,0.12);
  --shadow-fire: 0 20px 45px -18px rgba(228,41,27,0.55);
  --radius-lg: 22px;
  --radius-md: 14px;
}

*{ box-sizing:border-box; }

html{ scroll-behavior:smooth; }

body{
  background:var(--charcoal);
  color:var(--off-white);
  font-family:'Poppins', sans-serif;
  overflow-x:hidden;
}
.about-media-frame img{
  width:100%;
  height:100%;
  object-fit:contain;
  border-radius:var(--radius-lg);
  background:#0d0b0a;
}

.ar{ font-family:'Tajawal', sans-serif; direction:rtl; }

h1,h2,h3,h4,.brand-nashville{
  font-family:'Anton', sans-serif;
  letter-spacing:0.5px;
  text-transform:uppercase;
}

/* =========== Arabic language mode =========== */
html[dir="rtl"] body{
  font-family:'Tajawal', sans-serif;
}
html[dir="rtl"] h1, html[dir="rtl"] h2, html[dir="rtl"] h3, html[dir="rtl"] h4,
html[dir="rtl"] .section-title, html[dir="rtl"] .hero-title,
html[dir="rtl"] .menu-card-price, html[dir="rtl"] .limited-price,
html[dir="rtl"] .cart-item-price, html[dir="rtl"] #cartTotal{
  font-family:'Tajawal', sans-serif;
  font-weight:800;
  text-transform:none;
  letter-spacing:0;
}
html[dir="rtl"] .section-eyebrow::before{ order:2; }
html[dir="rtl"] .section-eyebrow{ flex-direction:row-reverse; }
html[dir="rtl"] .why-card, html[dir="rtl"] .contact-row,
html[dir="rtl"] .cart-item, html[dir="rtl"] .footer-links li{
  text-align:right;
}
html[dir="rtl"] .contact-row{ flex-direction:row-reverse; }
html[dir="rtl"] .qty-control{ flex-direction:row-reverse; }
html[dir="rtl"] .menu-card-top{ flex-direction:row-reverse; }
html[dir="rtl"] .lang-toggle-btn i{ transform:scaleX(-1); }

a{ text-decoration:none; color:inherit; }

::selection{ background:var(--fire); color:#fff; }

/* Scrollbar */
::-webkit-scrollbar{ width:10px; }
::-webkit-scrollbar-track{ background:var(--charcoal); }
::-webkit-scrollbar-thumb{ background:linear-gradient(var(--fire),var(--ember)); border-radius:10px; }

/* =========== Loader =========== */
#loader{
  position:fixed; inset:0; z-index:9999;
  background:var(--charcoal);
  display:flex; align-items:center; justify-content:center;
  transition:opacity .6s ease, visibility .6s ease;
}
#loader.hidden{ opacity:0; visibility:hidden; }
.loader-flame i{
  font-size:3rem; color:var(--fire);
  animation:flicker 0.9s infinite alternate;
}
@keyframes flicker{
  0%{ transform:scale(1) translateY(0); color:var(--fire); }
  100%{ transform:scale(1.25) translateY(-6px); color:var(--gold); }
}

/* =========== Section basics =========== */
.section{ padding:110px 0; position:relative; }
.section-eyebrow{
  display:flex; align-items:center; gap:10px;
  color:var(--fire); font-weight:700; letter-spacing:3px;
  text-transform:uppercase; font-size:0.8rem; margin-bottom:10px;
}
.section-eyebrow::before{
  content:""; width:28px; height:2px; background:var(--fire); display:inline-block;
}
.section-eyebrow.light{ color:var(--gold); }
.section-title{
  font-size:clamp(2rem, 4vw, 3.2rem);
  margin-bottom:14px;
  color:var(--off-white);
}
.section-title.light{ color:#fff; }
.section-sub{ color:var(--muted); max-width:560px; }
.section-sub.light{ color:rgba(245,237,228,0.75); margin:0 auto; }
.text-center .section-sub{ margin-inline:auto; }

/* =========== Navbar =========== */
#mainNav{
  padding:16px 0;
  background:rgba(13,11,10,0.0);
  transition:all .35s ease;
  z-index:1000;
}
#mainNav.scrolled{
  background:rgba(13,11,10,0.92);
  backdrop-filter:blur(10px);
  padding:10px 0;
  box-shadow:0 10px 30px -15px rgba(0,0,0,0.7);
  border-bottom:1px solid var(--line);
}
.navbar-brand{ display:flex; align-items:baseline; gap:6px; font-size:1.4rem; }
.brand-dr{ font-family:'Anton',sans-serif; color:var(--fire); }
.brand-nashville{ color:var(--off-white); font-size:1.25rem; }
.brand-logo{
  height:44px; width:auto; display:block;
  background:#fdf8f0; border-radius:10px; padding:4px 10px;
  box-shadow:0 6px 16px -6px rgba(0,0,0,0.5);
  transition:transform .25s ease;
}
.brand-logo:hover{ transform:scale(1.03); }
.footer-logo{ height:52px; margin-bottom:4px; }
.nav-link{
  color:var(--off-white) !important;
  font-weight:500;
  font-size:0.92rem;
  position:relative;
  margin:0 10px;
  padding:6px 2px !important;
}
.nav-link::after{
  content:""; position:absolute; left:0; bottom:0; height:2px; width:0;
  background:var(--fire); transition:width .25s ease;
}
.nav-link:hover::after,.nav-link.active::after{ width:100%; }
.navbar-toggler{ border:none; color:var(--off-white); font-size:1.6rem; }
.navbar-toggler:focus{ box-shadow:none; }

.lang-toggle-btn{
  background:transparent; border:1.5px solid var(--line); color:var(--off-white);
  border-radius:50px; padding:8px 16px; font-size:0.82rem; font-weight:600;
  display:flex; align-items:center; gap:6px; transition:all .25s ease;
}
.lang-toggle-btn:hover{ border-color:var(--fire); color:var(--fire); }
.lang-toggle-btn i{ font-size:0.95rem; }

.cart-btn{
  position:relative; background:var(--fire); color:#fff; border:none;
  width:42px; height:42px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  box-shadow:var(--shadow-fire);
}
.cart-count{
  position:absolute; top:-6px; right:-6px;
  background:var(--gold); color:#1a1210; font-size:0.68rem; font-weight:800;
  width:20px; height:20px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
}

/* =========== Buttons =========== */
.btn-fire{
  background:linear-gradient(135deg,var(--fire),var(--ember));
  color:#fff; font-weight:700; border:none;
  padding:12px 28px; border-radius:50px;
  box-shadow:var(--shadow-fire);
  transition:transform .25s ease, box-shadow .25s ease;
}
.btn-fire:hover{ transform:translateY(-3px); color:#fff; box-shadow:0 25px 50px -15px rgba(228,41,27,0.7); }
.btn-outline-fire{
  border:2px solid var(--fire); color:var(--off-white);
  font-weight:600; border-radius:50px; padding:11px 26px;
  background:transparent; transition:all .25s ease;
}
.btn-outline-fire:hover{ background:var(--fire); color:#fff; }
.btn-whatsapp{
  background:#25D366; color:#08331b; font-weight:700; border:none; border-radius:50px; padding:12px 26px;
}
.btn-whatsapp:hover{ color:#08331b; opacity:.9; }

/* =========== Hero =========== */
.hero{
  min-height:100vh;
  display:flex; align-items:center; justify-content:center; text-align:center;
  position:relative;
  background:
    radial-gradient(circle at 20% 20%, rgba(228,41,27,0.25), transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(242,183,5,0.12), transparent 40%),
    linear-gradient(180deg,#100c0b 0%, #0D0B0A 60%);
  overflow:hidden;
}
.hero-overlay{
  position:absolute; inset:0;
  background:repeating-linear-gradient(115deg, rgba(255,255,255,0.015) 0 2px, transparent 2px 6px);
  pointer-events:none;
}
.hero-embers{ position:absolute; inset:0; pointer-events:none; }
.ember-particle{
  position:absolute; bottom:-10px; border-radius:50%;
  background:radial-gradient(circle, var(--gold), var(--fire) 70%, transparent 100%);
  opacity:0.8; animation:rise linear infinite;
}
@keyframes rise{
  0%{ transform:translateY(0) translateX(0); opacity:0.9; }
  100%{ transform:translateY(-110vh) translateX(var(--drift,20px)); opacity:0; }
}
.hero-content{ position:relative; z-index:2; }
.hero-eyebrow{
  letter-spacing:5px; color:var(--gold); font-weight:700; font-size:0.85rem; margin-bottom:14px;
}
.hero-title{
  font-size:clamp(3.2rem, 10vw, 8rem);
  line-height:0.92;
  color:var(--off-white);
  margin-bottom:22px;
  text-shadow:0 10px 40px rgba(0,0,0,0.6);
}
.hero-title-accent{
  background:linear-gradient(90deg,var(--fire),var(--ember),var(--gold));
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.hero-slogan{
  font-size:1.15rem; color:var(--muted); max-width:640px; margin:0 auto 36px;
}
.hero-cta{ display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }
.scroll-cue{
  position:absolute; bottom:30px; left:50%; transform:translateX(-50%);
  display:flex; flex-direction:column; align-items:center; gap:8px;
  color:var(--muted); font-size:0.75rem; letter-spacing:2px; z-index:2;
}
.scroll-cue span{
  width:1px; height:36px; background:linear-gradient(var(--fire),transparent);
  animation:scrollcue 1.6s infinite;
}
@keyframes scrollcue{ 0%{opacity:0;} 40%{opacity:1;} 100%{opacity:0; transform:translateY(10px);} }

/* =========== Reveal on scroll =========== */
.reveal{ opacity:0; transform:translateY(28px); transition:opacity .7s ease, transform .7s ease; }
.reveal.in{ opacity:1; transform:translateY(0); }

/* =========== About =========== */
.about-section{ background:var(--charcoal); }
.about-media{ position:relative; }
.about-media-frame{
  aspect-ratio:1/1; border-radius:var(--radius-lg);
  background:linear-gradient(150deg,var(--surface),var(--surface-2));
  border:1px solid var(--line);
  display:flex; align-items:center; justify-content:center;
  box-shadow:var(--shadow-fire);
}
.about-media-icon{ font-size:7rem; color:var(--fire); opacity:0.85; }
.about-stamp{
  position:absolute; bottom:-22px; left:-22px;
  background:var(--gold); color:#1a1210; width:110px; height:110px; border-radius:50%;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  font-weight:800; text-align:center; transform:rotate(-12deg);
  box-shadow:0 15px 30px -10px rgba(0,0,0,0.6);
  font-family:'Anton',sans-serif;
}
.about-stamp span{ font-size:0.65rem; letter-spacing:2px; }
.about-stamp strong{ font-size:0.95rem; }
.about-text{ color:var(--muted); margin-bottom:16px; line-height:1.8; }
.why-card{
  background:var(--surface); border:1px solid var(--line); border-radius:var(--radius-md);
  padding:20px 16px; height:100%; transition:transform .25s ease, border-color .25s ease;
}
.why-card:hover{ transform:translateY(-6px); border-color:var(--fire); }
.why-card i{ font-size:1.6rem; color:var(--fire); margin-bottom:10px; display:block; }
.why-card h6{ font-weight:700; margin-bottom:4px; }
.why-card p{ color:var(--muted); font-size:0.85rem; margin:0; }

/* =========== Menu ========= */
.menu-section{ background:var(--charcoal); }
.menu-filters{
  display:flex; flex-wrap:wrap; gap:10px; justify-content:center; margin-bottom:48px;
}
.filter-btn{
  background:var(--surface); border:1px solid var(--line); color:var(--muted);
  padding:9px 20px; border-radius:50px; font-size:0.85rem; font-weight:600;
  transition:all .25s ease; cursor:pointer;
}
.filter-btn:hover{ border-color:var(--fire); color:var(--off-white); }
.filter-btn.active{
  background:linear-gradient(135deg,var(--fire),var(--ember)); color:#fff; border-color:transparent;
}

.menu-card{
  background:var(--surface); border:1px solid var(--line); border-radius:var(--radius-lg);
  overflow:hidden; height:100%; display:flex; flex-direction:column;
  transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.menu-card:hover{ transform:translateY(-8px); box-shadow:var(--shadow-fire); border-color:rgba(228,41,27,0.5); }
.menu-card-img{
  aspect-ratio:4/3; background:linear-gradient(145deg,var(--surface-2),#150f0d);
  display:flex; align-items:center; justify-content:center; position:relative; cursor:pointer;
  overflow:hidden;
}
.menu-card-img img{ width:100%; height:100%; object-fit:cover; display:block; transition:transform .4s ease; }
.menu-card:hover .menu-card-img img{ transform:scale(1.06); }
.menu-card-img-fallback{
  display:none; position:absolute; inset:0; align-items:center; justify-content:center;
}
.menu-card-img-fallback i{ font-size:2.6rem; color:var(--fire); opacity:0.75; }
.menu-card-img i{ font-size:2.6rem; color:var(--fire); opacity:0.75; }
.menu-card-body{ padding:18px; display:flex; flex-direction:column; flex-grow:1; }
.menu-card-top{ display:flex; justify-content:space-between; align-items:start; gap:10px; margin-bottom:6px;}
.menu-card-name{ font-family:'Anton',sans-serif; font-size:1.05rem; letter-spacing:.3px; }
.menu-card-name-ar{ font-family:'Tajawal',sans-serif; direction:rtl; color:var(--muted); font-size:0.85rem; }
.menu-card-price{ color:var(--gold); font-weight:800; white-space:nowrap; font-family:'Anton',sans-serif; }
.menu-card-desc{ color:var(--muted); font-size:0.82rem; line-height:1.6; flex-grow:1; margin-bottom:14px; }
.menu-card-desc strong{ color:var(--off-white); font-weight:600; }
.menu-add-btn{
  width:100%; background:transparent; border:1.5px solid var(--fire); color:var(--off-white);
  border-radius:50px; padding:9px; font-weight:700; font-size:0.85rem;
  transition:all .25s ease; display:flex; align-items:center; justify-content:center; gap:6px;
}
.menu-add-btn:hover{ background:var(--fire); color:#fff; }
.menu-add-btn.added{ background:var(--gold); border-color:var(--gold); color:#1a1210; }

/* Sandwich variant selectors */
.variant-row{ display:flex; gap:10px; margin-bottom:12px; }
.variant-group{ flex:1; display:flex; flex-direction:column; gap:4px; }
.variant-group label{
  font-size:0.68rem; text-transform:uppercase; letter-spacing:1px; color:var(--muted); font-weight:600;
}
.variant-group select{
  width:100%; background:var(--surface-2); border:1px solid var(--line); color:var(--off-white);
  border-radius:8px; padding:7px 8px; font-size:0.82rem; font-family:'Poppins',sans-serif;
}
.variant-group select:focus{ outline:none; border-color:var(--fire); }
.variant-group-full{ flex:1 1 100%; }

/* =========== Limited Edition =========== */
.limited-section{
  background:var(--surface); position:relative; overflow:hidden;
}
.limited-bg{
  position:absolute; inset:0;
  background:radial-gradient(circle at 50% 0%, rgba(228,41,27,0.25), transparent 60%);
}
.limited-section .container{ position:relative; z-index:1; }
.limited-card{
  background:linear-gradient(160deg,#231815, #150f0d);
  border:1px solid rgba(242,183,5,0.25); border-radius:var(--radius-lg);
  padding:0; overflow:hidden; height:100%; position:relative;
  transition:transform .3s ease;
}
.limited-card:hover{ transform:translateY(-8px) scale(1.01); }
.limited-badge{
  position:absolute; top:16px; left:16px; z-index:2;
  background:var(--gold); color:#1a1210; font-family:'Anton',sans-serif;
  font-size:0.7rem; letter-spacing:1.5px; padding:6px 14px; border-radius:50px;
  box-shadow:0 8px 18px -6px rgba(0,0,0,0.6);
}
.limited-img{
  aspect-ratio:16/10; background:linear-gradient(145deg,#2b1c17,#150f0d);
  display:flex; align-items:center; justify-content:center;
}
.limited-img i{ font-size:3.2rem; color:var(--gold); }
.limited-body{ padding:22px; }
.limited-body h4{ font-size:1.3rem; margin-bottom:2px; }
.limited-body .ar{ color:var(--muted); font-size:0.9rem; margin-bottom:10px; display:block; }
.limited-desc{ color:var(--muted); font-size:0.85rem; line-height:1.6; margin:10px 0; }
.limited-price{ color:var(--gold); font-family:'Anton',sans-serif; font-size:1.4rem; }
.limited-tag{ color:var(--muted); font-size:0.78rem; }

/* ============================================================
   ============ NEW ADDITION — OFFER OLD PRICE STYLE ===========
   Small strikethrough "was" price shown next to the offer price
   in Limited Offers cards. Nothing else in this file was changed.
   ============================================================ */
.limited-old-price{
  display:inline-block; margin-inline-start:8px;
  color:var(--muted); font-family:'Poppins',sans-serif; font-size:0.8rem;
  font-weight:600; text-decoration:line-through;
}
/* =================== END OF NEW ADDITION =================== */
.limited-empty{
  text-align:center; padding:70px 20px; color:var(--muted);
  border:1px dashed rgba(245,237,228,0.2); border-radius:var(--radius-lg);
}
.limited-empty i{ font-size:2.6rem; color:var(--gold); display:block; margin-bottom:14px; }
.limited-empty p{ margin:0; font-size:1rem; max-width:420px; margin-inline:auto; }

/* =========== Gallery (kept for potential reuse) =========== */
.gallery-grid{
  display:grid; grid-template-columns:repeat(3,1fr); gap:18px;
}
.gallery-item{
  position:relative; aspect-ratio:1/1; border-radius:var(--radius-md); overflow:hidden;
  background:linear-gradient(150deg,var(--surface),var(--surface-2)); cursor:pointer;
}
.gallery-ph{ width:100%; height:100%; display:flex; align-items:center; justify-content:center; }
.gallery-ph i{ font-size:2.6rem; color:var(--fire); opacity:0.6; transition:transform .4s ease; }
.gallery-item::after{
  content:attr(data-caption);
  position:absolute; inset:0; display:flex; align-items:flex-end; padding:16px;
  background:linear-gradient(0deg, rgba(0,0,0,0.75), transparent 55%);
  color:#fff; font-weight:600; opacity:0; transition:opacity .3s ease; font-size:0.9rem;
}
.gallery-item:hover::after{ opacity:1; }
.gallery-item:hover .gallery-ph i{ transform:scale(1.15) rotate(-4deg); }

/* =========== Reviews =========== */
.reviews-section{ background:var(--charcoal); }
.review-card{
  max-width:640px; background:var(--surface); border:1px solid var(--line);
  border-radius:var(--radius-lg); padding:40px; text-align:center;
}
.review-stars{ color:var(--gold); margin-bottom:16px; letter-spacing:3px; }
.review-card p{ font-size:1.05rem; color:var(--off-white); font-style:italic; margin-bottom:18px; }
.review-name{ color:var(--fire); font-weight:700; }
.carousel-control-prev, .carousel-control-next{ width:6%; }
.carousel-nav-icon{
  background:var(--surface-2); border:1px solid var(--line); width:44px; height:44px; border-radius:50%;
  display:flex; align-items:center; justify-content:center; color:var(--off-white);
}

/* =========== Contact =========== */
.contact-section{
  background:linear-gradient(180deg,var(--surface), var(--charcoal));
}
.contact-info-card{
  background:var(--surface-2); border:1px solid var(--line); border-radius:var(--radius-lg); padding:34px;
  height:100%;
}
.contact-row{ display:flex; gap:16px; margin-bottom:24px; }
.contact-row i{ font-size:1.3rem; color:var(--fire); margin-top:3px; }
.contact-row h6{ font-weight:700; margin-bottom:2px; }
.contact-row p{ color:var(--muted); margin:0; }
.contact-row a{ color:var(--off-white); }
.contact-row a:hover{ color:var(--gold); }
.contact-actions{ display:flex; flex-direction:column; gap:12px; margin-top:10px; }
.map-placeholder{
  background:var(--surface-2); border:1px dashed rgba(245,237,228,0.25); border-radius:var(--radius-lg);
  height:100%; min-height:320px; display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:14px; color:var(--muted);
}
.map-placeholder i{ font-size:3rem; color:var(--fire); }

/* =========== Footer =========== */
.site-footer{ background:#0a0807; padding:70px 0 24px; border-top:1px solid var(--line); }
.footer-tag{ color:var(--muted); margin:14px 0 18px; font-size:0.9rem; }
.social-icons{ display:flex; gap:12px; }
.social-icons a{
  width:38px; height:38px; border-radius:50%; border:1px solid var(--line);
  display:flex; align-items:center; justify-content:center; color:var(--off-white);
  transition:all .25s ease;
}
.social-icons a:hover{ background:var(--fire); border-color:var(--fire); }
.footer-heading{ color:var(--off-white); font-weight:700; margin-bottom:16px; letter-spacing:1px; }
.footer-links{ list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:10px; }
.footer-links li{ color:var(--muted); font-size:0.9rem; }
.footer-links a{ color:var(--muted); transition:color .2s ease; }
.footer-links a:hover{ color:var(--fire); }
.site-footer hr{ border-color:var(--line); margin:36px 0 20px; }
.footer-bottom{ display:flex; justify-content:space-between; flex-wrap:wrap; gap:8px; color:var(--muted); font-size:0.85rem; }
.footer-bottom strong{ color:var(--gold); }

/* =========== Back to top =========== */
#backToTop{
  position:fixed; bottom:26px; right:26px; z-index:900;
  width:46px; height:46px; border-radius:50%; border:none;
  background:linear-gradient(135deg,var(--fire),var(--ember)); color:#fff; font-size:1.1rem;
  box-shadow:var(--shadow-fire); opacity:0; visibility:hidden; transform:translateY(10px);
  transition:all .3s ease;
}
#backToTop.show{ opacity:1; visibility:visible; transform:translateY(0); }

/* =========== Cart Offcanvas =========== */
.cart-offcanvas{
  background:var(--surface); color:var(--off-white); width:400px; max-width:92vw;
  border-left:1px solid var(--line);
}
.offcanvas-header{ border-bottom:1px solid var(--line); }
.cart-item{
  display:flex; gap:12px; align-items:center; padding:14px 0; border-bottom:1px solid var(--line);
}
.cart-item-thumb{
  width:56px; height:56px; border-radius:10px; background:var(--surface-2);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.cart-item-thumb i{ color:var(--fire); font-size:1.3rem; }
.cart-item-info{ flex-grow:1; min-width:0; }
.cart-item-info h6{ font-size:0.9rem; margin:0; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.cart-item-variant{ display:block; font-size:0.72rem; color:var(--muted); margin-bottom:2px; }
.cart-item-price{ color:var(--gold); font-size:0.82rem; font-weight:700; }
.qty-control{ display:flex; align-items:center; gap:8px; }
.qty-control button{
  width:24px; height:24px; border-radius:50%; border:1px solid var(--line); background:transparent;
  color:var(--off-white); display:flex; align-items:center; justify-content:center; font-size:0.8rem;
}
.qty-control button:hover{ border-color:var(--fire); color:var(--fire); }
.cart-item-remove{ color:var(--muted); background:none; border:none; font-size:1.1rem; }
.cart-item-remove:hover{ color:var(--fire); }
.cart-customer-info{ border-top:1px solid var(--line); padding-top:14px; margin-top:6px; }
.cart-customer-info .variant-group label{ color:var(--muted); }
.cart-input{
  width:100%; background:var(--surface-2); border:1px solid var(--line); color:var(--off-white);
  border-radius:8px; padding:8px 10px; font-size:0.85rem; font-family:'Poppins',sans-serif;
}
.cart-input::placeholder{ color:rgba(245,237,228,0.35); }
.cart-input:focus{ outline:none; border-color:var(--fire); box-shadow:none; background:var(--surface-2); color:var(--off-white); }
.cart-summary{ border-top:1px solid var(--line); padding-top:16px; }
.cart-empty{ text-align:center; color:var(--muted); padding:60px 10px; }
.cart-empty i{ font-size:2.4rem; display:block; margin-bottom:10px; color:var(--fire); }

/* =========== Toast =========== */
.toast{ background:var(--surface-2); color:#fff; border:1px solid var(--fire); }
.toast i{ color:var(--gold); margin-right:6px; }

/* =========== Lightbox =========== */
.lightbox{
  position:fixed; inset:0; background:rgba(10,8,7,0.95); z-index:2000;
  display:none; align-items:center; justify-content:center;
}
.lightbox.show{ display:flex; }
.lightbox-content{
  width:min(90vw, 420px); aspect-ratio:1/1; border-radius:var(--radius-lg);
  background:linear-gradient(150deg,var(--surface),var(--surface-2));
  display:flex; align-items:center; justify-content:center; font-size:5rem; color:var(--fire);
}
.lightbox-close{
  position:absolute; top:26px; right:30px; color:#fff; font-size:1.6rem; cursor:pointer;
}

/* =========== Responsive =========== */
@media (max-width:991px){
  #navMenu{ background:var(--charcoal); margin-top:14px; padding:16px; border-radius:var(--radius-md); border:1px solid var(--line); }
  .nav-link{ margin:6px 0; }
  .gallery-grid{ grid-template-columns:repeat(2,1fr); }
}
@media (max-width:576px){
  .section{ padding:70px 0; }
  .hero-cta{ flex-direction:column; align-items:stretch; }
  .gallery-grid{ grid-template-columns:1fr 1fr; gap:12px; }
  .about-stamp{ width:88px; height:88px; left:8px; bottom:-16px; }
}

@media (prefers-reduced-motion: reduce){
  *{ animation:none !important; transition:none !important; }
  .reveal{ opacity:1; transform:none; }
}
