

 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
 
  :root {
    --blue: #1a1f6b;
    --blue-mid: #372d8f;
    --blue-light: #d2d1ec;
    --blue-accent: #4c4eaf;
    --gold: #c8a850;
    --dark: #0d0f1f;
    --text: #2a2c3d;
    --muted: #6b6b80;
    --white: #ffffff;
    --off-white: #f7f7fa;
    --border: rgba(26, 27, 107, 0.12);
    --shadow: 0 20px 60px rgba(31, 26, 107, 0.12);
    --radius: 16px;
    --radius-lg: 28px;
  }
 
  html { scroll-behavior: smooth; }
  body { font-family: 'Outfit', sans-serif; background: var(--white); color: var(--text); overflow-x: hidden; }
 
  /* ── SCROLLBAR ── */
  ::-webkit-scrollbar { width: 6px; }
  ::-webkit-scrollbar-track { background: var(--off-white); }
  ::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 10px; }
 
  /* ── PRELOADER ── */
  #preloader {
    position: fixed; inset: 0; background: var(--dark); z-index: 9999;
    display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 20px;
    transition: opacity 0.6s ease, visibility 0.6s ease;
  }
  #preloader.hidden { opacity: 0; visibility: hidden; }
  .pre-logo { font-family: 'Playfair Display', serif; color: var(--white); font-size: 2.5rem; font-weight: 900; letter-spacing: -1px; }
  .pre-logo span { color: var(--blue-accent); }
  .pre-bar { width: 200px; height: 3px; background: rgba(255,255,255,0.1); border-radius: 10px; overflow: hidden; }
  .pre-bar-fill { height: 100%; background: linear-gradient(90deg, var(--blue-accent), var(--gold)); border-radius: 10px; animation: preload 1.8s ease forwards; }
  @keyframes preload { from { width: 0; } to { width: 100%; } }
 
  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 0 5%;
    display: flex; align-items: center; justify-content: space-between;
    height: 76px;
    transition: all 0.4s ease;
  }
  nav.scrolled {
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 30px rgba(26, 31, 107, 0.1);
    height: 64px;
  }
  .nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
  .nav-logo-icon {
    width: 42px; height: 42px; background: var(--blue); border-radius: 10px;
    display: flex; align-items: center; justify-content: center; color: white; font-size: 1.1rem; font-weight: 900;
    font-family: 'Playfair Display', serif;
  }
  .nav-logo-text { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; color: var(--white); line-height: 1.1; }
  .nav-logo-text small {  display: block; font-family: 'Outfit', sans-serif; font-size: 0.6rem; font-weight: 400; color: var(--muted); letter-spacing: 2px; text-transform: uppercase; }
  .nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
  .nav-links a { text-decoration: none; color: var(--white); font-size: 0.9rem; font-weight: 500; transition: color 0.3s; position: relative; }
  nav.scrolled .nav-links a { color: var(--text); }
  .nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--blue); transition: width 0.3s; }
  .nav-links a:hover::after { width: 100%; }
  .nav-links a:hover { color: var(--blue-accent); }
  nav.scrolled .nav-links a:hover { color: var(--blue); }
  .nav-cta {
    background: var(--blue); color: white !important; padding: 10px 22px;
    border-radius: 50px; font-weight: 600; transition: all 0.3s !important;
  }
  .nav-cta:hover { background: var(--dark) !important; transform: translateY(-1px); }
  .nav-cta::after { display: none !important; }
  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 5px; }
  .hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }
  nav.scrolled .hamburger span { background: var(--dark); }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
 
  /* mobile nav */
  .mobile-menu {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: var(--dark); z-index: 999;
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 32px;
    transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.77,0,0.175,1);
  }
  .mobile-menu.open { transform: translateX(0); }
  .mobile-menu a { text-decoration: none; color: white; font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; transition: color 0.3s; }
  .mobile-menu a:hover { color: var(--blue-accent); }
 
  /* ── HERO ── */
  .hero {
    min-height: 100vh; position: relative; overflow: hidden;
    display: grid; grid-template-columns: 1fr 1fr; align-items: center;
    padding: 0 5%; gap: 40px; padding-top: 80px;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--dark) 0%, #1e2e6d 60%, #0f0d2b 100%);
    z-index: 0;
  }
  .hero-bg-pattern {
    position: absolute; inset: 0; z-index: 1; opacity: 0.04;
    background-image: radial-gradient(circle, #fff 1px, transparent 1px);
    background-size: 32px 32px;
  }
  .hero-glow {
    position: absolute; top: 20%; right: 15%; width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(83, 76, 175, 0.2) 0%, transparent 70%);
    z-index: 1; pointer-events: none;
    animation: glow-pulse 4s ease-in-out infinite;
  }
  @keyframes glow-pulse { 0%, 100% { transform: scale(1); opacity: 0.8; } 50% { transform: scale(1.1); opacity: 1; } }
  .hero-content { position: relative; z-index: 2; }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(78, 76, 175, 0.15); border: 1px solid rgba(78, 76, 175, 0.3);
    color: var(--blue-accent); padding: 8px 16px; border-radius: 50px;
    font-size: 0.78rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.3s both;
  }
  .hero-badge::before { content: '●'; animation: blink 1.5s infinite; }
  @keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
  .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 900; color: white; line-height: 1.05; margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.5s both;
  }
  .hero-title .accent { color: var(--blue-accent); font-style: italic; }
  .hero-title .gold { color: var(--gold); }
  .hero-desc {
    color: rgba(255,255,255,0.65); font-size: 1.05rem; line-height: 1.75;
    max-width: 480px; margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.7s both;
  }
  .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; animation: fadeInUp 0.8s ease 0.9s both; }
  .btn-primary {
    background: var(--blue); color: white; padding: 15px 32px;
    border-radius: 50px; font-size: 0.95rem; font-weight: 600;
    text-decoration: none; border: none; cursor: pointer;
    transition: all 0.3s; display: inline-flex; align-items: center; gap: 8px;
    box-shadow: 0 8px 30px rgba(31, 26, 107, 0.4);
  }
  .btn-primary:hover { background: var(--blue-accent); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(27, 26, 107, 0.5); }
  .btn-outline {
    background: transparent; color: white; padding: 15px 32px;
    border-radius: 50px; font-size: 0.95rem; font-weight: 600;
    text-decoration: none; border: 2px solid rgba(255,255,255,0.3); cursor: pointer;
    transition: all 0.3s; display: inline-flex; align-items: center; gap: 8px;
  }
  .btn-outline:hover { border-color: white; background: rgba(255,255,255,0.1); }
  .hero-stats { display: flex; gap: 32px; margin-top: 48px; animation: fadeInUp 0.8s ease 1.1s both; }
  .hero-stat { text-align: left; }
  .hero-stat-num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 900; color: white; }
  .hero-stat-num span { color: var(--blue-accent); }
  .hero-stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }
 
  /* hero visual */
  .hero-visual { position: relative; z-index: 2; display: flex; align-items: center; justify-content: center; animation: fadeInRight 1s ease 0.5s both; }
  .hero-img-wrap {
    position: relative; width: 100%; max-width: 520px;
  }
  .hero-img-main {
    width: 100%; border-radius: 24px; object-fit: cover; height: 520px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.4);
    animation: float 6s ease-in-out infinite;
  }
  @keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
  .hero-img-badge {
    position: absolute; bottom: 32px; left: -24px;
    background: white; border-radius: 16px; padding: 14px 20px;
    display: flex; align-items: center; gap: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    animation: float 6s ease-in-out infinite 1s;
  }
  .hero-img-badge-icon { width: 40px; height: 40px; background: var(--blue-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; }
  .hero-img-badge-text strong { display: block; font-size: 0.9rem; color: var(--dark); }
  .hero-img-badge-text span { font-size: 0.72rem; color: var(--muted); }
  .hero-img-tag {
    position: absolute; top: 24px; right: -16px;
    background: var(--blue); color: white; border-radius: 12px; padding: 10px 16px;
    font-size: 0.78rem; font-weight: 600;
    box-shadow: 0 10px 30px rgba(27, 26, 107, 0.4);
  }
 
  /* ── SECTION GLOBAL ── */
  section { padding: 100px 5%; }
  .section-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 3px; color: var(--blue); margin-bottom: 12px; }
  .section-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 900; color: var(--dark); line-height: 1.15; }
  .section-title .italic { font-style: italic; color: var(--blue); }
  .section-sub { color: var(--muted); font-size: 1rem; line-height: 1.7; max-width: 540px; margin-top: 16px; }
 
  /* ── MARQUEE BAND ── */
  .marquee-band {
    background: var(--blue); padding: 16px 0; overflow: hidden; position: relative;
  }
  .marquee-track {
    display: flex; gap: 48px; animation: marquee 20s linear infinite; width: max-content;
  }
  @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
  .marquee-item { color: white; font-size: 0.85rem; font-weight: 500; letter-spacing: 1px; display: flex; align-items: center; gap: 16px; white-space: nowrap; }
  .marquee-dot { color: var(--gold); font-size: 1.2rem; }
 
  /* ── SERVICES GRID ── */
  .services-section { background: var(--off-white); }
  .services-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; flex-wrap: wrap; gap: 24px; }
  .services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .service-card {
    background: white; border-radius: var(--radius); padding: 32px 24px;
    border: 1px solid var(--border); transition: all 0.4s ease;
    cursor: default; position: relative; overflow: hidden;
  }
  .service-card::before {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 0;
    background: linear-gradient(to top, var(--green-light), transparent);
    transition: height 0.4s ease;
  }
  .service-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(26,107,60,0.12); border-color: var(--green-mid); }
  .service-card:hover::before { height: 100%; }
  .service-icon {
    width: 52px; height: 52px; background: var(--blue-light); border-radius: 14px;
    display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
    margin-bottom: 20px; transition: all 0.4s; position: relative; z-index: 1;
  }
  .service-card:hover .service-icon { background: var(--blue); }
  .service-card h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; position: relative; z-index: 1; }
  .service-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.65; position: relative; z-index: 1; }
 
  /* ── PRODUCT SPOTLIGHT ── */
  .product-section { background: white; }
  .product-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .product-imgs { position: relative; }
  .product-img-main { width: 100%; border-radius: var(--radius-lg); object-fit: cover; height: 560px; }
  .product-img-float {
    position: absolute; bottom: -24px; right: -24px;
    width: 45%; border-radius: var(--radius); border: 6px solid white;
    box-shadow: var(--shadow); object-fit: cover;
    animation: float 7s ease-in-out infinite 1.5s;
  }
  .product-content .section-label { margin-bottom: 8px; }
  .product-content .section-title { margin-bottom: 20px; }
  .product-features { display: flex; flex-direction: column; gap: 16px; margin: 32px 0; }
  .product-feature { display: flex; align-items: flex-start; gap: 14px; }
  .feature-check { width: 22px; height: 22px; background: var(--green); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 0.65rem; flex-shrink: 0; margin-top: 2px; }
  .feature-text strong { display: block; font-size: 0.95rem; color: var(--dark); }
  .feature-text span { font-size: 0.83rem; color: var(--muted); }
  .product-price-tag {
    display: inline-flex; align-items: baseline; gap: 8px;
    background: var(--blue-light); border-radius: 12px; padding: 16px 24px; margin-bottom: 32px;
  }
  .price-label { font-size: 0.78rem; color: var(--muted); font-weight: 500; }
  .price-amount { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 900; color: var(--blue); }
  .price-sub { font-size: 0.75rem; color: var(--muted); }
 
  /* ── TESTIMONIALS ── */
  .testimonials-section { background: var(--off-white); }
  .testimonials-header { text-align: center; margin-bottom: 60px; }
  .testimonials-header .section-sub { margin: 16px auto 0; }
  .testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .testimonial-card {
    background: white; border-radius: var(--radius); padding: 32px;
    border: 1px solid var(--border); transition: all 0.4s;
  }
  .testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
  .testimonial-card.featured { background: var(--blue); color: white; }
  .t-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 16px; letter-spacing: 2px; }
  .t-text { font-size: 0.95rem; line-height: 1.7; color: var(--text); margin-bottom: 24px; }
  .testimonial-card.featured .t-text { color: rgba(255,255,255,0.85); }
  .t-author { display: flex; align-items: center; gap: 12px; }
  .t-avatar { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; background: var(--blue-light); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--blue); font-size: 0.9rem; }
  .t-name { font-weight: 700; font-size: 0.9rem; color: var(--dark); }
  .t-role { font-size: 0.75rem; color: var(--muted); }
  .testimonial-card.featured .t-name { color: white; }
  .testimonial-card.featured .t-role { color: rgba(255,255,255,0.6); }
 
  /* ── CTA BANNER ── */
  .cta-section {
    background: linear-gradient(135deg, var(--dark) 0%, #1e214a 100%);
    position: relative; overflow: hidden;
  }
  .cta-section::before {
    content: ''; position: absolute; top: -50%; right: -10%; width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(78, 76, 175, 0.15) 0%, transparent 70%);
  }
  .cta-inner { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 60px; position: relative; z-index: 1; }
  .cta-content .section-label { color: var(--gold); }
  .cta-content .section-title { color: white; }
  .cta-content .section-sub { color: rgba(255,255,255,0.6); }
  .cta-img { border-radius: var(--radius-lg); width: 100%; height: 380px; object-fit: cover; }
  .cta-form { margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; }
  .cta-input {
    flex: 1; min-width: 200px; padding: 14px 20px; border-radius: 50px;
    border: 2px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.08);
    color: white; font-family: 'Outfit', sans-serif; font-size: 0.9rem;
    outline: none; transition: border 0.3s;
  }
  .cta-input::placeholder { color: rgba(255,255,255,0.4); }
  .cta-input:focus { border-color: var(--blue-accent); }
 
  /* ── ABOUT ── */
  .about-section { background: white; }
  .about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .about-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .about-img { border-radius: var(--radius); object-fit: cover; width: 100%; }
  .about-img.tall { height: 300px; }
  .about-img.short { height: 220px; }
  .about-img.bottom { margin-top: -60px; }
  .about-pills { display: flex; gap: 10px; flex-wrap: wrap; margin: 24px 0; }
  .pill {
    padding: 8px 16px; border-radius: 50px; font-size: 0.8rem; font-weight: 600;
    border: 2px solid var(--border); color: var(--text); transition: all 0.3s;
  }
  .pill:hover, .pill.active { background: var(--blue); color: white; border-color: var(--blue); }
 
  /* ── FOOTER ── */
  footer { background: var(--dark); color: rgba(255,255,255,0.7); padding: 80px 5% 40px; }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 60px; }
  .footer-brand .nav-logo-text { color: white; }
  .footer-brand p { margin-top: 16px; font-size: 0.88rem; line-height: 1.7; color: rgba(255,255,255,0.5); }
  .footer-socials { display: flex; gap: 12px; margin-top: 24px; }
  .social-btn {
    width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center; color: white;
    text-decoration: none; font-size: 0.9rem; transition: all 0.3s;
  }
  .social-btn:hover { background: var(--blue); transform: translateY(-2px); }
  footer h4 { color: white; font-size: 0.9rem; font-weight: 700; margin-bottom: 20px; letter-spacing: 0.5px; }
  footer ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
  footer ul a { text-decoration: none; color: rgba(255,255,255,0.5); font-size: 0.85rem; transition: color 0.3s; }
  footer ul a:hover { color: var(--blue-accent); }
  .footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 32px; display: flex; justify-content: space-between; align-items: center; flex-wrap: gap; gap: 16px; }
  .footer-bottom p { font-size: 0.82rem; }
 
  /* ── SCROLL ANIMATIONS ── */
  .reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.8s ease, transform 0.8s ease; }
  .reveal-left.visible { opacity: 1; transform: translateX(0); }
  .reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
  .reveal-right.visible { opacity: 1; transform: translateX(0); }
  @keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
  @keyframes fadeInRight { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: translateX(0); } }
 
  /* ── BACK TO TOP ── */
  #back-top {
    position: fixed; bottom: 32px; right: 32px; width: 46px; height: 46px;
    background: var(--green); border-radius: 50%; border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center; color: white; font-size: 1.1rem;
    box-shadow: 0 8px 24px rgba(26, 34, 107, 0.4); transition: all 0.3s;
    opacity: 0; transform: translateY(20px); z-index: 500;
  }
  #back-top.visible { opacity: 1; transform: translateY(0); }
  #back-top:hover { background: var(--dark); }
 
  /* ── RESPONSIVE ── */
  @media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .hero { grid-template-columns: 1fr; text-align: center; padding-top: 100px; }
    .hero-visual { display: none; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
    .product-inner, .about-inner, .cta-inner { grid-template-columns: 1fr; }
    .product-imgs { display: none; }
    .about-imgs { display: none; }
    .services-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .services-header { flex-direction: column; align-items: flex-start; }
    section { padding: 70px 5%; }
  }
  @media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
    .hero-stats { flex-wrap: wrap; gap: 20px; }
  }


  /*  
   CART DRAWER + CHECKOUT MODAL   Paste at bottom of style.css */

/* Overlay */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(6px);
  z-index: 399;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease;
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }

/* ── DRAWER ── */
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(420px, 100vw);
  background: #121117;
  border-left: 1px solid rgba(255,255,255,0.07);
  z-index: 400;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.4,0,0.2,1);
  display: flex; flex-direction: column;
  box-shadow: -24px 0 80px rgba(0,0,0,0.6);
}
.cart-drawer.open { transform: translateX(0); }

/* Header */
.cart-drawer-header {
  padding: 22px 22px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: space-between;
  flex-shrink: 0;
}
.cart-drawer-title {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; color: #c9a84c;
}
.cart-icon-btn { font-size: 1.1rem; 
  background: var(--blue); color: white !important; padding: 10px 22px;
    border-radius: 50px; border: none; font-weight: 600; transition: all 0.3s !important;
  }
  .cart-icon-btn:hover { background: var(--dark) !important; transform: translateY(-1px); }
  .cart-icon-btn::after { display: none !important; }

  .cart2-icon-btn { font-size: 1.1rem; 
  background: var(--blue); color: white !important; padding: 10px 30px;
    border-radius: 10px; border: none; font-weight: 600; transition: all 0.3s !important;
  }
  .cart2-icon-btn:hover { background: var(--dark) !important; transform: translateY(-1px); }
  .cart2-icon-btn::after { display: none !important; }
.cart-drawer-count {
  background: #c9a84c; color: #0b0b0f;
  border-radius: 50px; font-size: 0.7rem;
  font-weight: 800; padding: 2px 8px;
  font-family: 'DM Sans', sans-serif;
}
.cart-drawer-close {
  background: none; border: none;
  color: #696870; font-size: 1.2rem;
  cursor: pointer; transition: all 0.2s;
  line-height: 1; padding: 4px;
}
.cart-drawer-close:hover { color: #e8ede8; transform: scale(1.15); }

/* Body */
.cart-drawer-body {
  flex: 1; overflow-y: auto; padding: 16px 22px;
}
.cart-drawer-body::-webkit-scrollbar { width: 4px; }
.cart-drawer-body::-webkit-scrollbar-track { background: transparent; }
.cart-drawer-body::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 4px; }

/* Empty state */
.cart-empty-state {
  text-align: center; padding: 60px 16px;
  color: #686870;
}
.cart-empty-icon { font-size: 3rem; margin-bottom: 14px; }
.cart-empty-state h3 { color: #e8e8ed; font-size: 1rem; margin-bottom: 8px; }
.cart-empty-state p { font-size: 0.85rem; margin-bottom: 24px; line-height: 1.6; }
.cart-empty-cta {
  background: linear-gradient(135deg, #2a2f6e, #1e1d52);
  color: #fff; border: 1px solid rgba(201,168,76,0.25);
  padding: 11px 26px; border-radius: 8px;
  font-size: 0.875rem; font-weight: 600;
  cursor: pointer; font-family: 'DM Sans', sans-serif;
  transition: all 0.25s;
}
.cart-empty-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.4); }

/* Cart item */
.cart-item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
  animation: cartItemIn 0.3s ease both;
}
.cart-item:last-child { border-bottom: none; }
@keyframes cartItemIn {
  from { opacity: 0; transform: translateX(14px); }
  to   { opacity: 1; transform: none; }
}
.cart-item-thumb {
  width: 60px; height: 60px; border-radius: 10px;
  object-fit: cover; border: 1px solid rgba(255,255,255,0.07);
  background: #1a1b22; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
}
.cart-item-thumb img {
  width: 100%; height: 100%; object-fit: cover; border-radius: 10px;
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name {
  font-size: 0.9rem; font-weight: 600; color: #e8ede8;
  margin-bottom: 3px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.cart-item-unit { font-size: 0.75rem; color: #686970; margin-bottom: 8px; }
.cart-qty-control { display: flex; align-items: center; gap: 2px; }
.cart-qty-btn {
  width: 28px; height: 28px; border-radius: 6px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: #e8e8ed; font-size: 1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s; font-family: 'DM Sans', sans-serif;
  line-height: 1;
}
.cart-qty-btn:hover {
  background: rgba(201,168,76,0.12);
  border-color: #c9a84c; color: #c9a84c;
}
.cart-qty-num {
  min-width: 32px; text-align: center;
  font-size: 0.88rem; font-weight: 700; color: #e8e8ed;
}
.cart-item-right {
  display: flex; flex-direction: column;
  align-items: flex-end; gap: 8px; flex-shrink: 0;
}
.cart-item-total {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 700; color: #c9a84c;
}
.cart-item-remove {
  background: none; border: none;
  color: rgba(231,76,60,0.4); font-size: 0.9rem;
  cursor: pointer; transition: all 0.2s; line-height: 1;
}
.cart-item-remove:hover { color: #e74c3c; transform: scale(1.2); }

/* Coupon */
.cart-coupon-row {
  display: flex; gap: 8px;
  padding: 12px 22px 0; flex-shrink: 0;
}
.cart-coupon-input {
  flex: 1; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: #e9e8ed; border-radius: 8px;
  padding: 10px 12px; font-size: 0.82rem; outline: none;
  font-family: 'DM Sans', sans-serif; transition: all 0.2s;
}
.cart-coupon-input:focus { border-color: #c9a84c; }
.cart-coupon-input::placeholder { color: #686870; }
.cart-coupon-btn {
  background: rgba(201,168,76,0.1); color: #c9a84c;
  border: 1px solid rgba(201,168,76,0.25);
  padding: 10px 18px; border-radius: 8px;
  font-size: 0.82rem; font-weight: 700; cursor: pointer;
  font-family: 'DM Sans', sans-serif; transition: all 0.2s;
  white-space: nowrap;
}
.cart-coupon-btn:hover { background: rgba(201,168,76,0.2); }
.cart-coupon-msg {
  padding: 6px 22px 0; font-size: 0.78rem; min-height: 22px; flex-shrink: 0;
}
.cart-coupon-msg.ok  { color: #2e38cc; }
.cart-coupon-msg.err { color: #e74c3c; }

/* Footer */
.cart-drawer-footer {
  padding: 16px 22px 24px;
  border-top: 1px solid rgba(255,255,255,0.07);
  flex-shrink: 0; background: #0d0d12;
}
.cart-summary-rows { display: flex; flex-direction: column; gap: 10px; margin-bottom: 14px; }
.cart-summary-row {
  display: flex; justify-content: space-between;
  font-size: 0.85rem; color: #686870;
}
.cart-summary-divider { height: 1px; background: rgba(255,255,255,0.07); }
.cart-summary-total {
  font-weight: 700; color: #e8e8ed !important; font-size: 0.95rem;
}
.cart-summary-total span:last-child {
  font-family: 'Playfair Display', serif;
  color: #c9a84c; font-size: 1.2rem;
}
.cart-free-delivery-note {
  background: rgba(49, 46, 204, 0.07);
  border: 1px solid rgba(46, 49, 204, 0.15);
  border-radius: 8px; padding: 9px 14px;
  font-size: 0.75rem; color: rgba(80, 46, 204, 0.85);
  margin-bottom: 14px;
}
.cart-checkout-btn {
  width: 100%;
  background: linear-gradient(135deg, #2a2f6e, #1d2252);
  color: #fff; border: 1px solid rgba(201,168,76,0.2);
  padding: 14px; border-radius: 9px;
  font-size: 0.925rem; font-weight: 700; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.25s; margin-bottom: 8px;
}
.cart-checkout-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,0,0,0.5); }
.cart-continue-btn {
  width: 100%; background: none;
  border: 1px solid rgba(255,255,255,0.07);
  color: #686870; padding: 11px;
  border-radius: 9px; font-size: 0.85rem; cursor: pointer;
  font-family: 'DM Sans', sans-serif; transition: all 0.2s;
}
.cart-continue-btn:hover { border-color: #c9a84c; color: #c9a84c; }

/* ── CHECKOUT MODAL ── */
.checkout-modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.8); backdrop-filter: blur(10px);
  z-index: 500;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.checkout-modal-overlay.open { opacity: 1; pointer-events: auto; }

.checkout-modal-panel {
  background: #16161e;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  width: min(520px, 94vw);
  max-height: 90vh; overflow-y: auto;
  padding: 34px 30px;
  box-shadow: 0 50px 120px rgba(0,0,0,0.7);
  animation: modalSlideIn 0.35s cubic-bezier(0.34,1.56,0.64,1) both;
}
@keyframes modalSlideIn {
  from { opacity: 0; transform: scale(0.93) translateY(18px); }
  to   { opacity: 1; transform: none; }
}
.checkout-modal-header {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 6px;
}
.checkout-modal-header h2 {
  font-family: 'Playfair Display', serif;
  color: #c9a84c; font-size: 1.6rem;
}
.checkout-modal-close {
  background: none; border: none; color: #696870;
  font-size: 1.2rem; cursor: pointer; transition: all 0.2s;
  margin-top: 4px;
}
.checkout-modal-close:hover { color: #e8e8ed; transform: scale(1.1); }
.checkout-modal-sub { color: #686970; font-size: 0.875rem; margin-bottom: 22px; }

/* Form */
.checkout-form-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px; margin-bottom: 22px;
}
.checkout-form-group { display: flex; flex-direction: column; gap: 6px; }
.checkout-form-group.full { grid-column: 1 / -1; }
.checkout-form-group label {
  font-size: 0.72rem; color: #686870; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.07em;
}
.checkout-form-group input,
.checkout-form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 9px; color: #e8e8ed;
  padding: 11px 14px; font-size: 0.875rem; outline: none;
  font-family: 'DM Sans', sans-serif; transition: all 0.2s; resize: none;
}
.checkout-form-group input:focus,
.checkout-form-group textarea:focus {
  border-color: #c9a84c; background: rgba(201,168,76,0.03);
}
.checkout-form-group input::placeholder,
.checkout-form-group textarea::placeholder { color: #686870; }
.checkout-form-group input.err,
.checkout-form-group textarea.err { border-color: #e74c3c; }

.checkout-modal-actions { display: flex; gap: 10px; }
.checkout-btn-back {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: #686870; padding: 12px 18px; border-radius: 9px;
  font-size: 0.875rem; font-weight: 600; cursor: pointer;
  font-family: 'DM Sans', sans-serif; transition: all 0.2s;
}
.checkout-btn-back:hover { color: #e8e8ed; }
.checkout-btn-next {
  flex: 1; background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  color: #c9a84c; padding: 12px;
  border-radius: 9px; font-size: 0.875rem; font-weight: 700;
  cursor: pointer; font-family: 'DM Sans', sans-serif; transition: all 0.2s;
}
.checkout-btn-next:hover { background: rgba(201,168,76,0.2); }
.checkout-btn-place {
  flex: 1; background: linear-gradient(135deg, #2f2a6e, #211d52);
  color: #fff; border: 1px solid rgba(201,168,76,0.2);
  padding: 12px; border-radius: 9px;
  font-size: 0.875rem; font-weight: 700; cursor: pointer;
  font-family: 'DM Sans', sans-serif; transition: all 0.2s;
}
.checkout-btn-place:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(0,0,0,0.5); }

/* Confirm step */
.confirm-customer-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px; padding: 14px 16px;
  margin-bottom: 16px; display: flex; flex-direction: column; gap: 7px;
}
.confirm-customer-card div { font-size: 0.82rem; color: #686870; }
.confirm-customer-card strong { color: #e8e8ed; margin-left: 6px; }
.confirm-item-row {
  display: flex; justify-content: space-between;
  font-size: 0.875rem; padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06); color: #686870;
}
.confirm-item-row:last-child { border-bottom: none; }
.confirm-item-row span:last-child { color: #c9a84c; font-weight: 700; }
.confirm-total-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0 6px;
  border-top: 1px solid rgba(255,255,255,0.07);
  margin-top: 6px; font-weight: 700; font-size: 1rem; color: #e8e8ed;
}
.confirm-total-amount {
  font-family: 'Playfair Display', serif;
  color: #c9a84c; font-size: 1.25rem;
}
.checkout-payment-note {
  background: rgba(201,168,76,0.07);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 9px; padding: 11px 14px;
  font-size: 0.8rem; color: rgba(201,168,76,0.8); margin: 16px 0;
}

/* Success */
.checkout-success-icon { font-size: 3.5rem; margin-bottom: 14px; }
.checkout-success-ref {
  background: rgba(46, 49, 204, 0.08);
  border: 1px solid rgba(49, 46, 204, 0.18);
  border-radius: 9px; padding: 12px;
  font-size: 0.85rem; color: #686870; margin-top: 16px;
}
.checkout-success-ref strong { color: #382ecc; }

/* Add-to-cart button (for product cards) */
.btn-add-cart {
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  color: #c9a84c; padding: 10px 22px;
  border-radius: 8px; font-size: 0.875rem; font-weight: 700;
  cursor: pointer; font-family: 'DM Sans', sans-serif;
  transition: all 0.25s;
}
.btn-add-cart:hover {
  background: rgba(201,168,76,0.2);
  transform: translateY(-1px);
}

/* Toast notification */
#cartToast {
  position: fixed; bottom: 28px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: linear-gradient(135deg, #2a2b6e, #221d52);
  color: #fff; padding: 12px 26px; border-radius: 50px;
  font-weight: 600; font-size: 0.875rem;
  border: 1px solid rgba(201,168,76,0.3);
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
  z-index: 9999; opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  white-space: nowrap; font-family: 'DM Sans', sans-serif;
}
#cartToast.show {
  opacity: 1; transform: translateX(-50%) translateY(0);
}

/* Shake animation for form validation */
@keyframes shakeModal {
  0%,100%{ transform: none; }
  20%{ transform: translateX(-8px); }
  40%{ transform: translateX(8px); }
  60%{ transform: translateX(-5px); }
  80%{ transform: translateX(5px); }
}

/* Responsive */
@media (max-width: 560px) {
  .checkout-form-grid { grid-template-columns: 1fr; }
  .checkout-form-group.full { grid-column: 1; }
  .checkout-modal-panel { padding: 26px 20px; }
  .cart-drawer { width: 100vw; }
}
@media (max-width: 480px) {
  .checkout-form-grid { grid-template-columns: 1fr; }
  .checkout-form-group.full { grid-column: 1; }
  .checkout-modal-panel { padding: 24px 18px; }
  .cart-drawer { width: 100vw; }
}