: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:12px}
.card-body h3{margin:0 0 6px 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 */
/* ===== CHOCOLATE THEME BACKGROUND ===== */

body{
    margin:0;
    padding:0;

    background-image:
        linear-gradient(
            rgba(35,20,10,0.35),
            rgba(35,20,10,0.35)
        ),
        url('../images/chocolate-bg.png');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;

    font-family: Arial, sans-serif;
}

.chocolate-bg{
    background-image:
        linear-gradient(
            rgba(35,20,10,0.35),
            rgba(35,20,10,0.35)
        ),
        url('../images/chocolate-bg.png');

    background-size: cover;
    background-position: center;
    border-radius: 20px;
}
/* Optional glass effect */
.container{
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(6px);
    border-radius: 20px;
    padding: 20px;
    margin-top: 20px;
}


/* Header */
.topbar{
    background: linear-gradient(135deg,#3b1f12,#6b3e26);
    color:#fff;
    box-shadow:0 4px 20px rgba(0,0,0,.4);
}

.top-left h1{
    color:#fff;
    font-size:32px;
    font-weight:700;
}

.tag{
    color:#f9d89c;
}

/* Contact Bar */
.contact-bar{
    background:#4b2c20;
    border-top:2px solid #c89b5b;
    border-bottom:2px solid #c89b5b;
}

.contact-item{
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.contact-item:hover{
    color:#ffd27d;
}


/* Hero Section */
.hero{
    background: rgba(255,255,255,0.10);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    padding: 25px;
}


.hero h2{
    color:#ffd27d;
    font-size:40px;
}

.hero p{
    color:#f5e6d3;
}

/* Buttons */
.btn-primary{
    background:linear-gradient(135deg,#8b4513,#d2691e);
    border:none;
    color:#fff;
    border-radius:50px;
    padding:12px 25px;
    font-weight:bold;
}

.btn-primary:hover{
    transform:translateY(-2px);
    box-shadow:0 5px 15px rgba(210,105,30,.4);
}

.btn-outline{
    border:2px solid #d2691e;
    color:#ffd27d;
    background:transparent;
    border-radius:50px;
    padding:12px 25px;
}

/* Product Cards */
/* Product Cards */
.card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.25);
}
.card:hover{
    transform:translateY(-8px);
}

.card-body h3{
    color:#5a2d0c;
    font-weight:700;
}

.price{
    color:#b85c00;
    font-size:22px;
    font-weight:bold;
}

.desc{
    color:#444;
}

/* Quantity Controls */
.qty-controls{
    background:#f7e7d1;
    border-radius:50px;
}

.qty-btn{
    background:#8b4513;
    color:#fff;
    border:none;
}

.qty-btn:hover{
    background:#a0522d;
}

/* Video Section */
.video-section{
    background: rgba(255,255,255,0.10);
    backdrop-filter: blur(8px);
    border-radius:20px;
    padding:20px;
}

.video-title{
    color:#ffd27d;
}

/* Drawer */
.bottom-drawer{
    background:#2e160b;
    color:#fff;
}

.drawer-header{
    border-bottom:1px solid rgba(255,255,255,.15);
}

/* Floating WhatsApp */
.floating-wa{
    background:#25D366;
}

/* Floating Cart */
.floating-cart{
    background:#8b4513;
    color:#fff;
    box-shadow:0 5px 20px rgba(0,0,0,.4);
}

/* 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;
}
/* =================================
   PREMIUM CHOCOLATE OVERRIDE THEME
   ================================= */

body{
    background:
    linear-gradient(
        rgba(20,10,5,0.45),
        rgba(20,10,5,0.45)
    ),
    url('../images/chocolate-bg.png') center center/cover fixed;
}

/* Header */
.topbar{
    background:linear-gradient(135deg,#2c1408,#5b3217) !important;
}

.topbar h1{
    color:#fff !important;
}

.topbar .tag{
    color:#f8d39b !important;
}

/* Contact Bar */
.contact-bar{
    background:#4a2814 !important;
}

.contact-item{
    color:#fff !important;
    background:rgba(255,255,255,.08);
    border-radius:8px;
    padding:8px 12px;
}

/* Hero */
.hero{
    background:rgba(255,248,240,.88) !important;
    border-radius:20px;
}

/* Cards */
.card{
    background:#fffdf8 !important;
    border:1px solid #ecd4b2 !important;
}

.card h3{
    color:#5b3217 !important;
}

.price{
    color:#b76a1b !important;
}

/* Buttons */
.btn-primary{
    background:linear-gradient(135deg,#8b4513,#d2691e) !important;
    color:#fff !important;
}

.btn-outline{
    border:2px solid #8b4513 !important;
    color:#8b4513 !important;
    background:#fff !important;
}

/* Quantity */
.qty-controls{
    background:#f7e5cf !important;
}

.qty-btn{
    background:#8b4513 !important;
    color:#fff !important;
}

/* Video */
.video-section{
    background:rgba(255,248,240,.88) !important;
}

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

/* Cart */
.floating-cart,
.open-cart-btn{
    background:#8b4513 !important;
    color:#fff !important;
}

.cart-count{
    background:#fff !important;
    color:#8b4513 !important;
}

/* Drawer */
.bottom-drawer{
    background:#2a160c !important;
    color:#fff !important;
}

/* WhatsApp */
.floating-wa{
    background:#25D366 !important;
}
/* ==========================
   ADMIN DASHBOARD BACKGROUND
   ========================== */

body{
    background:
    linear-gradient(
        rgba(40,20,10,0.75),
        rgba(40,20,10,0.75)
    ),
    url('assets/images/chocolate-bg.png');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* Top Bar */
.topbar{
    background: rgba(60,30,15,0.95);
    backdrop-filter: blur(10px);
    padding:15px 25px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    box-shadow:0 4px 20px rgba(0,0,0,0.3);
}

.topbar h1{
    color:#fff;
    margin:0;
}

/* Container */
.container{
    max-width:1200px;
    margin:auto;
    padding:20px;
}

/* Admin Cards */
.admin-card{
    background:rgba(255,255,255,0.95);
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,0.2);
    transition:0.3s;
}

.admin-card:hover{
    transform:translateY(-5px);
}

.admin-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

/* Product Name */
.admin-card h3{
    color:#5a2d0c;
    margin-bottom:10px;
}

/* Price */
.price{
    color:#d35400;
    font-weight:bold;
    font-size:20px;
}

/* Buttons */
.btn,
.admin-ctrls a{
    background:#8b4513;
    color:#fff;
    text-decoration:none;
    padding:8px 15px;
    border-radius:8px;
    display:inline-block;
    margin:3px;
    transition:0.3s;
}

.btn:hover,
.admin-ctrls a:hover{
    background:#a0522d;
}

/* Grid */
.admin-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(350px,1fr));
    gap:20px;
}
