/* ============================================================
   NP TOY — Global Design System
   Romantic · Modern · Lightweight
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* ── CSS Variables ───────────────────────────────────────── */
:root {
  --primary:      #C0392B;
  --primary-2:    #922B21;
  --rose:         #E8A0A0;
  --blush:        #FDF0F0;
  --cream:        #FAF5F0;
  --charcoal:     #2C2C2C;
  --muted:        #888;
  --border:       rgba(214,90,90,0.12);
  --glass-bg:     rgba(255,255,255,0.75);
  --glass-blur:   blur(18px);
  --shadow-sm:    0 4px 20px rgba(0,0,0,0.05);
  --shadow-md:    0 12px 35px rgba(192,57,43,0.10);
  --shadow-lg:    0 25px 60px rgba(192,57,43,0.15);
  --radius-sm:    12px;
  --radius-md:    20px;
  --radius-lg:    30px;
  --radius-full:  100px;
  --transition:   all 0.35s cubic-bezier(0.175,0.885,0.32,1.275);
}

/* ── Reset & Base ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--cream);
  color: var(--charcoal);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ── Typography ──────────────────────────────────────────── */
h1, h2, h3 { font-family: 'Playfair Display', serif; font-weight: 700; letter-spacing: -0.5px; }
h4, h5, h6 { font-family: 'Outfit', sans-serif; font-weight: 700; }
.serif { font-family: 'Playfair Display', serif; }
.accent { color: var(--primary); }
.text-muted { color: var(--muted) !important; }

/* ── Layout ──────────────────────────────────────────────── */
.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 12px; }
.section-header p { color: var(--muted); font-size: 1.05rem; }
.section-header .eyebrow {
  display: inline-block; font-size: 12px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--primary); margin-bottom: 10px;
}

/* ── Glassmorphism Card ──────────────────────────────────── */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn-primary-np {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff; border: none; border-radius: var(--radius-full);
  padding: 13px 32px; font-weight: 700; font-size: 15px;
  cursor: pointer; text-decoration: none;
  box-shadow: 0 10px 25px rgba(192,57,43,0.28);
  transition: var(--transition);
}
.btn-primary-np:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 18px 35px rgba(192,57,43,0.38); color: #fff; }

.btn-outline-np {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--primary);
  border: 2px solid var(--primary); border-radius: var(--radius-full);
  padding: 11px 28px; font-weight: 700; font-size: 15px;
  cursor: pointer; text-decoration: none; transition: var(--transition);
}
.btn-outline-np:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }



/* ── Header ──────────────────────────────────────────────── */
.main-header {
  background: rgba(255,255,255,0.82) !important;
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,0.5);
  box-shadow: 0 2px 30px rgba(0,0,0,0.04);
  transition: background 0.4s ease;
}
.main-header.scrolled {
  background: rgba(255,255,255,0.97) !important;
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
}
.logo-circle {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1rem;
  box-shadow: 0 6px 18px rgba(192,57,43,0.3);
  transition: var(--transition);
}
.logo-circle:hover { transform: rotate(-5deg) scale(1.05); }
.brand-name { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.6rem; color: var(--charcoal); letter-spacing: -0.5px; }
.brand-name .dot { color: var(--primary); }

.navbar-nav .nav-link {
  font-weight: 600; color: #555; padding: 8px 14px;
  border-radius: var(--radius-sm); transition: var(--transition); margin: 0 2px;
}
.navbar-nav .nav-link:hover { color: var(--primary); background: rgba(192,57,43,0.06); }
.navbar-nav .nav-link.active { color: var(--primary); }

.nav-icon-btn {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(192,57,43,0.06); border: none;
  display: flex; align-items: center; justify-content: center;
  color: var(--charcoal); font-size: 18px;
  cursor: pointer; transition: var(--transition); position: relative;
  text-decoration: none;
}
.nav-icon-btn:hover { background: var(--primary); color: #fff; transform: scale(1.1); }
.nav-icon-btn .badge-dot {
  position: absolute; top: 6px; right: 6px;
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--primary); border: 2px solid #fff;
}

.btn-nav-auth {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff; border: none; border-radius: var(--radius-full);
  padding: 9px 22px; font-weight: 700; font-size: 14px;
  cursor: pointer; box-shadow: 0 6px 18px rgba(192,57,43,0.28);
  transition: var(--transition); text-decoration: none; display: inline-flex; align-items: center; gap: 6px;
}
.btn-nav-auth:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(192,57,43,0.38); color: #fff; }

/* ── Announcement Bar ────────────────────────────────────── */
.announcement-bar {
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
  color: #fff; font-size: 13px; font-weight: 500;
  padding: 10px 0; text-align: center; letter-spacing: 0.3px;
}
.announcement-bar a { color: rgba(255,255,255,0.85); text-decoration: underline; }

/* ── Hero Slider ─────────────────────────────────────────── */
.main-slider { border-radius: 0 0 50px 50px; overflow: hidden; box-shadow: 0 30px 70px rgba(192,57,43,0.1); }
.slide-inner {
  min-height: 460px; height: 68vh; max-height: 680px;
  background-size: cover; background-position: center;
  display: flex; align-items: center; position: relative;
}
@media (max-width: 576px) { .slide-inner { min-height: 360px; height: 58vh; } }
.slide-overlay { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.18) 65%, transparent 100%); }
.slide-content { padding-left: 8%; z-index: 2; color: #fff; max-width: 560px; }
.slide-content .eyebrow { color: var(--rose); font-size: 12px; letter-spacing: 3px; text-transform: uppercase; font-weight: 700; margin-bottom: 14px; display: block; }
.slide-content h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 800; line-height: 1.15; margin-bottom: 16px; text-shadow: 0 2px 12px rgba(0,0,0,0.3); }
.slide-content p { font-size: 1.1rem; margin-bottom: 28px; opacity: 0.9; }

/* ── Trust Bar ───────────────────────────────────────────── */
.trust-bar {
  background: var(--glass-bg); backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(255,255,255,0.9); border-radius: var(--radius-lg);
  padding: 22px 30px; box-shadow: var(--shadow-sm);
}
.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-item .icon-wrap {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blush), #fff);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(192,57,43,0.1);
}
.trust-item strong { font-size: 13px; color: var(--charcoal); display: block; }
.trust-item span { font-size: 12px; color: var(--muted); }

/* ── Category Pills ──────────────────────────────────────── */
.cat-pill {
  background: var(--glass-bg); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: var(--radius-full); padding: 12px 28px;
  text-decoration: none; color: #555; font-weight: 600;
  transition: var(--transition); box-shadow: var(--shadow-sm);
  display: inline-block;
}
.cat-pill:hover {
  background: var(--primary); color: #fff;
  border-color: var(--primary); transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(192,57,43,0.2);
}
.cat-pill.active { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ── Product Card ────────────────────────────────────────── */
.product-card {
  background: var(--glass-bg); backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(255,255,255,1);
  border-radius: var(--radius-lg); padding: 14px;
  transition: var(--transition); box-shadow: var(--shadow-sm);
  position: relative; overflow: hidden;
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); background: #fff; }

.product-card .card-img-wrap { border-radius: var(--radius-md); overflow: hidden; position: relative; }
.product-card img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.6s ease; display: block; }
.product-card:hover img { transform: scale(1.05); }

.product-card .wishlist-btn {
  position: absolute; top: 10px; right: 10px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.9); border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--transition); font-size: 16px;
  color: #bbb; box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  opacity: 0;
}
.product-card:hover .wishlist-btn { opacity: 1; }
.product-card .wishlist-btn:hover { background: #fff; color: var(--primary); transform: scale(1.15); }
.product-card .wishlist-btn.active { color: var(--primary); opacity: 1; }

.product-card .badge-new {
  position: absolute; top: 10px; left: 10px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff; font-size: 10px; font-weight: 700;
  padding: 4px 10px; border-radius: var(--radius-full);
  letter-spacing: 0.5px;
}

.product-card .card-body { padding: 14px 4px 4px; }
.product-card .product-title { font-weight: 700; font-size: 14px; color: var(--charcoal); margin-bottom: 6px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.product-card .price-tag { color: var(--primary); font-weight: 800; font-size: 1.2rem; }
.product-card .price-old { color: var(--muted); font-size: 13px; text-decoration: line-through; margin-left: 6px; }

.btn-add-cart {
  background: var(--blush); color: var(--primary);
  border: 2px solid rgba(192,57,43,0.12);
  border-radius: var(--radius-full); width: 100%;
  padding: 11px; font-weight: 700; font-size: 14px;
  cursor: pointer; transition: var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 7px;
}
.product-card:hover .btn-add-cart, .btn-add-cart:hover {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff; border-color: transparent;
  box-shadow: 0 8px 22px rgba(192,57,43,0.28);
  transform: translateY(-1px);
}

/* ── Deal Card ───────────────────────────────────────────── */
.deal-card { position: relative; }
.deal-card .deal-badge {
  position: absolute; top: -12px; right: 16px;
  background: linear-gradient(135deg, #FF6B6B, #C0392B);
  color: #fff; font-size: 11px; font-weight: 800;
  padding: 5px 14px; border-radius: var(--radius-full);
  box-shadow: 0 6px 16px rgba(192,57,43,0.3);
  z-index: 1;
}


/* ── Reels ───────────────────────────────────────────────── */
.reels-track { display: flex; overflow-x: auto; gap: 18px; padding: 10px 5px 20px; scrollbar-width: none; }
.reels-track::-webkit-scrollbar { display: none; }
.reel-card {
  min-width: 170px; max-width: 170px; height: 310px;
  border-radius: var(--radius-lg); overflow: hidden;
  position: relative; flex-shrink: 0;
  box-shadow: var(--shadow-md); transition: var(--transition);
  border: 3px solid #fff;
}
.reel-card:hover { transform: translateY(-10px) scale(1.02); box-shadow: var(--shadow-lg); }
.reel-card video { width: 100%; height: 100%; object-fit: cover; display: block; }
.reel-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 28px 14px 14px;
  background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, transparent 100%);
  color: #fff; font-size: 12px; font-weight: 600;
}
.reel-play-icon {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.25); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: #fff; opacity: 0; transition: 0.3s;
}
.reel-card:hover .reel-play-icon { opacity: 1; }

/* ── Blog Card ───────────────────────────────────────────── */
.blog-card { text-decoration: none; color: inherit; display: block; }
.blog-card:hover { color: inherit; }
.blog-card .blog-img { border-radius: var(--radius-md); overflow: hidden; height: 210px; }
.blog-card .blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.blog-card:hover .blog-img img { transform: scale(1.06); }
.blog-card .blog-meta { font-size: 12px; color: var(--muted); font-weight: 600; margin: 14px 0 8px; }
.blog-card .blog-title { font-size: 17px; font-weight: 700; line-height: 1.4; margin-bottom: 8px; transition: color 0.3s; }
.blog-card:hover .blog-title { color: var(--primary); }
.blog-card .blog-excerpt { font-size: 13px; color: var(--muted); }
.blog-card .read-more { font-size: 13px; font-weight: 700; color: var(--primary); margin-top: 12px; display: inline-flex; align-items: center; gap: 4px; }
.blog-card .read-more::after { content: '→'; transition: transform 0.3s; }
.blog-card:hover .read-more::after { transform: translateX(4px); }

/* ── Auth Modal ──────────────────────────────────────────── */
.auth-modal {
  border-radius: var(--radius-lg); overflow: hidden;
  background: rgba(250,245,240,0.97); backdrop-filter: blur(28px);
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: 0 30px 70px rgba(0,0,0,0.14);
}
.auth-pills { background: #fff; padding: 5px; border-radius: var(--radius-full); display: inline-flex; box-shadow: var(--shadow-sm); }
.auth-pills .nav-link { color: #666; background: transparent; border-radius: var(--radius-full); padding: 9px 28px; font-weight: 600; font-size: 14px; transition: all 0.3s ease; }
.auth-pills .nav-link.active { background: linear-gradient(135deg, var(--primary), var(--primary-2)) !important; color: #fff !important; box-shadow: 0 5px 14px rgba(192,57,43,0.3); }
.auth-input {
  border: 2px solid #EAE0E0 !important; border-radius: var(--radius-sm) !important;
  padding: 13px 16px !important; font-size: 15px; font-weight: 500;
  background: rgba(255,255,255,0.85) !important; transition: all 0.3s ease;
}
.auth-input:focus { border-color: var(--primary) !important; box-shadow: 0 0 0 4px rgba(192,57,43,0.1) !important; background: #fff !important; }

/* ── Footer ──────────────────────────────────────────────── */
.romantic-footer {
  background: linear-gradient(180deg, rgba(255,255,255,0.7) 0%, var(--cream) 100%);
  border-top: 1px solid rgba(255,255,255,0.9);
  padding-top: 70px; padding-bottom: 30px;
}
.footer-title { font-weight: 800; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--charcoal); margin-bottom: 22px; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: #777; text-decoration: none; font-weight: 500; font-size: 14px; transition: all 0.3s ease; display: inline-block; }
.footer-links a:hover { color: var(--primary); transform: translateX(4px); }
.footer-divider { border-color: #EAE0E0; margin: 40px 0 30px; opacity: 0.7; }
.social-icon {
  width: 40px; height: 40px; border-radius: var(--radius-sm);
  background: #fff; color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; transition: var(--transition);
  box-shadow: 0 4px 12px rgba(192,57,43,0.1);
  text-decoration: none;
}
.social-icon:hover { background: linear-gradient(135deg, var(--primary), var(--primary-2)); color: #fff; transform: translateY(-3px); box-shadow: 0 8px 22px rgba(192,57,43,0.25); }

/* ── Age Gate ────────────────────────────────────────────── */
#ageGateModal .modal-content { border-radius: var(--radius-lg); border: none; overflow: hidden; }
.age-gate-wrap { padding: 40px 30px; text-align: center; background: var(--cream); }
.age-gate-icon { font-size: 3.5rem; margin-bottom: 16px; }
.age-gate-wrap h2 { font-family: 'Playfair Display', serif; color: var(--primary); margin-bottom: 10px; }

/* ── Mini Cart Drawer ────────────────────────────────────── */
.cart-drawer {
  position: fixed; top: 0; right: -420px; width: 400px; height: 100vh;
  background: #fff; z-index: 9999; box-shadow: -10px 0 60px rgba(0,0,0,0.1);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex; flex-direction: column; border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}
.cart-drawer.open { right: 0; }
.cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.35); z-index: 9998; opacity: 0; pointer-events: none; transition: opacity 0.4s; }
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-drawer-header { padding: 24px; border-bottom: 1px solid #f0e8e8; display: flex; align-items: center; justify-content: space-between; }
.cart-drawer-body { flex: 1; overflow-y: auto; padding: 20px; }
.cart-drawer-footer { padding: 20px; border-top: 1px solid #f0e8e8; }
@media (max-width: 450px) { .cart-drawer { width: 100%; right: -100%; border-radius: 0; } }

/* ── Micro Animations ────────────────────────────────────── */
@keyframes heartPop {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.35); }
  70%  { transform: scale(0.9); }
  100% { transform: scale(1); }
}
.heart-pop { animation: heartPop 0.45s cubic-bezier(0.36, 0.07, 0.19, 0.97); }



@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in-up { animation: fadeInUp 0.5s ease forwards; }


/* ── Utility ─────────────────────────────────────────────── */

img.lazy { opacity: 0; transition: opacity 0.5s ease; }
img.lazy.loaded { opacity: 1; }
@media (max-width: 768px) { .section { padding: 50px 0; } .section-header { margin-bottom: 34px; } }

/* ── Brand Buttons (shared across pages) ──────────────────── */
.btn-romantic {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff; border: none; border-radius: var(--radius-full);
  padding: 12px 34px; font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 15px;
  cursor: pointer; text-decoration: none;
  box-shadow: 0 10px 25px rgba(192,57,43,0.22); transition: var(--transition);
}
.btn-romantic:hover { background: linear-gradient(135deg, var(--primary-2), var(--primary)); color: #fff; transform: translateY(-2px); box-shadow: 0 14px 30px rgba(192,57,43,0.3); }

.btn-romantic-outline {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  background: transparent; color: var(--primary); border: 2px solid var(--primary);
  border-radius: var(--radius-full); padding: 9px 26px;
  font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 14px;
  cursor: pointer; text-decoration: none; transition: var(--transition);
}
.btn-romantic-outline:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }

/* ── Product Detail Page ─────────────────────────────────── */
.product-gallery-card {
  background: #fff; border-radius: var(--radius-lg); padding: 20px;
  border: 1px solid var(--border); position: sticky; top: 100px;
  box-shadow: var(--shadow-sm);
}
.main-img-wrap { border-radius: var(--radius-md); overflow: hidden; margin-bottom: 15px; }
.main-img-wrap img { width: 100%; height: 450px; object-fit: cover; cursor: zoom-in; transition: var(--transition); display: block; }
.thumb-scroll { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 5px; scrollbar-width: thin; }
.thumb-scroll::-webkit-scrollbar { height: 6px; }
.thumb-scroll::-webkit-scrollbar-thumb { background: var(--border); border-radius: 100px; }
.thumb-item { width: 80px; height: 80px; border-radius: 12px; object-fit: cover; cursor: pointer; border: 2px solid transparent; transition: var(--transition); flex-shrink: 0; }
.thumb-item.active { border-color: var(--primary); }
.thumb-item:hover { border-color: var(--rose); }

.product-info-card { background: #fff; border-radius: var(--radius-lg); padding: 40px; border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.badge-cat { font-size: 12px; color: var(--primary); text-transform: uppercase; font-weight: 600; letter-spacing: 1px; }
.product-price { font-size: 2rem; font-weight: 700; color: var(--primary); margin: 15px 0; }
.old-price { font-size: 1.2rem; color: var(--muted); text-decoration: line-through; margin-right: 10px; }

.stock-badge { font-size: 13px; font-weight: 600; padding: 6px 15px; border-radius: var(--radius-full); }
.in-stock { background: rgba(192,57,43,0.08); color: var(--primary); }

.qty-input { width: 80px; border-radius: var(--radius-sm); border: 1px solid var(--border); text-align: center; padding: 10px; font-weight: 600; }
.qty-input:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(192,57,43,0.1); outline: none; }

.btn-cart {
  background: linear-gradient(135deg, var(--primary), var(--primary-2)); color: #fff;
  border: none; border-radius: var(--radius-md); padding: 12px 30px; font-weight: 600;
  width: 100%; transition: var(--transition);
}
.btn-cart:hover { background: linear-gradient(135deg, var(--primary-2), var(--primary)); transform: translateY(-2px); box-shadow: 0 10px 20px rgba(192,57,43,0.2); color: #fff; }

.btn-wa {
  background: #fff; color: #25D366; border: 2px solid #25D366;
  border-radius: var(--radius-md); padding: 12px; font-weight: 600;
  width: 100%; margin-top: 10px; display: block; text-decoration: none;
  text-align: center; transition: var(--transition);
}
.btn-wa:hover { background: #25D366; color: #fff; transform: translateY(-2px); box-shadow: 0 10px 20px rgba(37,211,102,0.2); }

.desc-section { margin-top: 40px; }
.section-title { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.1rem; border-bottom: 2px solid var(--border); padding-bottom: 10px; margin-bottom: 15px; }

.coupon-tag { background: var(--blush); border: 1px dashed var(--primary); border-radius: var(--radius-sm); padding: 10px 15px; display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.coupon-code { font-weight: 700; color: var(--primary); }

.review-item { border-bottom: 1px solid var(--border); padding-bottom: 16px; margin-bottom: 16px; }
.review-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.review-stars { color: var(--primary); letter-spacing: 2px; }
.review-form .form-control, .review-form .form-select { border-radius: var(--radius-sm); padding: 11px 14px; border-color: var(--border); }
.review-form .form-control:focus, .review-form .form-select:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(192,57,43,0.1); }

@media (max-width: 767px) {
  .product-gallery-card { position: static; }
  .main-img-wrap img { height: 320px; }
  .product-info-card { padding: 24px; }
}

/* ── Shop / Collection Page ────────────────────────────── */
.page-header { padding: 60px 0 30px; text-align: center; }
.page-header h2 { font-weight: 700; font-size: 2.2rem; }

.filter-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 25px;
  box-shadow: var(--shadow-sm); margin-bottom: 40px;
}
.filter-card .form-label { color: var(--charcoal); }
.filter-card .form-control, .filter-card .form-select {
  border-radius: var(--radius-sm); border: 1px solid var(--border);
  padding: 10px 15px; font-size: 14px; transition: var(--transition);
  background: #fff;
}
.filter-card .form-control:focus, .filter-card .form-select:focus {
  border-color: var(--primary); box-shadow: 0 0 0 4px rgba(192,57,43,0.1); outline: none;
}
.filter-card .input-group-text { border-color: var(--border); color: var(--muted); }

.btn-filter {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff; border: none; border-radius: var(--radius-full);
  font-weight: 700; padding: 11px 28px; transition: var(--transition);
  box-shadow: 0 8px 20px rgba(192,57,43,0.18);
}
.btn-filter:hover { background: linear-gradient(135deg, var(--primary-2), var(--primary)); transform: translateY(-2px); color: #fff; box-shadow: 0 12px 26px rgba(192,57,43,0.28); }

.product-cat { font-size: 11px; color: var(--primary); text-transform: uppercase; font-weight: 600; letter-spacing: 0.5px; }
.badge-discount {
  position: absolute; top: 25px; left: 25px; z-index: 2;
  background: #dc3545; color: #fff; font-size: 10px; font-weight: 700;
  padding: 4px 10px; border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(220,53,69,0.3);
}

/* ── Custom Dropdown (NP Dropdown) ─────────────────────── */
.np-dropdown { position: relative; }
.np-dropdown-toggle {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 8px;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 10px 15px;
  font-size: 14px; font-weight: 500; color: var(--charcoal);
  cursor: pointer; transition: var(--transition); text-align: left;
}
.np-dropdown-toggle:hover { border-color: var(--primary); }
.np-dropdown.show .np-dropdown-toggle,
.np-dropdown-toggle:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(192,57,43,0.1); outline: none; }
.np-dropdown-toggle .np-caret { font-size: 12px; color: var(--muted); transition: transform 0.3s ease; flex-shrink: 0; }
.np-dropdown.show .np-dropdown-toggle .np-caret { transform: rotate(180deg); color: var(--primary); }

.np-dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 0; right: 0; z-index: 50;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 8px; margin: 0; list-style: none;
  box-shadow: var(--shadow-md); max-height: 280px; overflow-y: auto;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.175,0.885,0.32,1.275);
}
.np-dropdown.show .np-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.np-dropdown-item {
  width: 100%; text-align: left; background: transparent; border: none;
  padding: 9px 12px; border-radius: var(--radius-sm); font-size: 14px;
  color: var(--charcoal); cursor: pointer; transition: var(--transition);
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
}
.np-dropdown-item:hover { background: var(--blush); color: var(--primary); }
.np-dropdown-item.active { background: var(--blush); color: var(--primary); font-weight: 600; }
.np-dropdown-item.active::after { content: '\F26E'; font-family: 'bootstrap-icons'; font-size: 13px; }

.np-dropdown-menu::-webkit-scrollbar { width: 6px; }
.np-dropdown-menu::-webkit-scrollbar-thumb { background: var(--border); border-radius: 100px; }

/* ═══════════════════════════════════════════════════════════
   PAGE COMPONENTS — shared across storefront pages
   ═══════════════════════════════════════════════════════════ */

/* ── Global Form Controls ────────────────────────────── */
.form-control, .form-select {
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  padding: 12px 15px;
  font-size: 14px;
  background-color: #fff;
  color: var(--charcoal);
  transition: var(--transition);
}
.form-control:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(192,57,43,0.1);
  outline: none;
}
.form-control::placeholder { color: #bbb; }
.input-group-text {
  background: #fff;
  border-color: var(--border);
  color: var(--muted);
  border-radius: var(--radius-sm);
}

/* ── Page Heroes ─────────────────────────────────────── */
.page-hero {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 80px 20px;
  text-align: center;
  border-radius: 0 0 50px 50px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}
.page-hero h1, .page-hero h2 {
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 10px;
}
.page-hero p {
  color: #777;
  font-size: 1.05rem;
  margin-bottom: 0;
}

/* ── Content / Policy Cards ──────────────────────────── */
.page-content {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 50px;
  margin: -40px auto 80px;
  max-width: 900px;
  position: relative;
  z-index: 10;
  box-shadow: 0 20px 50px rgba(0,0,0,0.03);
}
.page-content h2 {
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 25px;
}
.page-content h3 {
  color: var(--primary);
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 1.3rem;
}
.page-content p, .page-content li {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
}
.page-content ul { padding-left: 20px; }
.page-content strong { color: var(--charcoal); }
.last-updated { font-size: 13px; color: #999; margin-bottom: 30px; display: inline-block; }

.feature-box {
  background: var(--blush);
  border-left: 4px solid var(--primary);
  padding: 25px;
  border-radius: var(--radius-md);
  margin-top: 40px;
}
.feature-box h5 { font-weight: 700; color: var(--charcoal); }
.feature-box ul { list-style: none; padding-left: 0; margin-top: 15px; }
.feature-box li { margin-bottom: 12px; font-weight: 500; display: flex; align-items: center; }
.feature-box li i { color: var(--primary); margin-right: 12px; font-size: 1.2rem; }

.callout {
  background: var(--blush);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 30px;
}
.callout h5 { color: var(--primary); font-weight: 700; margin-bottom: 10px; }
.callout p { margin-bottom: 0; }
.callout--alert { border: 1px solid var(--primary); }
.callout--hygiene { border-left: 5px solid var(--primary); padding: 25px; margin: 30px 0; }

.callout--contact {
  background: var(--blush);
  border-radius: var(--radius-md);
  padding: 30px;
  margin: 50px 0 0;
  border: 1px dashed var(--primary);
}
.callout--contact h4 { font-weight: 700; color: var(--charcoal); margin-bottom: 15px; }
.callout--contact a { color: var(--primary); font-weight: 600; }

.discreet-box {
  background: var(--blush);
  border: 2px dashed var(--primary);
  border-radius: var(--radius-md);
  padding: 30px;
  margin: 40px 0;
  text-align: center;
}
.discreet-box i { font-size: 2.5rem; color: var(--primary); margin-bottom: 15px; display: block; }
.discreet-box h4 { font-weight: 700; color: var(--charcoal); }
.discreet-box p { margin-bottom: 0; }
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 20px; margin: 30px 0; }
.step {
  text-align: center; padding: 20px; background: #fff;
  border-radius: var(--radius-md); border: 1px solid var(--border);
}
.step i { font-size: 1.6rem; color: var(--primary); margin-bottom: 10px; display: block; }
.step h5 { font-weight: 700; color: var(--charcoal); margin-bottom: 5px; }
.step p { margin-bottom: 0; font-size: .9rem; }

/* ── Contact Page ────────────────────────────────────── */
.contact-wrapper {
  max-width: 1000px; margin: -60px auto 80px; padding: 0 20px;
  position: relative; z-index: 10;
}
.contact-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}
.contact-card h3 { color: var(--primary); font-weight: 700; margin-bottom: 8px; }
.contact-card p.text-muted { color: var(--muted); margin-bottom: 25px; }
.form-section { padding: 50px; }
.form-section h4 { font-weight: 700; color: var(--charcoal); margin-bottom: 20px; }
.form-section label { font-weight: 600; color: var(--charcoal); margin-bottom: 6px; }
.form-section textarea.form-control { min-height: 130px; }
.info-sidebar { background: var(--blush); border-radius: 0 var(--radius-lg) var(--radius-lg) 0; padding: 50px; height: 100%; }
.info-item { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 25px; }
.info-icon {
  width: 45px; height: 45px; border-radius: 50%;
  background: #fff; color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0; box-shadow: var(--shadow-sm);
}
.info-text h6 { font-weight: 700; color: var(--charcoal); margin-bottom: 4px; }
.info-text p, .info-text a { color: var(--muted); font-size: .95rem; text-decoration: none; font-weight: 500; }
.info-text a:hover { color: var(--primary); }
.btn-send {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff; border: none; border-radius: var(--radius-full);
  padding: 14px 35px; font-weight: 600; width: 100%; transition: var(--transition);
}
.btn-send:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); color: #fff; }
@media (max-width: 768px) {
  .form-section, .info-sidebar { padding: 30px; }
  .info-sidebar { border-radius: 0 0 var(--radius-lg) var(--radius-lg); border-top: 1px solid var(--border); }
}
.alert-romantic-success {
  background: #eafaf0; border: 1px solid #58c07d; color: #1e7a40;
  border-radius: var(--radius-md); padding: 15px; margin-bottom: 25px;
}
.alert-romantic-success i { margin-right: 8px; }

/* ── Success Page ────────────────────────────────────── */
.success-wrapper { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 40px 20px; }
.success-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 50px; max-width: 520px; width: 100%;
  text-align: center; box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}
.success-icon {
  width: 90px; height: 90px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff; display: inline-flex; align-items: center; justify-content: center;
  font-size: 2.5rem; margin-bottom: 25px; animation: bounceIn 0.6s;
}
@keyframes bounceIn {
  0% { transform: scale(0.3); opacity: 0; }
  50% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(1); }
}
.success-card h1 { font-weight: 700; color: var(--charcoal); margin-bottom: 15px; }
.success-card p { color: var(--muted); margin-bottom: 30px; }
.success-card p strong { color: var(--charcoal); }
.btn-outline {
  border: 2px solid var(--primary); color: var(--primary);
  border-radius: var(--radius-full); padding: 12px 35px; font-weight: 600;
  text-decoration: none; display: inline-block; transition: var(--transition);
}
.btn-outline:hover { background: var(--primary); color: #fff; }

/* ── 404 Page ────────────────────────────────────────── */
.error-wrap { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 40px 20px; }
.error-number {
  font-size: 8rem; font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}
.error-title { font-weight: 700; color: var(--charcoal); margin-bottom: 15px; }
.error-desc { color: var(--muted); margin-bottom: 30px; }
.btn-home {
  background: linear-gradient(135deg, var(--primary), var(--primary-2)); color: #fff;
  border: none; border-radius: var(--radius-full); padding: 14px 40px; font-weight: 600;
  text-decoration: none; display: inline-block; transition: var(--transition);
}
.btn-home:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); color: #fff; }

/* ── Auth Pages ──────────────────────────────────────── */
.login-wrapper { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 40px 20px; }
.login-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 50px; max-width: 440px; width: 100%;
  box-shadow: 0 20px 50px rgba(0,0,0,0.05); text-align: center;
}
.login-card .brand-text {
  font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--primary);
  margin-bottom: 8px;
}

.login-card .form-label { text-align: left; display: block; font-weight: 600; color: var(--charcoal); margin-bottom: 6px; }
.login-card .form-control { margin-bottom: 15px; text-align: left; }

.alert-romantic-warning {
  background: #fff8e1; border: 1px solid #f0c040; color: #8a6d1a;
  border-radius: var(--radius-md); padding: 15px; margin-bottom: 25px; text-align: left;
}
.alert-romantic-warning i { margin-right: 8px; }

.otp-wrapper { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 40px 20px; }
.otp-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 45px; max-width: 440px; width: 100%; text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}
.otp-card h2 { font-weight: 700; color: var(--charcoal); margin-bottom: 10px; }
.otp-card p { color: var(--muted); margin-bottom: 25px; }
.otp-card p strong { color: var(--primary); }
.otp-card .form-control { text-align: center; letter-spacing: 3px; font-size: 1.2rem; margin-bottom: 20px; }
.brand-text { color: var(--primary); font-weight: 700; }
.otp-card .display-6 { color: var(--primary); }

/* ── Cart Page ──────────────────────────────────────── */
.cart-header { background: #fff; border-bottom: 1px solid var(--border); padding: 40px 20px; text-align: center; border-radius: 0 0 40px 40px; }
.cart-header h1 { font-weight: 700; color: var(--charcoal); }
.cart-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-sm); }
.cart-img { width: 90px; height: 90px; object-fit: cover; border-radius: var(--radius-sm); }
.qty-input { width: 75px; text-align: center; border-radius: var(--radius-sm); border: 1px solid var(--border); padding: 8px; }
.summary-card { background: var(--blush); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px; }
.summary-card h4 { font-weight: 700; color: var(--charcoal); margin-bottom: 20px; }
.summary-line { display: flex; justify-content: space-between; margin-bottom: 12px; color: #555; }
.summary-line.total-line { border-top: 1px solid var(--border); padding-top: 15px; margin-top: 15px; font-weight: 700; color: var(--charcoal); font-size: 1.1rem; }
.coupon-area { display: flex; gap: 10px; margin-top: 20px; }
.coupon-input { flex: 1; border-radius: var(--radius-sm); border: 1px solid var(--border); padding: 10px 15px; }
.btn-apply { background: var(--blush); color: var(--primary); border: 1px solid var(--primary); border-radius: var(--radius-sm); padding: 10px 20px; font-weight: 600; transition: var(--transition); }
.btn-apply:hover { background: var(--primary); color: #fff; }
.qty-input { width: 70px; border-radius: var(--radius-sm); border: 1px solid var(--border); text-align: center; padding: 5px; }
.summary-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px; position: sticky; top: 100px; box-shadow: var(--shadow-sm); }
.summary-line { display: flex; justify-content: space-between; margin-bottom: 15px; font-size: 15px; }
.discreet-badge { background: var(--blush); border: 1px solid var(--border); }
.discreet-badge strong { color: var(--primary); font-size: 0.9rem; }
.btn-checkout { background: linear-gradient(135deg, var(--primary), var(--primary-2)); color: #fff; border: none; border-radius: var(--radius-full); padding: 14px; width: 100%; font-weight: 600; margin-top: 15px; transition: var(--transition); }
.btn-checkout:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); color: #fff; }
.btn-update { background: transparent; border: 1px solid var(--border); color: var(--muted); border-radius: var(--radius-sm); padding: 8px 14px; font-size: .85rem; transition: var(--transition); }
.btn-update:hover { border-color: var(--primary); color: var(--primary); }
.remove-link { color: var(--primary); text-decoration: none; font-size: .9rem; }
.remove-link:hover { text-decoration: underline; }

/* ── Checkout Page ──────────────────────────────────── */
.checkout-header { background: #fff; border-bottom: 1px solid var(--border); padding: 40px 20px; text-align: center; border-radius: 0 0 40px 40px; }
.checkout-header h1 { font-weight: 700; color: var(--charcoal); }
.checkout-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 35px; box-shadow: var(--shadow-sm); }
.checkout-card h3 { color: var(--primary); font-weight: 700; margin-bottom: 25px; }
.checkout-card label { font-weight: 600; color: var(--charcoal); margin-bottom: 6px; }
.order-summary { background: var(--blush); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 25px; }
.order-summary h4 { font-weight: 700; color: var(--charcoal); margin-bottom: 20px; }
.summary-item { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--border); }
.item-img { width: 60px; height: 60px; object-fit: cover; border-radius: var(--radius-sm); }

.price-line { display: flex; justify-content: space-between; margin-bottom: 10px; font-size: 14px; }
.price-line.accent { color: var(--primary); font-weight: 700; }
.final-total { display: flex; justify-content: space-between; border-top: 1px solid var(--border); margin-top: 15px; padding-top: 15px; font-weight: 700; font-size: 1.1rem; color: var(--charcoal); }
.payment-option { display: flex; align-items: center; gap: 12px; padding: 14px 18px; border: 1px solid var(--border); border-radius: var(--radius-md); margin-bottom: 12px; cursor: pointer; transition: var(--transition); }
.payment-option:hover { border-color: var(--primary); background: var(--blush); }
.payment-option input { accent-color: var(--primary); }
.payment-option strong { color: var(--charcoal); }
.payment-option span { color: var(--muted); font-size: .9rem; }
.btn-order { background: linear-gradient(135deg, var(--primary), var(--primary-2)); color: #fff; border: none; border-radius: var(--radius-full); padding: 14px; width: 100%; font-weight: 600; margin-top: 15px; transition: var(--transition); }
.btn-order:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); color: #fff; }
.section-title { font-weight: 700; font-size: 1.1rem; margin-bottom: 20px; color: var(--charcoal); display: flex; align-items: center; }
.section-title i { color: var(--primary); margin-right: 10px; }
.form-control:focus, .form-select:focus { border-color: var(--primary); box-shadow: none; background-color: #fff; }

/* ── Thank You Page ─────────────────────────────────── */
.thankyou-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 45px; text-align: center; box-shadow: var(--shadow-sm); max-width: 800px; margin: 60px auto; }
.thankyou-card h1 { font-weight: 700; color: var(--charcoal); margin-bottom: 15px; }
.thankyou-card .sub { color: var(--muted); margin-bottom: 30px; }
.order-meta-card { background: var(--blush); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 20px; text-align: left; margin-bottom: 20px; }
.order-meta-card .row { display: flex; justify-content: space-between; margin-bottom: 8px; }
.order-meta-card .row span:first-child { color: var(--muted); }
.order-meta-card .row span:last-child { font-weight: 600; color: var(--charcoal); }
.item-row { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--border); text-align: left; }

.track-link { color: var(--primary); text-decoration: none; font-weight: 600; }
.track-link:hover { text-decoration: underline; }

/* ── Track Order Page ───────────────────────────────── */
.track-container { max-width: 1000px; margin: 0 auto; padding: 40px 20px 80px; }
.track-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 35px; box-shadow: var(--shadow-sm); }
.track-card h2 { font-weight: 700; color: var(--charcoal); }
.status-header { background: var(--blush); border-radius: var(--radius-md); padding: 20px 25px; margin-bottom: 30px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }

.timeline { position: relative; padding-left: 30px; margin: 30px 0; }
.timeline::before { content: ''; position: absolute; left: 9px; top: 0; bottom: 0; width: 2px; background: var(--border); }
.timeline-item { position: relative; padding-bottom: 30px; }
.timeline-item::before { content: ''; position: absolute; left: -30px; top: 3px; width: 20px; height: 20px; border-radius: 50%; background: #fff; border: 3px solid var(--border); }
.timeline-item.active::before { background: var(--primary); border-color: var(--primary); box-shadow: 0 0 0 4px rgba(192,57,43,0.15); }

.status-badge { display: inline-block; padding: 4px 14px; border-radius: 100px; font-size: .8rem; font-weight: 600; }
.status-shipped { background: #e6f0ff; color: #2563a8; }
.status-delivered { background: #eafaf0; color: #1e7a40; }
.status-pending { background: var(--blush); color: var(--primary); }
.status-processing { background: #fff4e0; color: #b9770e; }
.btn-track { background: var(--primary); color: #fff; border: none; border-radius: var(--radius-md); padding: 12px; font-weight: 600; transition: var(--transition); }
.btn-track:hover { background: var(--primary-2); transform: translateY(-2px); }

/* ── Category / Shop Listing ─────────────────────────── */
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px,1fr)); gap: 20px; margin-top: 20px; }
#productGrid { padding-bottom: 70px; }
#productGrid .product-card { background: #fff; border-radius: var(--radius-md); border: 1px solid var(--border); overflow: hidden; transition: var(--transition); padding: 15px; }
#productGrid .product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); }
#productGrid .prod-img { height: 200px; object-fit: cover; width: 100%; border-radius: 12px; transition: opacity .3s ease; }
#productGrid .product-card strong { font-size: .95rem; display: block; margin-top: 8px; color: var(--charcoal); }
#productGrid .price { color: var(--primary); font-weight: 700; }
#productGrid .rating { color: #f0b429; }
.filter-bar { display: flex; align-items: center; gap: 15px; flex-wrap: wrap; margin-bottom: 20px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 15px 20px; box-shadow: var(--shadow-sm); position: sticky; top: 10px; z-index: 100; }
.filter-bar .np-dropdown { min-width: 200px; }
.mobile-top-search { display: none; position: fixed; top: 0; left: 0; right: 0; z-index: 1200; background: #fff; padding: 8px; border-bottom: 1px solid var(--border); }
.mobile-bottom-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; height: 52px; background: #fff; border-top: 1px solid var(--border); z-index: 1300; }
.mobile-bottom-bar button { flex: 1; border: none; background: #fff; font-weight: 600; font-size: 14px; display: flex; align-items: center; justify-content: center; gap: 6px; }
.category-page .container { max-width: 1250px; }
.suggestion-box { position: absolute; top: 100%; left: 0; right: 0; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); box-shadow: var(--shadow-md); z-index: 50; max-height: 300px; overflow-y: auto; margin-top: 5px; }
.suggestion-item { padding: 10px 15px; cursor: pointer; display: flex; align-items: center; gap: 10px; transition: var(--transition); }
.suggestion-item i { color: var(--primary); }
.suggestion-item:hover, .suggestion-item.active { background: var(--blush); }
.suggestion-item img { width: 40px; height: 40px; object-fit: cover; border-radius: 8px; }


@media (max-width: 768px) {
  .category-page { padding-top: 56px; }
  .filter-bar { display: none; }
  .mobile-top-search { display: block; }
  .mobile-bottom-bar { display: flex; }
  .mobile-filter-drawer { position: fixed; bottom: -100%; left: 0; right: 0; background: #fff; z-index: 1400; padding: 16px; border-radius: 16px 16px 0 0; transition: 0.3s ease; max-height: 75vh; overflow-y: auto; display: block; }
  .mobile-filter-drawer.open { bottom: 52px; }
  .grid { grid-template-columns: repeat(2,1fr); gap: 12px; margin-bottom: 70px; }
  #productGrid .prod-img { height: 160px; }
}

/* ── Blog Detail ─────────────────────────────────────── */
.blog-detail-page .page-hero { background: #fff; border-bottom: 1px solid var(--border); text-align: center; padding: 60px 20px; border-radius: 0 0 40px 40px; }
.blog-detail-page .page-hero .blog-meta { color: var(--muted); font-size: .95rem; }
.blog-detail-page .blog-title { font-family: 'Playfair Display', serif; font-weight: 700; color: var(--charcoal); margin-bottom: 15px; }
.blog-detail-page .blog-meta { color: var(--muted); }
.blog-detail-page .blog-meta span { margin: 0 8px; }
.blog-detail-page .featured-image { width: 100%; border-radius: var(--radius-lg); margin: 30px 0; box-shadow: var(--shadow-sm); }
.blog-detail-page .blog-content { font-size: 1.05rem; line-height: 1.9; color: #555; }
.blog-detail-page .blog-content h2 { color: var(--primary); font-family: 'Playfair Display', serif; font-weight: 700; margin: 40px 0 20px; font-size: 2rem; }
.blog-detail-page .blog-content h3 { color: var(--primary); font-weight: 600; margin: 30px 0 15px; }
.blog-detail-page .blog-content ul, .blog-detail-page .blog-content ol { padding-left: 22px; margin-bottom: 20px; }
.blog-detail-page .blog-content li { margin-bottom: 10px; }
.blog-detail-page .blog-content p { margin-bottom: 20px; }
.sidebar-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 25px; margin-bottom: 25px; box-shadow: var(--shadow-sm); }
.sidebar-title { color: var(--primary); font-weight: 700; margin-bottom: 20px; font-size: 1.2rem; }
.recent-link { display: flex; gap: 12px; align-items: center; text-decoration: none; margin-bottom: 15px; }
.recent-link img { width: 60px; height: 60px; object-fit: cover; border-radius: var(--radius-sm); flex-shrink: 0; }

.share-btn { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--border); background: #fff; color: var(--charcoal); display: inline-flex; align-items: center; justify-content: center; margin: 0 5px; transition: var(--transition); }
.share-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.blog-detail-page .badge-romantic { background: var(--primary); color: #fff; }
.blog-detail-page .blog-cta { background: var(--primary); color: #fff; }
.blog-detail-page .blog-cta .btn-romantic { background: #fff; color: var(--primary); }
.blog-detail-page .blog-cta .btn-romantic:hover { background: var(--blush); color: var(--primary); }

/* ═══════════════════════════════════════════════════════════
   UTILITY SYSTEM — Replaces all inline styles across pages
   ═══════════════════════════════════════════════════════════ */

/* ── Spacing Helpers ─────────────────────────────────────── */
.np-section        { padding: 80px 0; }
.np-section-sm     { padding: 50px 0; }
.np-section-xs     { padding: 30px 0; }
.np-section-header { text-align: center; margin-bottom: 50px; }
.np-section-header h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 12px; }
.np-section-header p  { color: var(--muted); font-size: 1.05rem; }

/* ── Page Hero Variants ──────────────────────────────────── */
.page-hero-primary {
  background: linear-gradient(135deg, #2C1A1A 0%, #5C1A1A 100%);
  color: #fff; padding: 80px 20px; text-align: center;
  border-radius: 0 0 50px 50px;
}
.page-hero-primary h1, .page-hero-primary p { color: #fff; }
.page-hero-primary p { opacity: 0.85; }

/* ── Related Product Card (product.php) ──────────────────── */
.related-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 14px;
  height: 100%;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.related-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.related-card-img {
  width: 100%; height: 160px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  transition: transform 0.4s ease;
  display: block;
}
.related-card:hover .related-card-img { transform: scale(1.04); }
.related-card-title { font-size: 0.9rem; font-weight: 700; color: var(--charcoal); margin-bottom: 4px; }
.related-card-price { color: var(--primary); font-weight: 700; font-size: 0.95rem; margin-bottom: 10px; }
.related-card-link  {
  display: inline-block; font-size: 0.82rem; font-weight: 700;
  color: var(--primary); border: 1.5px solid var(--primary);
  border-radius: var(--radius-full); padding: 5px 18px;
  text-decoration: none; transition: var(--transition);
}
.related-card-link:hover { background: var(--primary); color: #fff; }

/* ── Empty State ─────────────────────────────────────────── */
.np-empty {
  text-align: center; padding: 70px 20px;
  color: var(--muted);
}
.np-empty i { font-size: 3.5rem; color: var(--border); display: block; margin-bottom: 20px; }
.np-empty p { font-size: 1rem; margin-bottom: 24px; }

/* ── Load More Button ────────────────────────────────────── */
.btn-load-more {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: var(--radius-full);
  padding: 12px 40px; font-weight: 700; font-size: 15px;
  cursor: pointer; text-decoration: none; transition: var(--transition);
}
.btn-load-more:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }
.btn-load-more:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* ── Breadcrumb ──────────────────────────────────────────── */
.np-breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); padding: 16px 0; flex-wrap: wrap; }
.np-breadcrumb a { color: var(--muted); text-decoration: none; transition: color 0.2s; }
.np-breadcrumb a:hover { color: var(--primary); }
.np-breadcrumb .sep { font-size: 10px; }
.np-breadcrumb .current { color: var(--charcoal); font-weight: 600; }

/* ── Section Divider ─────────────────────────────────────── */
.np-divider { border: none; height: 1px; background: var(--border); margin: 60px 0; }

/* ── Info Block (used in cart/checkout) ──────────────────── */
.np-info-block {
  display: flex; align-items: center; gap: 10px;
  background: var(--blush); border-radius: var(--radius-md);
  padding: 14px 18px; font-size: 13px; color: var(--charcoal);
  border: 1px solid rgba(192,57,43,0.1); margin-bottom: 16px;
}
.np-info-block i { color: var(--primary); font-size: 16px; flex-shrink: 0; }

/* ── Cart Table Row ──────────────────────────────────────── */
.cart-card { margin-bottom: 16px; }
.cart-card:last-child { margin-bottom: 0; }

/* ── Cart Item Product Name ──────────────────────────────── */
.cart-product-name { font-weight: 700; font-size: 15px; color: var(--charcoal); margin-bottom: 4px; }
.cart-product-price { color: var(--muted); font-size: 13px; }
.cart-item-total { font-weight: 800; color: var(--charcoal); font-size: 15px; }

/* ── Form Section Title ──────────────────────────────────── */
.form-title { font-weight: 700; font-size: 1.05rem; color: var(--charcoal); display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.form-title i { color: var(--primary); font-size: 1.1rem; }

/* ── Accent Text Utilities ───────────────────────────────── */
.text-primary-np { color: var(--primary) !important; }
.text-rose       { color: var(--rose) !important; }
.bg-blush        { background-color: var(--blush) !important; }
.bg-cream        { background-color: var(--cream) !important; }
.border-np       { border-color: var(--border) !important; }

/* ── Radius Utilities ────────────────────────────────────── */
.rounded-np-sm  { border-radius: var(--radius-sm)  !important; }
.rounded-np-md  { border-radius: var(--radius-md)  !important; }
.rounded-np-lg  { border-radius: var(--radius-lg)  !important; }
.rounded-np-full{ border-radius: var(--radius-full)!important; }

/* ── Shadow Utilities ────────────────────────────────────── */
.shadow-np-sm { box-shadow: var(--shadow-sm) !important; }
.shadow-np-md { box-shadow: var(--shadow-md) !important; }
.shadow-np-lg { box-shadow: var(--shadow-lg) !important; }

/* ── Transition Utility ──────────────────────────────────── */
.transition-np { transition: var(--transition) !important; }

/* ── Object Fit Helpers ──────────────────────────────────── */
.obj-cover   { object-fit: cover; }
.obj-contain { object-fit: contain; }
.img-thumb   { width: 100%; height: 200px; object-fit: cover; border-radius: var(--radius-md); display: block; }
.img-thumb-sm{ width: 100%; height: 150px; object-fit: cover; border-radius: var(--radius-md); display: block; }
.img-thumb-lg{ width: 100%; height: 280px; object-fit: cover; border-radius: var(--radius-md); display: block; }

/* ── Badge Variants ──────────────────────────────────────── */
.badge-np {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.5px;
  padding: 4px 12px; border-radius: var(--radius-full);
}
.badge-np-primary  { background: linear-gradient(135deg, var(--primary), var(--primary-2)); color: #fff; }
.badge-np-success  { background: #eafaf0; color: #1e7a40; }
.badge-np-warning  { background: #fff4e0; color: #b9770e; }
.badge-np-blush    { background: var(--blush); color: var(--primary); }

/* ── Icon Circle ─────────────────────────────────────────── */
.np-icon-circle {
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.np-icon-circle-primary  { background: linear-gradient(135deg, var(--primary), var(--primary-2)); color: #fff; box-shadow: 0 6px 18px rgba(192,57,43,0.3); }
.np-icon-circle-blush    { background: var(--blush); color: var(--primary); box-shadow: var(--shadow-sm); }
.np-icon-circle-white    { background: #fff; color: var(--primary); box-shadow: var(--shadow-sm); }

/* ── Social Icon Override ────────────────────────────────── */
.social-icon-sm {
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  background: #fff; color: var(--primary);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 15px; transition: var(--transition);
  box-shadow: 0 4px 12px rgba(192,57,43,0.1);
  text-decoration: none;
}
.social-icon-sm:hover { background: linear-gradient(135deg, var(--primary), var(--primary-2)); color: #fff; transform: translateY(-2px); }

/* ── Responsive Fixes ────────────────────────────────────── */
@media (max-width: 575px) {
  .np-section { padding: 50px 0; }
  .np-section-sm { padding: 32px 0; }
  .product-info-card { padding: 20px; }
  .checkout-card { padding: 20px; }
  .form-section { padding: 24px; }
  .info-sidebar { padding: 24px; border-radius: 0 0 var(--radius-lg) var(--radius-lg); }
  .page-content { padding: 28px 20px; }
  .contact-wrapper { margin-top: -30px; }
  .cart-card { flex-wrap: wrap; gap: 12px; }
  .cart-img { width: 70px; height: 70px; }
  .summary-card { position: static; }
  .img-thumb-lg { height: 220px; }
  .track-container { padding: 20px 12px 60px; }
  .thankyou-card { padding: 30px 20px; }
}

@media (max-width: 768px) {
  .page-hero { padding: 50px 20px; border-radius: 0 0 30px 30px; }
  .related-card-img { height: 130px; }
  .np-section-header { margin-bottom: 28px; }
}

/* Extracted from cart.php */

    /* ── Cart Page Specific Styles ───────────────────── */
    .cart-page-hero {
        background: #fff;
        border-bottom: 1px solid var(--border);
        padding: 36px 0 28px;
        text-align: center;
    }
    .cart-page-hero h1 {
        font-size: clamp(1.6rem, 3vw, 2.2rem);
        font-weight: 700;
        color: var(--charcoal);
        margin-bottom: 6px;
    }
    .cart-page-hero p { color: var(--muted); font-size: 0.95rem; margin: 0; }

    /* ── Cart Item Row ────────────────────────────────── */
    .cart-item {
        display: flex;
        align-items: center;
        gap: 18px;
        background: #fff;
        border: 1px solid var(--border);
        border-radius: var(--radius-lg);
        padding: 18px 20px;
        margin-bottom: 14px;
        transition: box-shadow 0.25s ease;
    }
    .cart-item:hover { box-shadow: var(--shadow-sm); }
    .cart-item:last-child { margin-bottom: 0; }

    .cart-item-img {
        width: 100px;
        height: 100px;
        object-fit: cover;
        border-radius: var(--radius-md);
        flex-shrink: 0;
        border: 1px solid var(--border);
    }

    .cart-item-body { flex: 1; min-width: 0; }
    .cart-item-name {
        font-weight: 700;
        font-size: 0.95rem;
        color: var(--charcoal);
        margin-bottom: 4px;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .cart-item-unit { font-size: 13px; color: var(--muted); }
    .cart-item-total { font-size: 1.05rem; font-weight: 800; color: var(--charcoal); }

    /* ── Qty Stepper ──────────────────────────────────── */
    .qty-stepper {
        display: flex;
        align-items: center;
        gap: 0;
        border: 1.5px solid var(--border);
        border-radius: var(--radius-sm);
        overflow: hidden;
        width: fit-content;
    }
    .qty-stepper button {
        width: 34px;
        height: 36px;
        border: none;
        background: var(--blush);
        color: var(--primary);
        font-size: 1rem;
        font-weight: 700;
        cursor: pointer;
        transition: background 0.2s;
        flex-shrink: 0;
    }
    .qty-stepper button:hover { background: var(--primary); color: #fff; }
    .qty-stepper input {
        width: 46px;
        height: 36px;
        border: none;
        border-left: 1.5px solid var(--border);
        border-right: 1.5px solid var(--border);
        text-align: center;
        font-weight: 700;
        font-size: 0.9rem;
        color: var(--charcoal);
        outline: none;
        background: #fff;
    }

    /* ── Remove Button ────────────────────────────────── */
    .btn-remove-item {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        border: 1.5px solid #FECACA;
        background: #FEF2F2;
        color: #DC2626;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 15px;
        cursor: pointer;
        transition: all 0.2s ease;
        flex-shrink: 0;
        text-decoration: none;
    }
    .btn-remove-item:hover { background: #DC2626; color: #fff; border-color: #DC2626; transform: scale(1.1); }

    /* ── Section Card (wrapper for items) ────────────── */
    .cart-section-card {
        background: var(--cream);
        border: 1px solid var(--border);
        border-radius: var(--radius-lg);
        padding: 24px;
    }
    .cart-section-title {
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: var(--muted);
        margin-bottom: 18px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    /* ── Summary Card ─────────────────────────────────── */
    .cart-summary {
        background: #fff;
        border: 1px solid var(--border);
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow-sm);
        position: sticky;
        top: 90px;
    }
    .cart-summary-head {
        padding: 20px 24px;
        border-bottom: 1px solid var(--border);
        background: var(--blush);
    }
    .cart-summary-head h5 {
        font-weight: 800;
        font-size: 1rem;
        color: var(--charcoal);
        margin: 0;
    }
    .cart-summary-body { padding: 20px 24px; }

    /* ── Coupon Input ─────────────────────────────────── */
    .coupon-box {
        background: var(--blush);
        border: 1.5px dashed rgba(192,57,43,0.3);
        border-radius: var(--radius-md);
        padding: 16px;
        margin-bottom: 20px;
    }
    .coupon-box label {
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: var(--primary);
        display: flex;
        align-items: center;
        gap: 6px;
        margin-bottom: 10px;
    }
    .coupon-applied-tag {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: #EAFAF1;
        border: 1px solid #A9DFBF;
        border-radius: var(--radius-sm);
        padding: 10px 14px;
    }
    .coupon-applied-tag strong { color: #1E8449; font-size: 13px; }
    .coupon-applied-tag a { color: #DC2626; font-size: 12px; font-weight: 600; text-decoration: none; }
    .coupon-applied-tag a:hover { text-decoration: underline; }

    .coupon-msg-success { color: #1E8449; font-size: 12px; font-weight: 600; margin-top: 8px; display: flex; align-items: center; gap: 5px; }
    .coupon-msg-error   { color: #DC2626; font-size: 12px; font-weight: 600; margin-top: 8px; display: flex; align-items: center; gap: 5px; }

    /* ── Price Lines ──────────────────────────────────── */
    .price-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 0;
        border-bottom: 1px solid var(--border);
        font-size: 14px;
    }
    .price-row:last-of-type { border-bottom: none; }
    .price-row span:first-child { color: var(--muted); }
    .price-row span:last-child  { font-weight: 600; color: var(--charcoal); }
    .price-row.discount-row span:last-child { color: #1E8449; }
    .price-row.free-shipping span:last-child { color: #1E8449; font-weight: 700; }
    .total-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 16px 0 4px;
        border-top: 2px solid var(--border);
        margin-top: 4px;
    }
    .total-row span:first-child { font-weight: 700; font-size: 1rem; color: var(--charcoal); }
    .total-row span:last-child  { font-weight: 800; font-size: 1.3rem; color: var(--primary); }

    /* ── Checkout Button ──────────────────────────────── */
    .btn-checkout-main {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: 100%;
        background: linear-gradient(135deg, var(--primary), var(--primary-2));
        color: #fff;
        border: none;
        border-radius: var(--radius-full);
        padding: 16px 24px;
        font-weight: 800;
        font-size: 16px;
        cursor: pointer;
        text-decoration: none;
        transition: var(--transition);
        box-shadow: 0 10px 28px rgba(192,57,43,0.28);
        margin-top: 20px;
    }
    .btn-checkout-main:hover {
        transform: translateY(-3px);
        box-shadow: 0 16px 35px rgba(192,57,43,0.38);
        color: #fff;
    }
    .btn-continue-shopping {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        width: 100%;
        background: transparent;
        color: var(--muted);
        border: none;
        padding: 12px;
        font-size: 13px;
        font-weight: 600;
        cursor: pointer;
        text-decoration: none;
        transition: color 0.2s;
        margin-top: 8px;
    }
    .btn-continue-shopping:hover { color: var(--primary); }

    /* ── Payment Badges ───────────────────────────────── */
    .payment-badges {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 14px 0 0;
        border-top: 1px solid var(--border);
        margin-top: 16px;
    }
    .payment-badges img { height: 22px; width: auto; opacity: 0.65; }

    /* ── Empty Cart ───────────────────────────────────── */
    .cart-empty-state {
        text-align: center;
        padding: 80px 20px;
    }
    .cart-empty-icon {
        width: 90px; height: 90px;
        border-radius: 50%;
        background: var(--blush);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 2.5rem;
        margin-bottom: 24px;
    }

    /* ── Update Bar ───────────────────────────────────── */
    .cart-update-bar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 20px;
        background: var(--blush);
        border: 1px solid var(--border);
        border-radius: var(--radius-md);
        margin-top: 16px;
    }
    .cart-update-bar span { font-size: 13px; color: var(--muted); }
    .btn-update-qty {
        background: #fff;
        border: 1.5px solid var(--primary);
        color: var(--primary);
        border-radius: var(--radius-full);
        padding: 8px 22px;
        font-size: 13px;
        font-weight: 700;
        cursor: pointer;
        transition: var(--transition);
    }
    .btn-update-qty:hover { background: var(--primary); color: #fff; }

    /* ── Responsive ───────────────────────────────────── */
    @media (max-width: 576px) {
        .cart-item { padding: 14px; gap: 12px; }
        .cart-item-img { width: 76px; height: 76px; }
        .cart-summary { position: static; }
        .cart-section-card { padding: 16px; }
    }
    
/* Extracted from checkout.php */

/* ── Checkout Hero ─────────────────────────────────────── */
.co-hero {
    background: linear-gradient(135deg, #2C1A1A 0%, #5C1A1A 100%);
    padding: 32px 0;
    text-align: center;
    margin-bottom: 0;
}
.co-hero h1 { color: #fff; font-size: clamp(1.4rem,3vw,2rem); font-weight: 700; margin-bottom: 6px; }
.co-hero p  { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin: 0; }

/* ── Step Bar ──────────────────────────────────────────── */
.co-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 14px 20px;
}
.co-step {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--muted);
}
.co-step.active { color: var(--primary); }
.co-step.done   { color: #1E8449; }
.co-step-num {
    width: 26px; height: 26px;
    border-radius: 50%;
    background: var(--border);
    color: var(--muted);
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; font-weight: 800; flex-shrink: 0;
    transition: all 0.2s;
}
.co-step.active .co-step-num { background: var(--primary); color: #fff; box-shadow: 0 4px 12px rgba(192,57,43,0.3); }
.co-step.done   .co-step-num { background: #1E8449; color: #fff; }
.co-sep { width: 40px; height: 1px; background: var(--border); margin: 0 10px; }

/* ── Layout ────────────────────────────────────────────── */
.co-wrap { max-width: 1140px; margin: 0 auto; padding: 36px 20px 80px; }

/* ── Section Card ──────────────────────────────────────── */
.co-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}
.co-card-head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 24px;
    border-bottom: 1px solid var(--border);
    background: var(--cream);
}
.co-card-head-icon {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}
.co-card-head h5 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--charcoal);
    margin: 0;
}
.co-card-head p { font-size: 12px; color: var(--muted); margin: 2px 0 0; }
.co-card-body { padding: 24px; }

/* ── Form Fields ───────────────────────────────────────── */
.co-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--charcoal);
    margin-bottom: 6px;
    display: block;
}
.co-input {
    width: 100%;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--charcoal);
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    font-family: 'Outfit', sans-serif;
}
.co-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(192,57,43,0.1);
    background: #fff;
}
.co-input::placeholder { color: #bbb; }

/* ── Payment Option ────────────────────────────────────── */
.payment-opt {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.25s ease;
    background: #fff;
}
.payment-opt:hover:not(.disabled-opt) { border-color: var(--rose); background: var(--blush); }
.payment-opt.selected { border-color: var(--primary); background: var(--blush); }
.payment-opt.disabled-opt { opacity: 0.45; cursor: not-allowed; background: #f8f8f8; }
.payment-opt-icon {
    width: 42px; height: 42px;
    border-radius: var(--radius-sm);
    background: #fff;
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}
.payment-opt-body strong { display: block; font-size: 14px; font-weight: 700; color: var(--charcoal); }
.payment-opt-body small  { color: var(--muted); font-size: 12px; }
.payment-opt input[type="radio"] { accent-color: var(--primary); width: 16px; height: 16px; flex-shrink: 0; margin-left: auto; }

/* ── Age Confirm ───────────────────────────────────────── */
.age-confirm-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--blush);
    border: 1px solid rgba(192,57,43,0.15);
    border-radius: var(--radius-md);
    padding: 16px 18px;
    margin-top: 20px;
}
.age-confirm-box input[type="checkbox"] { margin-top: 2px; accent-color: var(--primary); flex-shrink: 0; width: 16px; height: 16px; }
.age-confirm-box label { font-size: 13px; color: #555; line-height: 1.5; }
.age-confirm-box a { color: var(--primary); font-weight: 600; }

/* ── Order Summary ─────────────────────────────────────── */
.co-summary {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 90px;
}
.co-summary-head {
    padding: 18px 22px;
    background: linear-gradient(135deg, #2C1A1A 0%, #5C1A1A 100%);
}
.co-summary-head h5 { color: #fff; font-weight: 800; margin: 0; font-size: 1rem; }
.co-summary-head p  { color: rgba(255,255,255,0.6); margin: 3px 0 0; font-size: 12px; }
.co-summary-body { padding: 0; }

/* ── Summary Item ──────────────────────────────────────── */
.co-summary-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
    transition: background 0.15s;
}
.co-summary-item:hover { background: var(--blush); }
.co-summary-item-img {
    width: 54px; height: 54px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    flex-shrink: 0;
}
.co-summary-item-name {
    font-size: 12px;
    font-weight: 700;
    color: var(--charcoal);
    line-height: 1.35;
    margin-bottom: 3px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.co-summary-item-qty { font-size: 11px; color: var(--muted); }
.co-summary-item-price { font-size: 13px; font-weight: 800; color: var(--primary); margin-left: auto; flex-shrink: 0; }

/* ── Price Rows ────────────────────────────────────────── */
.co-price-rows { padding: 16px 20px; }
.co-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px solid var(--border);
}
.co-price-row:last-of-type { border-bottom: none; }
.co-price-row .label { color: var(--muted); font-weight: 500; }
.co-price-row .val   { font-weight: 700; color: var(--charcoal); }
.co-price-row .val.green { color: #1E8449; }
.co-price-row .val.free  { color: #1E8449; font-weight: 800; }
.co-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--blush);
    padding: 16px 20px;
    border-top: 2px solid rgba(192,57,43,0.15);
}
.co-total-row .t-label { font-weight: 800; font-size: 0.95rem; color: var(--charcoal); }
.co-total-row .t-val   { font-weight: 900; font-size: 1.4rem; color: var(--primary); }

/* ── Place Order Btn ───────────────────────────────────── */
.btn-place-order {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    color: #fff;
    border: none;
    border-radius: var(--radius-full);
    padding: 17px 24px;
    font-weight: 800;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 10px 28px rgba(192,57,43,0.3);
    letter-spacing: 0.3px;
}
.btn-place-order:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(192,57,43,0.4); color: #fff; }
.co-summary-footer { padding: 20px; border-top: 1px solid var(--border); }
.co-secure-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 12px;
    color: var(--muted);
    margin-top: 14px;
}
.co-payment-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}
.co-payment-icons img { height: 20px; width: auto; opacity: 0.6; }

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 991px) { .co-summary { position: static; } }
@media (max-width: 576px) {
    .co-card-body { padding: 16px; }
    .co-wrap { padding: 20px 12px 60px; }
    .co-steps { gap: 0; }
    .co-sep { width: 20px; }
    .co-step span { display: none; }
}

/* ── Track Order Page Styles ───────────────────────────────── */
.track-hero {
    background: linear-gradient(135deg, var(--cream) 0%, #fff 100%);
    padding: 40px 0 30px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 40px;
}
.track-hero h1 { font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 800; color: var(--charcoal); margin-bottom: 8px; }
.track-hero h1 span { color: var(--primary); }
.track-hero p { color: var(--muted); font-size: 1rem; margin: 0; }

.track-wrapper { padding-bottom: 80px; }

.track-search-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-sm);
}
.track-label {
    font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
    color: var(--charcoal); margin-bottom: 8px; display: block;
}
.track-input-group {
    display: flex; align-items: stretch;
    border: 1.5px solid var(--border); border-radius: var(--radius-sm);
    overflow: hidden; background: #fff; transition: var(--transition);
}
.track-input-group:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(192,57,43,0.1);
}
.track-input-icon {
    display: flex; align-items: center; justify-content: center;
    padding: 0 16px; color: var(--muted); background: var(--cream);
    border-right: 1px solid var(--border); font-size: 1.2rem;
}
.track-input {
    flex: 1; border: none; padding: 14px 16px; font-size: 15px;
    color: var(--charcoal); outline: none; font-weight: 500; font-family: 'Outfit', sans-serif;
}
.track-input::placeholder { color: #bbb; }

.btn-track-main {
    width: 100%; display: flex; align-items: center; justify-content: center; gap: 8px;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    color: #fff; border: none; border-radius: var(--radius-md);
    padding: 15px; font-size: 16px; font-weight: 800; cursor: pointer;
    transition: var(--transition); margin-top: 20px; box-shadow: 0 8px 24px rgba(192,57,43,0.25);
}
.btn-track-main:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(192,57,43,0.35); }

.track-alert {
    padding: 16px 20px; border-radius: var(--radius-md); font-size: 14px; font-weight: 600;
    display: flex; align-items: center; gap: 10px; margin-top: 20px;
}
.track-alert-error { background: #FEF2F2; color: #DC2626; border: 1px solid #FECACA; }

/* Result Card */
.track-result-card {
    background: #fff; border: 1px solid var(--border);
    border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm);
}
.track-result-header {
    background: var(--cream); padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    display: flex; justify-content: space-between; align-items: center;
}
.track-result-header small { color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: 0.5px; font-weight: 600; display: block; margin-bottom: 4px; }
.track-result-header h4 { margin: 0; font-size: 1.2rem; font-weight: 800; color: var(--charcoal); }

.track-badge {
    padding: 6px 12px; border-radius: 100px; font-size: 12px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.5px;
}
.track-badge-pending { background: #FEF3C7; color: #D97706; }
.track-badge-processing { background: #DBEAFE; color: #2563EB; }
.track-badge-shipped { background: #E0E7FF; color: #4338CA; }
.track-badge-delivered { background: #D1FAE5; color: #059669; }
.track-badge-cancelled { background: #FEE2E2; color: #DC2626; }

.track-result-details { padding: 20px 24px; border-bottom: 1px solid var(--border); margin: 0; }
.track-result-details span { color: var(--muted); font-size: 12px; display: block; margin-bottom: 2px; }
.track-result-details strong { font-size: 14px; color: var(--charcoal); }

/* Timeline UI */
.track-timeline { padding: 24px; }
.track-tl-item { display: flex; gap: 16px; margin-bottom: 24px; position: relative; }
.track-tl-item:last-child { margin-bottom: 0; }
.track-tl-item::after {
    content: ''; position: absolute; left: 15px; top: 32px; bottom: -24px;
    width: 2px; background: var(--border); z-index: 1;
}
.track-tl-item:last-child::after { display: none; }

.track-tl-icon {
    width: 32px; height: 32px; border-radius: 50%; background: #f0f0f0; color: #999;
    display: flex; align-items: center; justify-content: center; font-size: 14px;
    position: relative; z-index: 2; flex-shrink: 0; transition: var(--transition);
}
.track-tl-content { flex: 1; padding-top: 5px; }
.track-tl-content h6 { margin: 0 0 4px; font-size: 14px; font-weight: 700; color: var(--charcoal); }
.track-tl-content p { margin: 0; font-size: 12.5px; color: var(--muted); }

.track-tl-item.done .track-tl-icon { background: #1E8449; color: #fff; box-shadow: 0 0 0 4px rgba(30,132,73,0.15); }
.track-tl-item.done::after { background: #1E8449; }
.track-tl-item.done .track-tl-content h6 { color: #1E8449; }

@media (max-width: 576px) {
    .track-search-card { padding: 20px; }
    .track-hero { padding: 30px 0 20px; margin-bottom: 30px; }
}
