:root{
  --red:#D2151F;
  --red-dark:#8E0E15;
  --ink:#1C1C1A;
  --ink-soft:#5C5B56;
  --paper:#FFFFFF;
  --bg:#FAF9F6;
  --gold:#F0A93B;
  --teal:#1CA9C9;
  --blue:#1E63B4;
  --line:#E7E4DC;
  --radius:6px;
  --display:'Fraunces', serif;
  --body:'Public Sans', sans-serif;
  --mono:'IBM Plex Mono', monospace;
}
*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; overflow-x:clip; max-width:100%; }
body{ margin:0; background:var(--bg); color:var(--ink); font-family:var(--body); line-height:1.6; -webkit-font-smoothing:antialiased; overflow-x:clip; max-width:100%; }
img,svg{ display:block; max-width:100%; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; margin:0; padding:0; }
button{ font-family:inherit; cursor:pointer; }
:focus-visible{ outline:2px solid var(--red); outline-offset:2px; }
@media (prefers-reduced-motion:reduce){ *{ animation-duration:.01ms !important; transition-duration:.01ms !important; } }

.wrap{ max-width:1440px; margin:0 auto; padding:0 32px; }
section{ padding:84px 0; }
@media (max-width:720px){ section{ padding:52px 0; } }

.eyebrow{ font-family:var(--mono); font-size:12.5px; letter-spacing:.14em; text-transform:uppercase; color:var(--red); display:flex; align-items:center; gap:10px; margin:0 0 14px; }
.eyebrow::before{ content:""; width:20px; height:2px; background:var(--gold); }
.center{ text-align:center; }
.center .eyebrow{ justify-content:center; }
.center .eyebrow::before{ display:none; }

h1,h2,h3{ font-family:var(--display); font-weight:600; margin:0; }
h2{ font-size:clamp(28px,3.4vw,40px); letter-spacing:-.01em; }
.center h2{ margin:0 auto; }
.lede{ color:var(--ink-soft); max-width:640px; }
.center .lede{ margin:14px auto 0; }

.btn{ font-weight:700; font-size:14.5px; padding:15px 26px; border-radius:var(--radius); display:inline-flex; align-items:center; gap:8px; border:2px solid var(--red); }
.btn-solid{ background:var(--red); color:#fff; }
.btn-solid:hover{ background:var(--red-dark); border-color:var(--red-dark); }
.btn-ghost{ color:var(--red); }
.btn-ghost:hover{ background:var(--red); color:#fff; }

/* HEADER */
header{ position:sticky; top:0; z-index:50; background:rgba(250,249,246,.95); backdrop-filter:blur(6px); border-bottom:1px solid var(--line); }
.nav{ display:flex; align-items:center; justify-content:space-between; padding:14px 0; gap:20px; }
.logo{ font-family:var(--display); font-weight:700; font-size:22px; display:flex; align-items:center; gap:10px; white-space:nowrap; }
.logo img{ height:42px; width:auto; flex-shrink:0; }
.nav-links{ display:flex; gap:19px; font-size:14px; font-weight:600; }
.nav-links a{ position:relative; padding:4px 0; }
.nav-links a::after{ content:""; position:absolute; left:0; bottom:0; width:0; height:2px; background:var(--gold); transition:width .25s ease; }
.nav-links a:hover::after, .nav-links a.active::after{ width:100%; }
.nav-links a.active{ color:var(--red); }
.nav-actions{ display:flex; align-items:center; gap:14px; flex-shrink:0; }
.menu-toggle{ display:none; background:none; border:none; font-size:20px; }
.mobile-panel{ display:none; }

/* NAV SEARCH — Walmart-style prominent search bar */
.nav-search{ flex:1; max-width:360px; display:flex; align-items:center; border:2px solid var(--ink); border-radius:30px; overflow:hidden; background:var(--paper); transition:border-color .2s ease; }
.nav-search:focus-within{ border-color:var(--red); }
.nav-search input{ flex:1; border:none; padding:11px 18px; font-family:var(--body); font-size:14px; background:transparent; min-width:0; }
.nav-search input:focus{ outline:none; }
.nav-search button{ background:var(--red); color:#fff; border:none; width:42px; align-self:stretch; font-size:15px; flex-shrink:0; }
.nav-search button:hover{ background:var(--red-dark); }
.mobile-search{ display:none; }

/* Header cart icon (bag + live count), mirrors the floating cart button */
.cart-header-btn{ position:relative; display:inline-flex; align-items:center; justify-content:center; width:38px; height:38px; border-radius:50%; border:1.5px solid var(--line); background:var(--paper); font-size:16px; flex-shrink:0; }
.cart-header-btn:hover{ border-color:var(--red); }
.cart-header-btn .cart-badge-count{ position:absolute; top:-5px; right:-5px; background:var(--red); color:#fff; font-family:var(--mono); font-size:10.5px; font-weight:700; min-width:18px; height:18px; border-radius:50%; display:flex; align-items:center; justify-content:center; padding:0 2px; }

/* DEPARTMENT BAR */
.dept-bar{ background:var(--ink); border-bottom:1px solid rgba(255,255,255,.08); }
.dept-links{ display:flex; align-items:center; gap:28px; padding:11px 24px; overflow-x:auto; scrollbar-width:none; }
.dept-links::-webkit-scrollbar{ display:none; }
.dept-links a{ color:#D8D6CF; font-size:13px; font-weight:600; white-space:nowrap; letter-spacing:.01em; }
.dept-links a:hover{ color:#fff; }
.dept-links a.dept-sale{ color:var(--gold); }
.dept-links a.dept-sale:hover{ color:#FFC15E; }

@media (max-width:960px){
  .nav-links{ display:none; }
  .nav-search{ display:none; }
  .menu-toggle{ display:block; }
  .dept-bar{ display:none; }
  .mobile-panel.open{ display:flex; flex-direction:column; gap:2px; padding:14px 24px 18px; border-top:1px solid var(--line); }
  .mobile-panel a{ padding:12px 0; font-weight:600; font-size:15px; border-bottom:1px solid var(--line); }
  .mobile-search{ display:flex; align-items:center; border:1.5px solid var(--line); border-radius:30px; overflow:hidden; margin-bottom:10px; }
  .mobile-search input{ flex:1; border:none; padding:10px 16px; font-family:var(--body); font-size:14px; }
  .mobile-search input:focus{ outline:none; }
  .mobile-search button{ background:var(--red); color:#fff; border:none; padding:0 16px; font-size:14px; }
}

/* PAGE BANNER (inner pages) */
.page-banner{ position:relative; padding:38px 0; overflow:hidden; color:#fff; background:linear-gradient(120deg,#8E0E15,#D2151F 55%,#8E0E15); }
.page-banner.with-photo{ background-size:cover; background-position:center; }
.page-banner.with-photo::before{ content:""; position:absolute; inset:0; background:linear-gradient(120deg, rgba(30,10,10,.88), rgba(30,10,10,.6)); }
.page-banner .wrap{ position:relative; z-index:2; }
.page-banner .crumb{ font-family:var(--mono); font-size:12.5px; color:#F6D5CF; letter-spacing:.06em; }
.page-banner .crumb a:hover{ color:var(--gold); }
.page-banner h1{ font-size:clamp(26px,3.4vw,38px); margin-top:10px; }
.page-banner p{ color:#F5E1DD; margin-top:8px; max-width:520px; font-size:14.5px; }
.page-banner.compact{ padding:26px 0; }
.page-banner.compact h1{ font-size:clamp(22px,2.8vw,30px); margin-top:6px; }
.page-banner.compact p{ display:none; }

/* Slim plain title bar (used above the ad carousel on the shop page) */
.shop-title-bar{ background:var(--ink); color:#fff; padding:22px 0; }
.shop-title-bar .crumb{ font-family:var(--mono); font-size:12.5px; color:#B9B6AC; letter-spacing:.06em; }
.shop-title-bar .crumb a:hover{ color:var(--gold); }
.shop-title-bar h1{ font-size:clamp(24px,3vw,32px); margin-top:6px; }

/* AD CAROUSEL — dedicated promo/ad space on the shop page */
.ad-carousel{ position:relative; height:230px; overflow:hidden; }
@media (max-width:600px){ .ad-carousel{ height:280px; } }
.ad-slide{ position:absolute; inset:0; opacity:0; transition:opacity .8s ease; display:flex; align-items:center; background-size:cover; background-position:center; }
.ad-slide::before{ content:""; position:absolute; inset:0; background:linear-gradient(100deg, rgba(20,20,18,.82), rgba(20,20,18,.35)); }
.ad-slide.active{ opacity:1; }
.ad-content{ position:relative; z-index:2; color:#fff; max-width:460px; }
.ad-eyebrow{ display:inline-block; background:var(--gold); color:var(--ink); font-family:var(--mono); font-size:11px; font-weight:700; padding:4px 10px; border-radius:20px; letter-spacing:.04em; }
.ad-content h2{ font-size:clamp(20px,2.6vw,28px); margin-top:10px; line-height:1.2; }
.ad-btn{ display:inline-block; margin-top:14px; background:var(--red); color:#fff; font-weight:700; font-size:13.5px; padding:10px 20px; border-radius:30px; }
.ad-btn:hover{ background:var(--red-dark); }
.ad-dots{ position:absolute; bottom:14px; left:50%; transform:translateX(-50%); z-index:3; display:flex; gap:7px; }
.ad-dots button{ width:8px; height:8px; border-radius:50%; background:rgba(255,255,255,.45); border:none; padding:0; }
.ad-dots button.active{ background:#fff; }

/* HERO */
.hero{ position:relative; height:580px; overflow:hidden; }
@media (max-width:720px){ .hero{ height:520px; } }
.hero-track{ display:flex; height:100%; transition:transform .7s cubic-bezier(.4,0,.2,1); }
.slide{ position:relative; flex:0 0 100%; width:100%; height:100%; display:flex; align-items:center; background-size:cover; background-position:center; }
.slide::before{ content:""; position:absolute; inset:0; background:linear-gradient(100deg, rgba(20,5,5,.82) 0%, rgba(20,5,5,.4) 55%, rgba(20,5,5,.2) 100%); }
.slide-content{ position:relative; z-index:2; color:#fff; max-width:560px; }
.slide-content .tag{ font-family:var(--mono); font-size:12.5px; letter-spacing:.14em; text-transform:uppercase; color:var(--gold); margin-bottom:14px; display:block; }
.slide-content h1{ font-size:clamp(34px,5vw,56px); line-height:1.05; color:#fff; }
.slide-content p{ color:#F0E6E4; margin-top:16px; max-width:440px; }
.slide-content .btn{ margin-top:26px; }
.slide-dots{ position:absolute; bottom:26px; left:50%; transform:translateX(-50%); display:flex; gap:10px; z-index:3; }
.slide-dots button{ width:9px; height:9px; border-radius:50%; border:1.5px solid #fff; background:transparent; padding:0; }
.slide-dots button.active{ background:var(--gold); border-color:var(--gold); }
.hero-arrow{ position:absolute; top:50%; transform:translateY(-50%); z-index:3; background:rgba(255,255,255,.15); border:1px solid rgba(255,255,255,.4); color:#fff; width:42px; height:42px; border-radius:50%; font-size:18px; }
.hero-arrow.prev{ left:20px; } .hero-arrow.next{ right:20px; }
@media (max-width:600px){ .hero-arrow{ display:none; } }

/* TRUST STRIP */
.trust-strip{ background:var(--ink); }
.trust-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:1px; }
.trust-item{ display:flex; align-items:center; gap:12px; padding:18px 22px; }
.trust-item .ti-icon{ font-size:19px; flex-shrink:0; }
.trust-item b{ display:block; color:#fff; font-size:13px; font-weight:700; }
.trust-item span{ display:block; color:#A7A49B; font-size:11.5px; margin-top:2px; }
@media (max-width:860px){ .trust-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:520px){ .trust-item{ padding:16px; } .trust-item .ti-icon{ font-size:17px; } }

/* STAT STRIP */
.stat-strip{ background:var(--paper); border-bottom:1px solid var(--line); }
.stat-grid{ display:grid; grid-template-columns:repeat(4,1fr); }
.stat{ text-align:center; padding:32px 12px; border-left:1px solid var(--line); }
.stat:first-child{ border-left:none; }
.stat b{ font-family:var(--display); font-size:30px; color:var(--red); display:block; }
.stat span{ font-size:12.5px; color:var(--ink-soft); font-family:var(--mono); }
@media (max-width:700px){ .stat-grid{ grid-template-columns:repeat(2,1fr); } .stat:nth-child(3){ border-left:none; } }

/* PHOTO / ABOUT BLOCKS */
.about-grid{ display:grid; grid-template-columns:.95fr 1.05fr; gap:56px; align-items:center; }
@media (max-width:860px){ .about-grid{ grid-template-columns:1fr; } }
.photo-frame{ border-radius:var(--radius); overflow:hidden; aspect-ratio:4/3.3; position:relative; }
.photo-frame img{ width:100%; height:100%; object-fit:cover; }
.about-badge{ position:absolute; bottom:-18px; right:-18px; background:var(--gold); color:var(--red-dark); padding:16px 20px; border-radius:var(--radius); font-family:var(--display); font-weight:700; text-align:center; box-shadow:0 12px 30px rgba(0,0,0,.2); }
.about-badge b{ display:block; font-size:24px; }
.about-badge span{ font-family:var(--body); font-size:11px; font-weight:600; }

/* SERVICES / DEPARTMENTS */
.services-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; margin-top:44px; }
@media (max-width:900px){ .services-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:520px){ .services-grid{ grid-template-columns:1fr; } }
.service-card{ position:relative; border-radius:var(--radius); overflow:hidden; height:260px; display:flex; align-items:flex-end; background-size:cover; background-position:center; }
.service-card::after{ content:""; position:absolute; inset:0; background:linear-gradient(0deg, rgba(10,5,5,.88) 0%, rgba(10,5,5,.05) 60%); }
.service-card .sv-inner{ position:relative; z-index:2; padding:20px; color:#fff; }
.service-card .sv-emoji{ font-size:26px; margin-bottom:6px; }
.service-card h3{ color:#fff; font-size:18px; }
.service-card p{ color:#EFDFDC; font-size:12.5px; margin:6px 0 0; }

.service-detail{ background:var(--paper); border:1px solid var(--line); border-radius:var(--radius); overflow:hidden; display:flex; flex-direction:column; }
.service-detail .sd-photo{ height:170px; overflow:hidden; }
.service-detail .sd-photo img{ width:100%; height:100%; object-fit:cover; }
.service-detail .sd-body{ padding:22px; }
.service-detail h3{ font-size:18px; }
.service-detail p{ font-size:13.5px; margin-top:8px; }

/* WHY CHOOSE US / info grids */
.why-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:var(--line); border:1px solid var(--line); margin-top:44px; }
@media (max-width:860px){ .why-grid{ grid-template-columns:1fr 1fr; } }
.why-card{ background:var(--paper); padding:32px 26px; }
.why-card .num{ font-family:var(--mono); font-size:12px; color:var(--gold); }
.why-card h3{ font-size:18px; margin-top:10px; }
.why-card p{ font-size:13.5px; margin-top:8px; }

/* TIMELINE (about page) */
.timeline{ margin-top:50px; border-left:2px solid var(--line); padding-left:36px; display:flex; flex-direction:column; gap:36px; }
.tl-item{ position:relative; }
.tl-item::before{ content:""; position:absolute; left:-44px; top:4px; width:12px; height:12px; border-radius:50%; background:var(--gold); border:3px solid var(--red); }
.tl-item .yr{ font-family:var(--mono); color:var(--red); font-size:13px; font-weight:700; }
.tl-item h3{ font-size:18px; margin-top:6px; }
.tl-item p{ font-size:14px; margin-top:6px; max-width:520px; }

/* TEAM */
.team-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; margin-top:44px; }
@media (max-width:860px){ .team-grid{ grid-template-columns:1fr 1fr; } }
.team-card{ text-align:center; background:var(--paper); border:1px solid var(--line); border-radius:var(--radius); padding:24px 16px; }
.team-photo{ width:64px; height:64px; border-radius:50%; background:linear-gradient(160deg,#FCE7CB,#fff); display:flex; align-items:center; justify-content:center; font-size:28px; margin:0 auto 14px; border:2px solid var(--gold); }
.team-card b{ font-size:14.5px; display:block; }
.team-card span{ font-size:12px; color:var(--ink-soft); font-family:var(--mono); }
.team-card.founder{ border:2px dashed var(--gold); background:#FFFBF3; }
.team-card.founder .team-photo{ background:none; border:2px dashed var(--red); color:var(--red); font-size:22px; }

/* TESTIMONIALS */
.testi-strip{ background:var(--red); color:#fff; }
.testi-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:44px; }
@media (max-width:860px){ .testi-grid{ grid-template-columns:1fr; } }
.testi-card{ background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.18); border-radius:var(--radius); padding:26px; }
.testi-card .stars{ color:var(--gold); font-size:14px; letter-spacing:2px; }
.testi-card p{ color:#FBEAE7; margin:14px 0 18px; font-size:14.5px; }
.testi-person{ display:flex; align-items:center; gap:12px; }
.testi-avatar{ width:38px; height:38px; border-radius:50%; background:var(--gold); color:var(--red-dark); display:flex; align-items:center; justify-content:center; font-weight:700; font-family:var(--display); }
.testi-person b{ font-size:13.5px; display:block; }
.testi-person span{ font-size:12px; color:#F3CFC9; }
.testi-strip .eyebrow{ color:var(--gold); }
.testi-strip .eyebrow::before{ background:#fff; }
.testi-strip h2{ color:#fff; }

/* PRODUCTS / SHOP */
.tabs{ display:flex; justify-content:center; gap:10px; margin:36px 0 8px; flex-wrap:wrap; }
.tab{ font-family:var(--mono); font-size:12.5px; padding:9px 18px; border:1.5px solid var(--line); border-radius:30px; background:var(--paper); font-weight:600; }
.tab.active{ background:var(--red); color:#fff; border-color:var(--red); }
.shop-layout{ display:grid; grid-template-columns:240px 1fr; gap:36px; align-items:start; margin-top:20px; }
@media (max-width:860px){ .shop-layout{ grid-template-columns:1fr; } }
.shop-sidebar{ background:var(--paper); border:1px solid var(--line); border-radius:var(--radius); padding:24px; position:sticky; top:100px; }
@media (max-width:860px){ .shop-sidebar{ position:static; top:auto; } }

/* MOBILE CATEGORY TABS — horizontally scrollable, replaces the sidebar's category
   list on small screens so browsing isn't one long continuous page. */
.mobile-cat-tabs{ display:none; }
@media (max-width:860px){
  .shop-sidebar h4, .shop-sidebar .cat-link{ display:none; }
  .mobile-cat-tabs{
    display:flex; gap:8px; overflow-x:auto; scrollbar-width:none; -webkit-overflow-scrolling:touch;
    padding:12px 16px; background:var(--paper); border-bottom:1px solid var(--line);
  }
  .mobile-cat-tabs::-webkit-scrollbar{ display:none; }
  .mobile-cat-tab{
    flex:0 0 auto; min-height:44px; padding:0 18px; border-radius:22px; border:1.5px solid var(--line);
    background:var(--bg); color:var(--ink); font-size:13.5px; font-weight:600; white-space:nowrap;
  }
  .mobile-cat-tab.active{ background:var(--red); border-color:var(--red); color:#fff; }
}
.shop-sidebar h4{ font-family:var(--mono); font-size:12px; letter-spacing:.08em; text-transform:uppercase; color:var(--ink-soft); margin:0 0 14px; }
.shop-sidebar .cat-link{ display:flex; justify-content:space-between; padding:9px 0; font-size:14px; font-weight:600; border-bottom:1px solid var(--line); }
.shop-sidebar .cat-link span{ color:var(--ink-soft); font-weight:400; font-family:var(--mono); font-size:12.5px; }
.shop-sidebar .cat-link.active{ color:var(--red); }
.search-box{ display:flex; border:1.5px solid var(--line); border-radius:30px; overflow:hidden; margin-bottom:20px; }
.search-box input{ flex:1; border:none; padding:10px 16px; font-family:var(--body); font-size:13.5px; }
.search-box input:focus{ outline:none; }
.search-box button{ background:var(--red); color:#fff; border:none; padding:0 16px; font-size:14px; }
.products-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.shop-layout .products-grid{ grid-template-columns:repeat(4,1fr); }
@media (min-width:1300px){ .shop-layout .products-grid{ grid-template-columns:repeat(5,1fr); } }
@media (max-width:1080px){ .products-grid, .shop-layout .products-grid{ grid-template-columns:repeat(3,1fr); } }
@media (max-width:900px){ .products-grid, .shop-layout .products-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:520px){ .products-grid, .shop-layout .products-grid{ grid-template-columns:repeat(2,1fr); gap:12px; } }
.product{ background:var(--paper); border:1px solid var(--line); border-radius:var(--radius); overflow:hidden; display:flex; flex-direction:column; transition:box-shadow .2s ease, border-color .2s ease, transform .2s ease; }
.product:hover{ box-shadow:0 10px 28px rgba(28,28,26,.1); border-color:#D9D5CB; transform:translateY(-2px); }
.product-visual{ aspect-ratio:1/1; display:flex; align-items:center; justify-content:center; position:relative; background:#F3F1EC; overflow:hidden; }
.product-visual img{ width:100%; height:100%; object-fit:cover; display:block; }
.product .badge{ position:absolute; top:10px; left:10px; background:var(--red); color:#fff; font-family:var(--mono); font-size:10.5px; padding:4px 9px; border-radius:20px; z-index:2; font-weight:600; }
.product-body{ padding:14px; display:flex; flex-direction:column; gap:6px; flex:1; }
.product-name{ font-weight:700; font-size:13.5px; line-height:1.35; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; min-height:2.7em; }
.product-sub{ font-size:11.5px; color:var(--ink-soft); }
.product-foot{ display:flex; justify-content:space-between; align-items:center; margin-top:auto; gap:8px; padding-top:6px; }
.product-price{ font-family:var(--mono); font-weight:700; font-size:14.5px; color:var(--red); line-height:1.2; }
.product-price .was{ display:block; text-decoration:line-through; color:var(--ink-soft); font-weight:400; font-size:11px; }
.wa-order-btn{ display:inline-flex; align-items:center; justify-content:center; gap:5px; background:#25D366; color:#fff; font-weight:700; font-size:12.5px; padding:9px 14px; border-radius:20px; text-decoration:none; white-space:nowrap; min-height:36px; }
.wa-order-btn:hover{ background:#1ebd58; }
.wa-btn{ display:inline-flex; align-items:center; gap:6px; background:#25D366; color:#fff !important; font-weight:700; padding:9px 16px; border-radius:20px; text-decoration:none; }
.wa-btn:hover{ background:#1ebd58; }
.wa-btn .wa-short{ display:none; }
@media (max-width:520px){
  .wa-btn .wa-full{ display:none; }
  .wa-btn .wa-short{ display:inline; }
}
@media (max-width:480px){
  .wrap{ padding:0 16px; }
  .wa-btn{ width:38px; height:38px; padding:0; border-radius:50%; justify-content:center; }
  .wa-btn .wa-full, .wa-btn .wa-short{ display:none; }
  .wa-btn::before{ content:"💬"; font-size:15px; line-height:1; }
  .logo{ font-size:15px; }
  .logo img{ height:26px; }
}
@media (max-width:720px){
  .wa-btn{ padding:8px 12px; font-size:12.5px; }
  .product-visual{ height:120px; }
  .wa-order-btn{ padding:8px 12px; font-size:12px; min-height:34px; }
}
.add-btn{ width:32px; height:32px; border-radius:50%; border:none; background:var(--red); color:#fff; font-size:17px; }
.add-btn:hover{ background:var(--red-dark); }
.pagination{ display:flex; justify-content:center; gap:8px; margin-top:40px; }
.pagination button{ width:36px; height:36px; border:1px solid var(--line); background:var(--paper); border-radius:var(--radius); font-family:var(--mono); font-size:13px; }
.pagination button.active{ background:var(--red); color:#fff; border-color:var(--red); }

/* STORE / VISIT US */
.visit-grid{ display:grid; grid-template-columns:1.1fr .9fr; gap:40px; align-items:start; }
@media (max-width:860px){ .visit-grid{ grid-template-columns:1fr; } }
.contact-info-item{ display:flex; gap:16px; padding:18px 0; border-bottom:1px solid var(--line); }
.contact-info-item .ci-icon{ width:44px; height:44px; border-radius:10px; background:#FBEAE7; color:var(--red); display:flex; align-items:center; justify-content:center; font-size:19px; flex-shrink:0; }
.contact-info-item b{ display:block; font-size:14.5px; }
.contact-info-item span{ font-size:13.5px; color:var(--ink-soft); }
.map-card{ border-radius:var(--radius); overflow:hidden; border:1px solid var(--line); }
.map-embed{ width:100%; height:340px; border:none; display:block; }
.social-strip{ display:flex; gap:12px; margin-top:20px; }
.social-strip a{ display:flex; align-items:center; gap:8px; border:1.5px solid var(--line); border-radius:30px; padding:10px 18px; font-size:13.5px; font-weight:600; }
.social-strip a:hover{ border-color:var(--red); color:var(--red); }

/* CONTACT FORM */
.contact-grid{ display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:start; }
@media (max-width:860px){ .contact-grid{ grid-template-columns:1fr; } }
.form-field{ margin-bottom:18px; }
.form-field label{ display:block; font-size:13px; font-weight:600; margin-bottom:7px; }
.form-field input, .form-field textarea{ width:100%; border:1.5px solid var(--line); border-radius:var(--radius); padding:12px 14px; font-family:var(--body); font-size:14px; background:var(--paper); }
.form-field input:focus, .form-field textarea:focus{ outline:none; border-color:var(--red); }
.form-field textarea{ resize:vertical; min-height:120px; }
.faq-item{ border-bottom:1px solid var(--line); padding:18px 0; }
.faq-item summary{ cursor:pointer; font-weight:700; font-size:14.5px; list-style:none; display:flex; justify-content:space-between; }
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary::after{ content:"+"; font-size:20px; color:var(--red); }
.faq-item[open] summary::after{ content:"–"; }
.faq-item p{ margin-top:12px; font-size:14px; }

/* NEWSLETTER / CTA */
.cta-band{ background:var(--gold); }
.cta-inner{ display:flex; justify-content:space-between; align-items:center; gap:24px; flex-wrap:wrap; }
.cta-inner h2{ color:var(--red-dark); font-size:clamp(22px,3vw,30px); }
.cta-form{ display:flex; max-width:380px; width:100%; }
.cta-form input{ flex:1; border:none; padding:14px 16px; font-family:var(--body); font-size:14px; border-radius:var(--radius) 0 0 var(--radius); }
.cta-form button{ background:var(--red-dark); color:#fff; border:none; padding:14px 20px; font-weight:700; border-radius:0 var(--radius) var(--radius) 0; }

/* FOOTER */
footer{ background:#1A1A18; color:#C9C6BE; padding:60px 0 26px; }
.footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1.1fr; gap:40px; }
@media (max-width:800px){ .footer-grid{ grid-template-columns:1fr 1fr; } }
.footer-grid h4{ font-family:var(--mono); font-size:12px; letter-spacing:.08em; text-transform:uppercase; color:var(--gold); margin:0 0 18px; }
.footer-grid ul li{ padding:6px 0; font-size:14px; }
.footer-grid ul li a:hover{ color:#fff; }
.footer-logo{ display:flex; align-items:center; gap:10px; }
.footer-logo img{ height:36px; }
.footer-logo span{ color:#fff; font-family:var(--display); font-size:20px; font-weight:700; }
.footer-desc{ font-size:13.5px; margin-top:12px; max-width:280px; color:#9C998F; }
.social-row{ display:flex; gap:12px; margin-top:18px; }
.social-row a{ width:34px; height:34px; border:1px solid rgba(255,255,255,.2); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:13px; }
.social-row a:hover{ background:var(--gold); color:var(--red-dark); border-color:var(--gold); }
.footer-bottom{ display:flex; justify-content:space-between; margin-top:44px; padding-top:22px; border-top:1px solid rgba(255,255,255,.1); font-size:12.5px; color:#8A877E; flex-wrap:wrap; gap:10px; }

.toast{ position:fixed; bottom:24px; left:50%; transform:translateX(-50%) translateY(20px); background:var(--red-dark); color:#fff; padding:12px 22px; font-size:13.5px; border-radius:30px; opacity:0; pointer-events:none; transition:all .25s ease; font-family:var(--mono); z-index:100; }

/* PRODUCT ACTIONS — direct WhatsApp order + add to shared order list */
.product-actions{ display:flex; align-items:center; gap:6px; }
.list-add-btn{ border:1.5px solid var(--red); color:var(--red); background:none; font-family:var(--mono); font-size:11px; font-weight:700; padding:0 9px; height:32px; border-radius:20px; white-space:nowrap; }
.list-add-btn:hover{ background:var(--red); color:#fff; }

/* MENU CATEGORY TABS */
.menu-tabs-sticky{ position:sticky; top:0; z-index:40; background:var(--bg); }
.menu-tabs{ display:flex; gap:28px; border-bottom:1.5px solid var(--line); overflow-x:auto; scrollbar-width:none; margin-top:28px; }
.menu-tabs::-webkit-scrollbar{ display:none; }
.menu-tab{ background:none; border:none; padding:12px 4px 14px; min-height:44px; font-size:14.5px; font-weight:600; color:var(--ink-soft); white-space:nowrap; position:relative; }
.menu-tab.active{ color:var(--ink); }
.menu-tab.active::after{ content:""; position:absolute; left:0; right:0; bottom:-1.5px; height:2.5px; background:var(--red); border-radius:2px; }

/* FOOD CARD — horizontal layout: photo left, details right.
   .food-list is a 2-column grid on tablet/desktop and drops to a single
   column on phones so cards never feel cramped. */
.food-list{ display:grid; grid-template-columns:repeat(2,1fr); gap:16px; margin-top:24px; align-items:stretch; }
.food-card{ display:flex; background:var(--paper); border:1px solid var(--line); border-radius:var(--radius); overflow:hidden; }
.food-card-img{ width:130px; flex-shrink:0; aspect-ratio:1/1; background:#F3F1EC; }
.food-card-img img{ width:100%; height:100%; object-fit:cover; display:block; }
.food-img-fallback{ width:100%; height:100%; display:flex; align-items:center; justify-content:center; font-size:30px; }
.food-card-body{ flex:1; padding:16px 18px; display:flex; flex-direction:column; gap:6px; min-width:0; }
.food-card-name{ font-family:var(--display); font-weight:600; font-size:17px; }
.food-card-sub{ font-size:13px; color:var(--ink-soft); line-height:1.5; }
.food-card-foot{ display:flex; align-items:center; justify-content:space-between; margin-top:auto; padding-top:10px; gap:10px; }
.food-card-price{ font-family:var(--mono); font-weight:700; font-size:15.5px; color:var(--red); }
.food-add-pill{ border:1.5px solid var(--red); color:var(--red); background:none; font-weight:700; font-size:13px; padding:8px 20px; border-radius:20px; white-space:nowrap; }
.food-add-pill:hover{ background:var(--red); color:#fff; }
.food-add-pill.added{ background:var(--red); color:#fff; }
@media (max-width:760px){
  .food-list{ grid-template-columns:1fr; }
  .food-card-img{ width:150px; }
}
@media (max-width:520px){
  .food-card-img{ width:104px; }
  .food-card-name{ font-size:15px; }
  .food-card-body{ padding:12px 14px; }
  .food-add-pill{ padding:7px 14px; font-size:12px; }
}
.cart-fab-count{ position:absolute; top:-2px; right:-2px; background:var(--gold); color:var(--ink); font-family:var(--mono); font-size:11px; font-weight:700; min-width:20px; height:20px; border-radius:50%; display:flex; align-items:center; justify-content:center; padding:0 2px; }
.cart-trigger:not(.has-items) .cart-badge-count{ display:none; }

/* CART DRAWER */
.cart-overlay{ position:fixed; inset:0; background:rgba(20,20,18,.5); z-index:90; opacity:0; pointer-events:none; transition:opacity .25s ease; }
.cart-overlay.open{ opacity:1; pointer-events:auto; }
.cart-drawer{ position:fixed; top:0; right:0; height:100%; width:380px; max-width:92vw; background:var(--paper); z-index:95; transform:translateX(100%); transition:transform .3s ease; display:flex; flex-direction:column; box-shadow:-10px 0 30px rgba(0,0,0,.15); }
.cart-drawer.open{ transform:translateX(0); }
.cart-drawer-inner{ display:flex; flex-direction:column; height:100%; }
.cart-drawer-head{ display:flex; justify-content:space-between; align-items:center; padding:18px 20px; border-bottom:1px solid var(--line); }
.cart-drawer-head h3{ font-size:16px; }
.cart-drawer-close{ background:none; border:none; font-size:16px; color:var(--ink-soft); }
.cart-drawer-body{ flex:1; overflow-y:auto; padding:12px 20px; }
.cart-empty{ color:var(--ink-soft); font-size:13.5px; padding:20px 0; }
.cart-line{ display:grid; grid-template-columns:1fr auto auto auto; align-items:center; gap:10px; padding:12px 0; border-bottom:1px solid var(--line); }
.cart-line-name{ font-size:13.5px; font-weight:600; }
.cart-line-name span{ display:block; font-weight:400; color:var(--ink-soft); font-size:11.5px; margin-top:2px; }
.cart-line-qty{ display:flex; align-items:center; gap:8px; font-family:var(--mono); font-size:13px; }
.cart-line-qty button{ width:22px; height:22px; border-radius:50%; border:1px solid var(--line); background:#fff; font-size:13px; line-height:1; }
.cart-line-price{ font-family:var(--mono); font-size:13px; font-weight:700; color:var(--red); white-space:nowrap; }
.cart-line-remove{ background:none; border:none; color:var(--ink-soft); font-size:13px; }
.cart-line-remove:hover{ color:var(--red); }
.cart-drawer-foot{ padding:16px 20px 20px; border-top:1px solid var(--line); }
.cart-drawer-total{ font-size:14.5px; margin-bottom:12px; }
.cart-drawer-total b{ color:var(--red); font-family:var(--mono); }
.cart-clear-btn{ width:100%; background:none; border:1.5px solid var(--line); color:var(--ink-soft); font-size:13px; font-weight:600; padding:10px; border-radius:8px; margin-bottom:8px; }
.cart-clear-btn:hover{ border-color:var(--ink-soft); color:var(--ink); }
.cart-send-btn{ display:block; text-align:center; width:100%; background:#25D366; color:#fff; font-weight:700; font-size:14px; padding:12px; border-radius:8px; }
.cart-send-btn:hover{ background:#1ebd58; }
.cart-send-btn.disabled{ background:#D9D5CB; color:var(--ink-soft); pointer-events:none; }
#cart-send-btns .cart-send-btn + .cart-send-btn{ margin-top:8px; }
.cart-group-label{ font-family:var(--mono); font-size:11.5px; font-weight:700; text-transform:uppercase; letter-spacing:.03em; color:var(--ink-soft); padding:14px 0 4px; }
.cart-group-label:first-child{ padding-top:0; }
@media (max-width:520px){ .cart-header-btn{ width:34px; height:34px; font-size:14px; } }
.toast.show{ opacity:1; transform:translateX(-50%) translateY(0); }
