:root{  --brand:#0b5ed7;
  --brand-dark:#084298;
  --bg:#ffffff;
  --card:#f8fbff;
  --text:#0f172a;
  --muted:#64748b;
  --border:#dbe8ff;}
*{box-sizing:border-box}
body{font-family:system-ui,-apple-system,Segoe UI,Roboto,'Helvetica Neue',Arial;background:#000;color:#333;margin:0}
.topbar{display:flex;justify-content:space-between;align-items:center;padding:14px 16px;background:linear-gradient(90deg,#fff,#fff);border-bottom:1px solid #eee}
.topbar h1{margin:0;font-size:18px;color:var(--accent)}
.topbar .tag{margin:0;font-size:12px;color:var(--muted)}
.admin-link{font-size:14px;color:var(--muted);text-decoration:none}
.container{padding:16px;max-width:1100px;margin:0 auto}
.hero{padding:10px 0}
.products{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:18px;margin-top:12px}
.card{border:1px solid #eee;border-radius:10px;overflow:hidden;display:flex;flex-direction:column;background:#fafafa}
.card-media{background:#fff}
.card-media img{width:100%;height:260px;object-fit:cover}
.card-body{padding:0px}
.card-body h3{margin:0 0 4px 0}
.price{color:var(--accent);font-weight:700;margin:6px 0}
.actions{display:flex;gap:8px;margin-top:8px;align-items:center}
button{background:var(--accent);color:white;padding:8px 10px;border:none;border-radius:8px;cursor:pointer}
a.video-btn{display:inline-block;padding:8px 10px;border-radius:8px;background:#f5f5f5;border:1px solid #eee;text-decoration:none;margin-left:6px}
.form-box, .login-box{max-width:480px;margin:30px auto;padding:16px;border:1px solid #eee;border-radius:8px;background:#fff}
.form-box label, .login-box label{display:block;margin:8px 0}
.form-box input, .login-box input, textarea{width:100%;padding:8px;border:1px solid #ddd;border-radius:6px}
.form-actions{display:flex;gap:10px;margin-top:10px}
.modal{display:none;position:fixed;inset:0;background:rgba(0,0,0,0.5);align-items:center;justify-content:center}
.modal.show{display:flex}
.modal-content{background:white;padding:16px;border-radius:10px;max-width:520px;width:95%;position:relative}
.modal-close{position:absolute;right:8px;top:8px;border:none;background:transparent;font-size:18px}
.hint{font-size:12px;color:var(--muted)}
.admin-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:12px}
.admin-card{display:flex;gap:10px;padding:10px;border:1px solid #eee;border-radius:8px;background:#fff}
.admin-card img{width:120px;height:100px;object-fit:cover;border-radius:6px}
.admin-ctrls a{margin-right:8px;color:var(--muted);text-decoration:none}
@media (max-width:520px){
  .card-media img{height:180px}
}
.whatsapp-btn {
    background: linear-gradient(90deg, #25D366, #128C7E);
    color: #fff !important;
    border-radius: 8px;
    padding: 10px 14px;
    font-weight: bold;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(37,211,102,0.3);
    border: none;
    cursor: pointer;
    transition: 0.2s ease;
}

.whatsapp-btn:hover {
    opacity: 0.85;
    transform: translateY(-2px);
}
/* =========================================
   PROFESSIONAL GLASSMORPHIC BAKERY THEME
   ========================================= */

/* Background: soft bakery gradient */
body {
    background: linear-gradient(135deg, #fff4e7, #ffe8d1) !important;
    backdrop-filter: blur(4px);
}

/* Topbar glassmorphic */
.topbar {
    background: rgba(255, 255, 255, 0.45) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-radius: 0 0 12px 12px;
}

/* Tag color bakery brown */
.topbar .tag {
    color: #7a5a45 !important;
}

/* Contact bar glass effect */
.contact-bar {
    background: rgba(255, 255, 255, 0.30) !important;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.45);
    padding: 10px;
}

/* Contact items brown tone */
.contact-item {
    color: #5a3e36 !important;
    font-weight: 600;
}

/* Hero section glass container */
.hero {
    background: rgba(255, 255, 255, 0.35) !important;
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(255,255,255,0.45);
    box-shadow: 0 6px 25px rgba(0,0,0,0.08);
}

/* Map card glass edges */
.map-card {
    background: rgba(255, 255, 255, 0.28) !important;
    border: 1px solid rgba(255,255,255,0.45);
    border-radius: 14px;
    backdrop-filter: blur(18px);
    overflow: hidden;
}

/* Product card: frosted glass */
.card {
    background: rgba(255, 255, 255, 0.35) !important;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 16px !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* Product name darker for readability */
.card h3 {
    color: #5a3e36 !important;
}

/* Price warm caramel */
.price {
    color: #b87a3f !important;
    font-weight: bold;
}

/* Remove white bg behind image container */
.card-media {
    background: transparent !important;
}

/* Buttons (primary) – glass caramel */
.btn-primary {
    background: rgba(200, 140, 80, 0.75) !important;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(200, 140, 80, 0.35) !important;
    color: #fff !important;
    border-radius: 10px;
}

/* Outline button glass style */
.btn-outline {
    background: rgba(255, 255, 255, 0.35) !important;
    backdrop-filter: blur(10px);
    color: #A26A41 !important;
    border: 1px solid rgba(162,106,65,0.45) !important;
}

/* WhatsApp button stays strong green but glassy */
.whatsapp-btn {
    background: rgba(19, 144, 83, 0.85) !important;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(19, 144, 83, 0.5);
    color: white !important;
}

/* Video button glass grey */
.video-btn {
    background: rgba(255, 255, 255, 0.26) !important;
    border: 1px solid rgba(200,200,200,0.4) !important;
    color: #4e3b33 !important;
}

/* Modal glass window */
.modal-content {
    background: rgba(255, 255, 255, 0.30) !important;
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,0.5);
}

/* Slider dots bakery theme */
.slider .dots div {
    background: rgba(180, 120, 60, 0.4) !important;
}

.slider .dots div.active {
    background: rgba(180, 120, 60, 0.9) !important;
}
/* ======================================================
   PROFESSIONAL RESPONSIVE HERO (Bakery Optimized)
   Keeps the same HTML — only improves layout & fit
   ====================================================== */

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 30px 20px !important;
    flex-wrap: wrap;
}

/* Left text block */
.hero-left {
    flex: 1;
    min-width: 260px;
}

.hero-left h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #5a3e36; /* bakery brown */
}

.hero-left p {
    font-size: 16px;
    color: #7b665c;
    margin-bottom: 14px;
}

/* Buttons row */
.hero-cta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Right side map container */
.hero-right {
    flex: 1;
    min-width: 260px;
    display: flex;
    justify-content: flex-end;
}

/* Map card better layout and spacing */
.map-card {
    width: 100%;
    max-width: 380px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* Map iframe fits perfectly */
.map-card iframe {
    width: 100%;
    height: 220px;
    border: none;
}

/* Map caption */
.map-caption {
    padding: 10px 12px;
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(6px);
    font-size: 14px;
    color: #5a3e36;
    font-weight: 600;
    border-top: 1px solid rgba(0,0,0,0.05);
}

/* =============================
   MOBILE RESPONSIVE FIX
   ============================= */

@media (max-width: 768px) {

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 20px 10px !important;
    }

    .hero-left h2 {
        font-size: 22px;
    }

    .hero-left p {
        font-size: 15px;
    }

    .hero-right {
        justify-content: center;
        width: 100%;
    }

    .map-card iframe {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .map-card {
        max-width: 100%;
    }

    .hero-left h2 {
        font-size: 20px;
    }

    .hero-left p {
        font-size: 14px;
    }
}
/* Show sticky only on mobile */
@media (min-width: 769px) {
  .sticky-summary {
    display: none !important;
  }
}
/* assets/css/cart.css - minimal styles for cart UI */

.floating-cart {
  position: fixed;
  right: 16px;
  bottom: 86px;
  z-index: 9999;
  background: #ff7a18;
  color: #fff;
  border: none;
  padding: 10px 12px;
  border-radius: 32px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
  font-weight: 700;
  cursor: pointer;
}

.cart-count {
  background: #fff;
  color: #ff7a18;
  border-radius: 50%;
  padding: 3px 7px;
  margin-right: 6px;
  font-weight: 700;
}

.bottom-drawer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  transform: translateY(100%);
  transition: transform .28s ease;
  background: #111;
  color: #fff;
  padding: 12px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  box-shadow: 0 -12px 30px rgba(0,0,0,0.4);
  max-height: 70vh;
  overflow-y: auto;
}

.drawer-header { display:flex; justify-content:space-between; align-items:center; margin-bottom:8px; }
.drawer-body .form-control { background:#222; color:#fff; border:1px solid rgba(255,255,255,0.06); margin-bottom:8px; padding:8px; }

.order-row { display:flex; justify-content:space-between; align-items:center; padding:8px 0; border-bottom:1px dashed rgba(255,255,255,0.04); }
.order-row .o-left { max-width:60%; }
.mini-btn { background:transparent; color:#fff; border:1px solid rgba(255,255,255,0.08); padding:4px 8px; border-radius:6px; cursor:pointer; margin-left:6px; }
.order-total { margin-top:10px; font-size:1.05rem; text-align:right; }

.qty-controls { display:flex; justify-content:center; align-items:center; gap:10px; margin:10px 0; }
.qty-controls .qty-btn { background:#eee; border:none; padding:6px 10px; border-radius:6px; font-size:18px; cursor:pointer; min-width:36px; }
.qty-controls .qty-value { min-width:36px; text-align:center; font-weight:700; }

.sticky-summary {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 9998;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  background: rgba(17,17,17,0.94);
  color:#fff;
  padding:10px 12px;
  border-radius:10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.open-cart-btn { background:#ff7a18; color:#fff; border:none; padding:8px 12px; border-radius:8px; cursor:pointer; }
.video-section {
  padding: 20px 0;
  text-align: center;
}

.video-title {
  font-size: 1.6rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(0,0,0,0.15);
}

.video-wrapper iframe {
  width: 100%;
  height: 55vw; /* responsive height */
  max-height: 480px;
  border: none;
}
/* =================================================
   FINAL DARK-PINK + WHITE BUSINESS THEME
   ================================================= */

/* Page base */
body{
  background:#fff4f7 !important;
  color:#5a0f2e !important;
}

/* Header */
.topbar{
  background:linear-gradient(135deg,#b0124d,#7a0030) !important;
  color:#ffffff !important;
}
.topbar .tag,
.admin-link{
  color:#ffe3ec !important;
}

/* Contact bar */
.contact-bar{
  background:#7a0030 !important;
}
.contact-item{
  background:rgba(255,255,255,.15) !important;
  color:#ffffff !important;
}
.contact-item:hover{
  background:#b0124d !important;
}

/* Cards */
.card{
  background:#ffffff !important;
  border:1px solid #ffd0df !important;
  box-shadow:0 10px 26px rgba(176,18,77,.18) !important;
}
.card h3{
  color:#7a0030 !important;
  font-weight:800;
}
.desc{
  color:#8c3c5d !important;
}
.price{
  color:#b0124d !important;
}

/* Buttons */
.btn-primary,
.open-cart-btn,
#drawerSend,
.qty-btn.increase{
  background:#b0124d !important;
  color:#ffffff !important;
}
.btn-primary:hover,
.open-cart-btn:hover,
#drawerSend:hover,
.qty-btn.increase:hover{
  background:#7a0030 !important;
}
.btn-outline{
  border-color:#b0124d !important;
  color:#b0124d !important;
}

/* Floating */
.floating-wa,
.floating-cart{
  background:#b0124d !important;
  color:#ffffff !important;
}

/* Drawer */
.bottom-drawer{
  background:#ffffff !important;
  color:#5a0f2e !important;
}
.cart-count{
  background:#b0124d !important;
  color:#ffffff !important;
}
.form-control{
  background:#fff4f7 !important;
  color:#5a0f2e !important;
  border:1px solid #ffd0df !important;
}

/* Video */
.video-title{
  color:#7a0030 !important;
  font-weight:700;
}


/* ==================================================
   JIYA FINAL PROFESSIONAL UI - MOBILE + DESKTOP
   Keep existing PHP/product/image logic unchanged
   ================================================== */
:root{
  --accent:#9b1645;
  --accent-2:#cf2e67;
  --accent-dark:#610925;
  --gold:#d9a441;
  --cream:#fff7ef;
  --soft:#fff1f6;
  --surface:#ffffff;
  --ink:#34101e;
  --muted:#7d5365;
  --line:#ffd4e2;
  --shadow:0 18px 45px rgba(97,9,37,.14);
  --radius:22px;
}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%;}
body{
  min-height:100vh;
  margin:0;
  font-family:system-ui,-apple-system,"Segoe UI",Roboto,"Noto Sans Gujarati",Arial,sans-serif;
  background:
    radial-gradient(circle at top left, rgba(207,46,103,.14), transparent 32rem),
    linear-gradient(135deg,#fffaf6 0%,#fff1f6 48%,#fff7ef 100%) !important;
  color:var(--ink) !important;
  padding-bottom:86px;
}
a{text-decoration:none;}
button,input,textarea{font:inherit;}
.topbar{
  position:sticky;top:0;z-index:900;
  display:flex;align-items:center;justify-content:space-between;gap:14px;
  padding:14px clamp(14px,3vw,34px) !important;
  border-radius:0 0 24px 24px !important;
  background:linear-gradient(135deg,var(--accent-dark),var(--accent),var(--accent-2)) !important;
  box-shadow:0 14px 35px rgba(97,9,37,.22) !important;
  border-bottom:1px solid rgba(255,255,255,.18) !important;
}
.top-left{display:flex;align-items:center;gap:12px;min-width:0;}
.brand-mark{width:46px;height:46px;display:grid;place-items:center;flex:0 0 46px;border-radius:16px;background:linear-gradient(135deg,#fff,#ffe2ec);color:var(--accent);font-weight:900;box-shadow:inset 0 0 0 1px rgba(255,255,255,.75),0 10px 22px rgba(0,0,0,.16);}
.topbar h1{font-size:clamp(18px,3.2vw,30px) !important;line-height:1.05;margin:0;color:#fff !important;letter-spacing:.2px;}
.topbar .tag{margin-top:4px !important;color:#ffe8f0 !important;font-weight:600;font-size:clamp(11px,2.1vw,14px) !important;}
.admin-link{display:inline-flex;align-items:center;justify-content:center;min-height:38px;padding:8px 14px;border-radius:999px;background:rgba(255,255,255,.14);color:#fff !important;border:1px solid rgba(255,255,255,.22);font-weight:800;}
.contact-bar{position:sticky;top:74px;z-index:850;display:flex;gap:10px;justify-content:center;align-items:center;padding:10px clamp(10px,2vw,22px) !important;background:rgba(255,255,255,.78) !important;backdrop-filter:blur(14px);border-bottom:1px solid rgba(155,22,69,.12) !important;box-shadow:0 8px 22px rgba(97,9,37,.08);}
.contact-item{display:inline-flex;align-items:center;justify-content:center;gap:6px;min-height:40px;padding:9px 13px !important;border-radius:999px !important;background:#fff !important;color:var(--accent-dark) !important;border:1px solid var(--line) !important;font-weight:800;box-shadow:0 8px 18px rgba(155,22,69,.08) !important;transition:.2s ease;}
.contact-item:hover{transform:translateY(-2px);background:var(--accent) !important;color:#fff !important;}
.container{width:min(1180px,100%);padding:20px clamp(12px,3vw,24px) 30px !important;margin:0 auto;}
.hero{display:grid !important;grid-template-columns:minmax(0,1.15fr) minmax(290px,.85fr);align-items:center;gap:22px;padding:clamp(20px,4vw,42px) !important;border-radius:30px !important;background:rgba(255,255,255,.72) !important;border:1px solid rgba(255,255,255,.84) !important;box-shadow:var(--shadow) !important;backdrop-filter:blur(16px);position:relative;overflow:hidden;}
.hero:before{content:"";position:absolute;inset:-70px auto auto -70px;width:220px;height:220px;border-radius:50%;background:rgba(217,164,65,.22);filter:blur(6px);}
.hero-left,.hero-right{position:relative;z-index:1;}
.eyebrow{display:inline-flex;align-items:center;gap:8px;padding:7px 12px;border-radius:999px;background:#fff3d6;color:#7b4d00;font-weight:900;font-size:12px;text-transform:uppercase;letter-spacing:.08em;border:1px solid rgba(217,164,65,.28);}
.hero-left h2{font-size:clamp(30px,6vw,58px) !important;line-height:1.02;margin:14px 0 12px !important;color:var(--accent-dark) !important;font-weight:950;letter-spacing:-.04em;}
.hero-left p{font-size:clamp(15px,2vw,18px) !important;line-height:1.65;color:var(--muted) !important;max-width:640px;}
.hero-cta{display:flex;flex-wrap:wrap;gap:12px;margin-top:16px;}
.btn-primary,.btn-outline,.open-cart-btn,#drawerSend,#drawerClear{display:inline-flex;align-items:center;justify-content:center;min-height:44px;padding:11px 16px;border-radius:14px;text-decoration:none;font-weight:900;border:0;cursor:pointer;transition:.2s ease;}
.btn-primary,#drawerSend,.open-cart-btn{background:linear-gradient(135deg,var(--accent),var(--accent-2)) !important;color:#fff !important;box-shadow:0 12px 28px rgba(155,22,69,.25) !important;}
.btn-outline,#drawerClear{background:#fff !important;color:var(--accent) !important;border:1px solid var(--line) !important;box-shadow:0 8px 18px rgba(155,22,69,.08);}
.btn-primary:hover,.btn-outline:hover,.open-cart-btn:hover,#drawerSend:hover,#drawerClear:hover{transform:translateY(-2px);}
.hero-right{width:auto !important;min-width:0 !important;display:block !important;}
.map-card{max-width:none !important;border-radius:24px !important;background:#fff !important;border:1px solid var(--line) !important;box-shadow:0 16px 36px rgba(97,9,37,.13) !important;overflow:hidden;}
.map-card iframe{height:250px !important;display:block;}
.map-caption{background:linear-gradient(180deg,#fff,#fff4f8) !important;color:var(--ink) !important;padding:13px 16px !important;}
.map-caption a{color:var(--accent) !important;font-weight:900;}
.section-head{margin:24px 0 14px;text-align:center;}
.section-head h2{margin:10px 0 6px;color:var(--accent-dark);font-size:clamp(24px,4vw,36px);letter-spacing:-.02em;}
.section-head p{margin:0;color:var(--muted);font-weight:600;}
.products{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:20px;margin-top:18px !important;}
.card{position:relative;overflow:hidden;border-radius:26px !important;background:#fff !important;border:1px solid rgba(255,212,226,.95) !important;box-shadow:0 16px 38px rgba(97,9,37,.12) !important;transition:transform .22s ease,box-shadow .22s ease,border-color .22s ease;}
.card:hover{transform:translateY(-5px);box-shadow:0 24px 52px rgba(97,9,37,.18) !important;border-color:#ffb8d0 !important;}
.card-media{background:#fff}
.card-media img{width:100%;height:260px;object-fit:cover}
.slider{border-radius:20px !important;background:#fff !important;box-shadow:inset 0 0 0 1px rgba(255,212,226,.65);}
.prev,.next{width:38px;height:38px;border-radius:50% !important;background:rgba(97,9,37,.72) !important;display:grid;place-items:center;padding:0 !important;font-size:26px !important;backdrop-filter:blur(8px);}
.dots{bottom:12px !important;}
.card-body{padding:14px 16px 18px !important;display:flex;flex-direction:column;gap:8px;}
.card-body h3{font-size:18px;line-height:1.35;color:var(--accent-dark) !important;margin:0 !important;font-weight:950;}
.desc{min-height:22px;color:var(--muted) !important;line-height:1.55;margin:0 !important;}
.price{display:inline-flex;align-self:flex-start;align-items:center;min-height:34px;padding:5px 12px;border-radius:999px;background:#fff0f6;color:var(--accent) !important;font-size:18px;font-weight:950;margin:0 !important;border:1px solid var(--line);}
.price:before{content:"₹";margin-right:1px;}
.qty-controls{display:flex;align-items:center;justify-content:center;gap:12px;margin:8px 0 0 !important;padding:8px;border-radius:18px;background:linear-gradient(135deg,#fff8fb,#fff);border:1px solid var(--line);}
.qty-controls .qty-btn{width:42px;height:42px;min-width:42px;border-radius:14px !important;padding:0 !important;font-size:24px !important;font-weight:950;display:grid;place-items:center;box-shadow:none !important;}
.qty-controls .decrease{background:#fff !important;color:var(--accent) !important;border:1px solid var(--line) !important;}
.qty-controls .increase{background:linear-gradient(135deg,var(--accent),var(--accent-2)) !important;color:#fff !important;}
.qty-controls .qty-value{min-width:44px;text-align:center;font-size:20px;font-weight:950;color:var(--accent-dark);}
.floating-wa{right:18px !important;bottom:20px !important;width:56px;height:56px;padding:0 !important;background:#25D366 !important;border-radius:50% !important;z-index:9995;box-shadow:0 14px 30px rgba(37,211,102,.32) !important;}
.floating-cart{position:fixed;right:86px;bottom:20px;z-index:9996;display:inline-flex;align-items:center;gap:8px;height:56px;padding:0 16px !important;border-radius:999px !important;background:linear-gradient(135deg,var(--accent),var(--accent-2)) !important;color:#fff !important;border:0;box-shadow:0 14px 34px rgba(155,22,69,.32) !important;font-weight:950;}
.cart-count{display:none;min-width:24px;height:24px;line-height:24px;padding:0 7px !important;margin:0 !important;background:#fff !important;color:var(--accent) !important;border-radius:999px;font-size:13px;text-align:center;}
.drawer-backdrop{position:fixed;inset:0;background:rgba(34,9,20,.48);z-index:9997;opacity:0;pointer-events:none;transition:.25s ease;backdrop-filter:blur(3px);}
.drawer-backdrop.show{opacity:1;pointer-events:auto;}
.bottom-drawer{position:fixed;left:auto;right:18px;bottom:18px;width:min(420px,calc(100vw - 36px));max-height:min(78vh,680px);z-index:9998;transform:translateY(calc(100% + 32px));transition:transform .28s ease;background:#fff !important;color:var(--ink) !important;border:1px solid var(--line);border-radius:28px !important;box-shadow:0 24px 70px rgba(34,9,20,.34) !important;padding:0 !important;overflow:hidden;}
.drawer-header{position:sticky;top:0;z-index:2;display:flex;justify-content:space-between;align-items:center;padding:16px 18px !important;margin:0 !important;background:linear-gradient(135deg,var(--accent-dark),var(--accent));color:#fff;border-bottom:1px solid rgba(255,255,255,.12);}
.drawer-header strong{font-size:18px;}
.btn-close{width:38px;height:38px;border-radius:50% !important;background:rgba(255,255,255,.14) !important;color:#fff !important;border:1px solid rgba(255,255,255,.2) !important;padding:0 !important;}
.drawer-body{padding:16px 18px 18px !important;overflow:auto;max-height:calc(78vh - 70px);}
.empty{padding:18px;text-align:center;color:var(--muted);background:var(--soft);border:1px dashed var(--line);border-radius:18px;font-weight:800;}
.order-row{display:grid;grid-template-columns:1fr auto;gap:12px;align-items:center;padding:12px 0;border-bottom:1px dashed #f1bfd1;color:var(--ink);}
.order-row .o-left{max-width:none !important;min-width:0;}
.order-row strong{font-size:14px;color:var(--accent-dark);}
.small{color:var(--muted);font-size:12px;font-weight:700;margin-top:4px;}
.o-sub{text-align:right;font-weight:950;color:var(--accent);margin-bottom:6px;}
.o-actions{display:flex;justify-content:flex-end;gap:6px;}
.mini-btn{width:32px;height:32px;padding:0 !important;border-radius:10px !important;background:#fff0f6 !important;color:var(--accent) !important;border:1px solid var(--line) !important;font-weight:950;}
.order-total{margin-top:12px;padding:12px 14px;border-radius:16px;background:#fff0f6;text-align:right;color:var(--accent-dark);font-size:18px;}
.drawer-actions{margin-top:14px;display:grid;gap:10px;}
.form-control{width:100%;min-height:46px;border-radius:14px !important;background:#fff9fb !important;color:var(--ink) !important;border:1px solid var(--line) !important;padding:10px 12px !important;outline:none;}
.form-control:focus{border-color:var(--accent-2) !important;box-shadow:0 0 0 4px rgba(207,46,103,.12);}
.drawer-buttons{display:grid;grid-template-columns:1.4fr .8fr;gap:10px;}
.sticky-summary{position:fixed;left:16px;right:16px;bottom:16px;z-index:9994;display:none;align-items:center;justify-content:space-between;gap:12px;padding:10px 12px;border-radius:18px;background:rgba(255,255,255,.95);border:1px solid var(--line);box-shadow:0 16px 38px rgba(97,9,37,.18);color:var(--ink);backdrop-filter:blur(14px);}
.sticky-summary div{display:flex;flex-direction:column;line-height:1.25;}
.sticky-summary strong{color:var(--accent-dark);}.sticky-summary span:last-child{color:var(--accent);font-weight:950;}
.modal{z-index:10001;backdrop-filter:blur(5px);}
.modal-content{border-radius:24px !important;background:#fff !important;color:var(--ink) !important;border:1px solid var(--line) !important;box-shadow:0 24px 70px rgba(34,9,20,.25);}
.modal-close{color:var(--accent) !important;background:#fff0f6 !important;border-radius:50%;width:36px;height:36px;display:grid;place-items:center;}
@media (max-width:1050px){.products{grid-template-columns:repeat(2,minmax(0,1fr));}.hero{grid-template-columns:1fr;}.map-card iframe{height:220px !important;}}
@media (max-width:768px){
  body{padding-bottom:92px;}
  .topbar{border-radius:0 0 18px 18px !important;padding:12px 12px !important;}
  .brand-mark{width:40px;height:40px;flex-basis:40px;border-radius:14px;font-size:14px;}
  .admin-link{min-height:34px;padding:6px 10px;font-size:12px;}
  .contact-bar{top:64px;justify-content:flex-start;overflow-x:auto;flex-wrap:nowrap;padding:9px 10px !important;scrollbar-width:none;}
  .contact-bar::-webkit-scrollbar{display:none;}
  .contact-item{white-space:nowrap;min-height:36px;padding:8px 11px !important;font-size:13px;}
  .container{padding:14px 10px 26px !important;}
  .hero{text-align:left !important;padding:22px 16px !important;border-radius:24px !important;gap:16px;}
  .hero-left h2{font-size:36px !important;}
  .hero-cta{display:grid;grid-template-columns:1fr 1fr;}
  .btn-primary,.btn-outline{width:100%;}
  .products{grid-template-columns:1fr;gap:16px;}
  .card{border-radius:22px !important;}
  .card-media img,.slide img{height:260px !important;} /* image setting kept stable on mobile */
  .floating-cart{right:82px;bottom:18px;height:54px;padding:0 14px !important;}
  .floating-wa{right:18px !important;bottom:18px !important;width:54px;height:54px;}
  .bottom-drawer{left:0;right:0;bottom:0;width:100%;max-height:84vh;border-radius:24px 24px 0 0 !important;transform:translateY(100%);}
  .drawer-body{max-height:calc(84vh - 70px);padding-bottom:calc(18px + env(safe-area-inset-bottom)) !important;}
  .sticky-summary{display:none;bottom:calc(12px + env(safe-area-inset-bottom));}
}
@media (max-width:430px){
  .topbar .tag{max-width:190px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}
  .hero-left h2{font-size:31px !important;}
  .hero-cta{grid-template-columns:1fr;}
  .map-card iframe{height:190px !important;}
  .card-media{padding:8px 8px 0;}
  .card-media img,.slide img{height:230px !important;}
  .drawer-buttons{grid-template-columns:1fr;}
  .cart-text{display:none;}
  .floating-cart{width:54px;padding:0 !important;justify-content:center;right:82px;}
  .cart-icon{font-size:20px;}
}
