/* ==========================================================================
   OrderMyCostume - 100% Fully Responsive E-Commerce Stylesheet
   ========================================================================== */

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

:root {
  --primary: #6523d1;
  --primary-hover: #531ab4;
  --primary-light: #faf5ff;
  --primary-gradient: linear-gradient(135deg, #7e22ce 0%, #581c87 100%);
  --accent-yellow: #fbbf24;
  --accent-yellow-hover: #f59e0b;
  --accent-yellow-light: #fffbe6;
  
  --text-main: #1e293b;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  
  --bg-main: #ffffff;
  --bg-alt: #faf5ff;
  --bg-card: #ffffff;
  --bg-dark: #090d16;
  --bg-footer: #0c1527;
  
  --badge-purple-bg: #ede9fe;
  --badge-purple-icon: #7c3aed;
  --badge-pink-bg: #fce7f3;
  --badge-pink-icon: #ec4899;
  --badge-green-bg: #d1fae5;
  --badge-green-icon: #10b981;
  --badge-yellow-bg: #fef3c7;
  --badge-yellow-icon: #f59e0b;
  --badge-orange-bg: #ffedd5;
  --badge-orange-icon: #f97316;

  --border-light: #e2e8f0;
  --border-purple: #e9d5ff;
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(101, 35, 209, 0.08);
  --shadow-lg: 0 12px 32px rgba(101, 35, 209, 0.12);
  --shadow-xl: 0 20px 40px rgba(15, 23, 42, 0.2);
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-main);
  background-color: var(--bg-main);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--text-main);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; outline: none; font-family: inherit; transition: var(--transition); }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.highlight-purple { color: #6523d1; }

/* Page Banner */
.page-banner {
  background: linear-gradient(135deg, #581c87 0%, #6523d1 100%);
  color: white;
  padding: 40px 0;
  text-align: center;
}

.page-banner h1 {
  font-size: 2.4rem;
  color: white;
  margin-bottom: 8px;
}

.breadcrumb {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  justify-content: center;
  gap: 8px;
  align-items: center;
}

.breadcrumb a { color: var(--accent-yellow); }

/* Top Announcement Bar */
.top-bar {
  background-color: #581c87;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.top-info {
  display: flex;
  align-items: center;
  gap: 24px;
}

.top-info-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-info-item i { color: var(--accent-yellow); }

.top-support {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}

/* Header & Navigation */
.header {
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  height: 72px;
  display: flex;
  align-items: center;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-badge {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #7e22ce, #9333ea);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(126, 34, 206, 0.25);
  flex-shrink: 0;
}

.logo-brand {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.1;
  color: #1e1b4b;
}

.logo-brand span { color: #6523d1; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  font-weight: 600;
  font-size: 0.92rem;
  color: #334155;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 0;
  position: relative;
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active { color: #6523d1; }

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #6523d1;
  border-radius: 2px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f8fafc;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #334155;
  font-size: 1rem;
  position: relative;
  transition: var(--transition);
  flex-shrink: 0;
}

.icon-btn:hover {
  background: var(--primary-light);
  color: var(--primary);
  border-color: var(--border-purple);
}

.badge-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #6523d1;
  color: white;
  font-size: 0.7rem;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
}

.btn-whatsapp {
  background: var(--accent-yellow);
  color: #1e1b4b;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  box-shadow: 0 4px 12px rgba(251, 191, 36, 0.35);
  white-space: nowrap;
}

.btn-whatsapp:hover {
  background: var(--accent-yellow-hover);
}

.mobile-toggle {
  display: none;
  font-size: 1.3rem;
  color: #0f172a;
  background: #f1f5f9;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Slide-out Mobile Navigation Drawer */
.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  left: -300px;
  width: 280px;
  height: 100vh;
  background: #ffffff;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  box-shadow: 8px 0 32px rgba(0,0,0,0.15);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 24px 20px;
}

.mobile-drawer-overlay.active .mobile-drawer {
  transform: translateX(300px);
}

.mobile-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-light);
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mobile-menu-links a {
  font-size: 1rem;
  font-weight: 700;
  color: #334155;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-menu-links a:hover, .mobile-menu-links a.active {
  background: var(--primary-light);
  color: #6523d1;
}

/* Hero Section */
.hero {
  background: linear-gradient(180deg, #faf5ff 0%, #ffffff 100%);
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.hero-title {
  font-size: 3.4rem;
  line-height: 1.15;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-title span { color: #6523d1; display: block; }
.hero-subtitle { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 32px; }

.btn-primary {
  background: #6523d1;
  color: white;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  box-shadow: 0 6px 20px rgba(101, 35, 209, 0.35);
}

.btn-primary:hover {
  background: #531ab4;
  transform: translateY(-2px);
}

.hero-features { display: flex; flex-direction: column; gap: 12px; margin-top: 32px; }
.hero-feature-item { display: flex; align-items: center; gap: 10px; font-size: 0.95rem; font-weight: 700; color: #334155; }
.hero-feature-item i { width: 22px; height: 22px; border-radius: 50%; background: #6523d1; color: white; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; }

.hero-image-container { position: relative; display: flex; justify-content: center; }
.hero-image-bg { position: absolute; width: 480px; height: 480px; background: radial-gradient(circle, rgba(233, 213, 255, 0.6) 0%, rgba(250, 245, 255, 0) 70%); top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 1; border-radius: 50%; }
.hero-img { position: relative; z-index: 2; width: 100%; max-width: 520px; filter: drop-shadow(0 15px 30px rgba(0,0,0,0.12)); animation: float 4s ease-in-out infinite; }

@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* Feature Highlight Cards */
.features-section { padding: 40px 0 60px; }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature-card { background: #ffffff; border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: 24px 20px; text-align: center; box-shadow: var(--shadow-sm); transition: var(--transition); display: flex; flex-direction: column; align-items: center; }
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--border-purple); }
.feature-icon-wrapper { width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin-bottom: 16px; }
.feature-icon-wrapper.purple { background: var(--badge-purple-bg); color: var(--badge-purple-icon); }
.feature-icon-wrapper.pink { background: var(--badge-pink-bg); color: var(--badge-pink-icon); }
.feature-icon-wrapper.green { background: var(--badge-green-bg); color: var(--badge-green-icon); }
.feature-icon-wrapper.yellow { background: var(--badge-yellow-bg); color: var(--badge-yellow-icon); }

/* Common Section Headers */
.section-header { text-align: center; margin-bottom: 40px; }
.section-title { font-size: 2.2rem; font-weight: 800; color: #0f172a; position: relative; display: inline-block; }
.section-title span { color: #6523d1; }
.section-divider { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 10px; color: #6523d1; }
.section-divider::before, .section-divider::after { content: ''; width: 40px; height: 2px; background: #cbd5e1; }

/* Products Grid Catalog */
.products-section { padding: 40px 0 70px; background: #ffffff; }
.filter-tabs { display: flex; justify-content: center; gap: 12px; margin-bottom: 36px; flex-wrap: wrap; }
.filter-tab { padding: 8px 20px; border-radius: var(--radius-full); background: #f1f5f9; color: #475569; font-weight: 600; font-size: 0.9rem; transition: var(--transition); }
.filter-tab:hover, .filter-tab.active { background: #6523d1; color: white; }

.products-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.product-card { background: #ffffff; border: 1px solid var(--border-light); border-radius: var(--radius-md); padding: 16px; text-align: center; transition: var(--transition); display: flex; flex-direction: column; justify-content: space-between; box-shadow: 0 2px 8px rgba(0,0,0,0.03); }
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--border-purple); }
.product-image-box { width: 100%; height: 200px; background: #faf5ff; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; overflow: hidden; margin-bottom: 14px; }
.product-image-box img { max-height: 180px; max-width: 100%; width: auto; height: auto; object-fit: contain; display: block; margin: 0 auto; transition: var(--transition); }
.product-card:hover .product-image-box img { transform: scale(1.06); }
.product-title { font-size: 1rem; font-weight: 700; color: #1e293b; margin-bottom: 6px; }
.product-price { font-size: 1.05rem; font-weight: 800; color: #6523d1; margin-bottom: 12px; }
.btn-book { background: #6523d1; color: white; font-weight: 700; padding: 8px 16px; border-radius: var(--radius-sm); font-size: 0.85rem; width: 100%; display: inline-block; border: none; }
.btn-book:hover { background: #531ab4; }

/* How to Order */
.how-to-order-section { padding: 60px 0 80px; background: #faf5ff; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step-card { background: #ffffff; border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: 30px 20px 24px; text-align: center; position: relative; box-shadow: var(--shadow-sm); transition: var(--transition); }
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step-number { position: absolute; top: -16px; left: 20px; width: 32px; height: 32px; border-radius: 50%; background: #6523d1; color: white; font-weight: 800; font-size: 0.95rem; display: flex; align-items: center; justify-content: center; }
.step-icon-box { width: 60px; height: 60px; border-radius: 50%; margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }

/* Gallery */
.gallery-section { padding: 60px 0 70px; background: #ffffff; }
.gallery-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-bottom: 32px; }
.gallery-item { border-radius: var(--radius-md); overflow: hidden; height: 220px; position: relative; cursor: pointer; box-shadow: var(--shadow-sm); background: #faf5ff; display: flex; align-items: center; justify-content: center; }
.gallery-item img { max-height: 200px; max-width: 100%; width: auto; height: auto; object-fit: contain; display: block; margin: 0 auto; transition: var(--transition); }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay { position: absolute; inset: 0; background: rgba(101, 35, 209, 0.4); display: flex; align-items: center; justify-content: center; color: white; font-size: 1.5rem; opacity: 0; transition: var(--transition); }
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* CTA Banner */
.cta-banner-section { padding: 20px 0 60px; }
.cta-banner { background: linear-gradient(135deg, #581c87 0%, #6523d1 100%); border-radius: var(--radius-lg); padding: 40px; color: white; position: relative; overflow: hidden; box-shadow: 0 16px 36px rgba(101, 35, 209, 0.3); }
.cta-wrapper { display: flex; align-items: center; justify-content: space-between; gap: 30px; position: relative; z-index: 2; }
.cta-mascot { width: 160px; height: 160px; object-fit: contain; flex-shrink: 0; }
.cta-text { flex-grow: 1; }
.cta-text h2 { font-size: 2.2rem; color: white; margin-bottom: 10px; }

/* Footer */
.footer { background: var(--bg-footer); color: #94a3b8; padding-top: 60px; border-top: 1px solid rgba(255, 255, 255, 0.05); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 50px; }
.footer-brand .logo-brand { color: #ffffff; margin-bottom: 16px; }
.social-links { display: flex; gap: 10px; }
.social-link { width: 36px; height: 36px; border-radius: 50%; background: rgba(255, 255, 255, 0.08); color: white; display: flex; align-items: center; justify-content: center; }
.social-link:hover { background: #6523d1; transform: translateY(-2px); }
.footer-col h4 { color: white; font-size: 1.1rem; margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: #94a3b8; font-size: 0.9rem; }
.footer-links a:hover { color: white; padding-left: 4px; }
.contact-list { display: flex; flex-direction: column; gap: 12px; }
.contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 0.88rem; }
.contact-item i { color: var(--accent-yellow); margin-top: 3px; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.08); padding: 20px 0; font-size: 0.85rem; }
.footer-bottom-content { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.payment-badges { display: flex; gap: 10px; align-items: center; }
.payment-badge { background: #ffffff; color: #0f172a; font-weight: 800; font-size: 0.75rem; padding: 4px 10px; border-radius: 4px; }

/* Cart Drawer */
.cart-drawer-overlay { position: fixed; inset: 0; background: rgba(15, 23, 42, 0.6); backdrop-filter: blur(4px); z-index: 999; opacity: 0; visibility: hidden; transition: var(--transition); }
.cart-drawer-overlay.active { opacity: 1; visibility: visible; }
.cart-drawer { position: fixed; top: 0; right: -420px; width: 100%; max-width: 420px; height: 100vh; background: #ffffff; z-index: 1000; display: flex; flex-direction: column; box-shadow: -8px 0 32px rgba(0,0,0,0.15); transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1); }
.cart-drawer-overlay.active .cart-drawer { transform: translateX(-420px); }
.cart-drawer-header { padding: 20px; border-bottom: 1px solid var(--border-light); display: flex; justify-content: space-between; align-items: center; }
.close-drawer-btn { background: none; font-size: 1.4rem; color: var(--text-muted); }
.cart-drawer-body { flex: 1; overflow-y: auto; padding: 20px; }
.cart-empty-state { text-align: center; padding: 60px 20px; color: var(--text-muted); }
.cart-empty-state i { font-size: 3.5rem; color: #cbd5e1; margin-bottom: 16px; }
.cart-item { display: flex; gap: 14px; padding-bottom: 16px; margin-bottom: 16px; border-bottom: 1px solid var(--border-light); }
.cart-item-img { width: 70px; height: 70px; background: #f8fafc; border-radius: var(--radius-sm); object-fit: contain; }
.cart-item-info { flex: 1; }
.cart-item-title { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.cart-item-price { font-size: 0.9rem; font-weight: 800; color: #6523d1; margin-bottom: 8px; }
.cart-item-controls { display: flex; align-items: center; justify-content: space-between; }
.qty-control { display: flex; align-items: center; border: 1px solid var(--border-light); border-radius: 6px; overflow: hidden; }
.qty-btn { width: 26px; height: 26px; background: #f1f5f9; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; }
.qty-val { padding: 0 10px; font-size: 0.85rem; font-weight: 700; }
.remove-item-btn { background: none; color: #ef4444; font-size: 0.9rem; }
.cart-drawer-footer { padding: 20px; border-top: 1px solid var(--border-light); background: #faf5ff; }
.cart-total-row { display: flex; justify-content: space-between; font-size: 1.1rem; font-weight: 800; margin-bottom: 16px; }
.cart-total-amount { color: #6523d1; }
.btn-checkout-whatsapp { width: 100%; background: var(--accent-yellow); color: #1e1b4b; font-weight: 800; padding: 14px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 1rem; box-shadow: 0 4px 14px rgba(251, 191, 36, 0.4); }

/* Checkout Grid */
.checkout-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 32px; padding: 50px 0; }
.checkout-card { background: #ffffff; border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-sm); margin-bottom: 24px; }
.checkout-card h3 { font-size: 1.25rem; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid #f1f5f9; display: flex; align-items: center; gap: 10px; color: #0f172a; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.88rem; font-weight: 700; color: #334155; margin-bottom: 6px; }
.form-control { width: 100%; padding: 12px 16px; border: 1px solid var(--border-light); border-radius: var(--radius-sm); font-size: 0.95rem; font-family: inherit; outline: none; transition: var(--transition); }
.form-control:focus { border-color: #6523d1; box-shadow: 0 0 0 3px rgba(101, 35, 209, 0.1); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.upi-payment-box { background: linear-gradient(180deg, #faf5ff 0%, #ffffff 100%); border: 2px solid var(--border-purple); border-radius: var(--radius-md); padding: 24px; text-align: center; }
.upi-id-badge { background: #ffffff; border: 1px dashed #6523d1; padding: 10px 16px; border-radius: var(--radius-sm); display: inline-flex; align-items: center; gap: 12px; font-weight: 800; font-size: 1.1rem; color: #6523d1; margin: 12px 0 20px; }
.upi-qr-wrapper { background: #ffffff; padding: 16px; border-radius: var(--radius-md); display: inline-block; box-shadow: var(--shadow-md); border: 1px solid var(--border-light); margin-bottom: 20px; }
.upi-apps-row { display: flex; justify-content: center; gap: 12px; margin-bottom: 24px; flex-wrap: wrap; }
.upi-app-btn { padding: 10px 16px; border-radius: var(--radius-full); font-weight: 700; font-size: 0.85rem; display: inline-flex; align-items: center; gap: 8px; color: white; }
.upi-app-btn.gpay { background: #4285f4; }
.upi-app-btn.phonepe { background: #5f259f; }
.upi-app-btn.paytm { background: #00baf2; }

/* Thank You Receipt */
.success-container { max-width: 680px; margin: 60px auto; padding: 0 20px; text-align: center; }
.success-badge { width: 90px; height: 90px; background: #d1fae5; color: #10b981; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 3rem; margin: 0 auto 24px; }
.receipt-card { background: #ffffff; border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: 36px; text-align: left; box-shadow: var(--shadow-lg); margin: 30px 0; }
.receipt-header { border-bottom: 2px solid #f1f5f9; padding-bottom: 20px; margin-bottom: 20px; display: flex; justify-content: space-between; align-items: center; }

/* Toast */
.toast-container { position: fixed; bottom: 24px; right: 24px; z-index: 2000; display: flex; flex-direction: column; gap: 10px; }
.toast { background: #0f172a; color: white; padding: 12px 20px; border-radius: var(--radius-md); font-size: 0.9rem; font-weight: 600; display: flex; align-items: center; gap: 10px; box-shadow: 0 10px 25px rgba(0,0,0,0.2); animation: slideIn 0.3s forwards; }
.toast i { color: #10b981; }

/* ==========================================================================
   COMPREHENSIVE RESPONSIVE BREAKPOINTS (MOBILE & CROSS-DEVICE)
   ========================================================================== */

/* Large Laptops & Desktops (1200px - 1400px) */
@media (max-width: 1200px) {
  .products-grid, .gallery-grid { grid-template-columns: repeat(4, 1fr); }
  .features-grid, .steps-grid { grid-template-columns: repeat(4, 1fr); }
  #fullGalleryGrid { grid-template-columns: repeat(4, 1fr); }
}

/* Tablets & Small Laptops (992px - 1199px) */
@media (max-width: 992px) {
  .products-grid, .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .features-grid, .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  #fullGalleryGrid { grid-template-columns: repeat(3, 1fr); }
  .checkout-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.8rem; }
  
  /* Shop Page sidebar */
  div[style*="grid-template-columns: 240px 1fr"] {
    grid-template-columns: 1fr !important;
  }
}

/* Mobile Devices & Small Tablets (max-width: 768px) */
@media (max-width: 768px) {
  .top-bar-content { justify-content: center; text-align: center; }
  .top-info { display: none; }
  .nav-menu { display: none; }
  .mobile-toggle { display: flex; }
  .btn-whatsapp { padding: 8px 14px; font-size: 0.82rem; }

  .hero { padding: 40px 0 50px; }
  .hero-wrapper { grid-template-columns: 1fr; text-align: center; gap: 30px; }
  .hero-content { margin: 0 auto; }
  .hero-title { font-size: 2.2rem; }
  .hero-subtitle { font-size: 1rem; margin-bottom: 24px; }
  .hero-features { align-items: center; }
  .hero-image-bg { width: 320px; height: 320px; }
  .hero-img { max-width: 320px; }

  .products-grid, .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  #fullGalleryGrid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .features-grid, .steps-grid { grid-template-columns: 1fr; }

  .cta-wrapper { flex-direction: column; text-align: center; }
  .cta-mascot { width: 120px; height: 120px; }
  .cta-text h2 { font-size: 1.6rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .form-row { grid-template-columns: 1fr; }

  .page-banner { padding: 30px 0; }
  .page-banner h1 { font-size: 1.8rem; }

  /* Product Detail Page Mobile */
  div[style*="grid-template-columns: 1fr 1.2fr"] {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  /* Cart Page Table Mobile Card Layout */
  #cartContentBox {
    grid-template-columns: 1fr !important;
  }

  table, thead, tbody, th, td, tr {
    display: block;
  }

  thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }

  tr {
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    padding: 12px;
    background: white;
  }

  td {
    border: none;
    position: relative;
    padding: 8px 0 !important;
  }
}

/* Small Mobile Phones (max-width: 480px) */
@media (max-width: 480px) {
  .logo-brand { font-size: 1.2rem; }
  .logo-badge { width: 38px; height: 38px; font-size: 1.1rem; }
  
  .products-grid, .gallery-grid { grid-template-columns: 1fr; }
  #fullGalleryGrid { grid-template-columns: 1fr; }

  .btn-primary, .btn-whatsapp { width: 100%; justify-content: center; }

  .checkout-card { padding: 20px; }
  .receipt-card { padding: 20px; }
  .receipt-header { flex-direction: column; align-items: flex-start; gap: 10px; }
  
  .cart-drawer { width: 100%; }
}

/* ==========================================================================
   GSAP Motion & Aesthetic Utility System
   ========================================================================== */
.gsap-reveal {
  will-change: transform, opacity;
}

.gsap-float {
  will-change: transform;
}

.hero-badge, .floating-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(147, 51, 234, 0.2);
  padding: 8px 16px;
  border-radius: 99px;
  box-shadow: 0 10px 25px rgba(101, 35, 209, 0.15);
  font-weight: 700;
  color: #6523d1;
  font-size: 0.88rem;
}

.product-card, .feature-card, .category-card, .gallery-card {
  transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  will-change: transform;
}

.product-card:hover, .feature-card:hover, .category-card:hover, .gallery-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 35px rgba(101, 35, 209, 0.14);
}

.badge-count {
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ==========================================================================
   Order Tracking Timeline & Admin Controls System
   ========================================================================== */
.tracking-stage-step.active .stage-icon-circle {
  background: #6523d1 !important;
  border-color: #6523d1 !important;
  color: white !important;
  box-shadow: 0 0 0 6px rgba(101, 35, 209, 0.2), 0 8px 20px rgba(101, 35, 209, 0.35) !important;
  transform: scale(1.15);
}

.tracking-stage-step.completed .stage-icon-circle {
  background: #10b981 !important;
  border-color: #10b981 !important;
  color: white !important;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3) !important;
}

.tracking-stage-step.active .stage-title {
  color: #6523d1 !important;
  font-weight: 800 !important;
}

.tracking-stage-step.completed .stage-title {
  color: #10b981 !important;
}

/* Nav highlight pulse for active order tracking link */
.nav-link.has-active-order {
  background: linear-gradient(135deg, #6523d1 0%, #7e22ce 100%);
  color: white !important;
  padding: 6px 14px !important;
  border-radius: 99px;
  box-shadow: 0 4px 15px rgba(101, 35, 209, 0.35);
  animation: pulseOrderNav 2s infinite;
}

@keyframes pulseOrderNav {
  0% { box-shadow: 0 0 0 0 rgba(101, 35, 209, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(101, 35, 209, 0); }
  100% { box-shadow: 0 0 0 0 rgba(101, 35, 209, 0); }
}

/* Admin Stage Select Badges */
.admin-stage-select {
  padding: 6px 10px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-purple);
  font-weight: 700;
  font-size: 0.82rem;
  background: white;
  color: #6523d1;
  outline: none;
  cursor: pointer;
}


