/* ===================================================
   MadeByMitzi — Global Design System
   Colors: Yellow #FFD700 | Green #00A86B | Blue #0F52BA
=================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&family=Nunito:wght@400;500;600;700;800&display=swap');

/* ── CSS Variables ── */
:root {
  --blue:        #0F52BA;
  --blue-dark:   #0a3d8f;
  --blue-light:  #3A6FD8;
  --green:       #00A86B;
  --green-dark:  #00784D;
  --green-light: #4ECFA0;
  --yellow:      #FFD700;
  --yellow-dark: #E6C000;
  --yellow-light:#FFF3A3;
  --teal:        #00553A;
  --azure:       #BFEFFF;
  --azure-dark:  #87CEEB;
  --white:       #FFFFFF;
  --gray-50:     #F8FAFC;
  --gray-100:    #F1F5F9;
  --gray-200:    #E2E8F0;
  --gray-400:    #94A3B8;
  --gray-600:    #475569;
  --gray-800:    #1E293B;
  --black:       #0D1117;

  --font-head:  'Poppins', sans-serif;
  --font-body:  'Nunito', sans-serif;

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  32px;
  --radius-pill:999px;

  --shadow-sm:  0 2px 8px rgba(15,82,186,0.10);
  --shadow-md:  0 8px 24px rgba(15,82,186,0.15);
  --shadow-lg:  0 16px 48px rgba(15,82,186,0.20);
  --shadow-yellow: 0 8px 24px rgba(255,215,0,0.40);
  --shadow-green:  0 8px 24px rgba(0,168,107,0.30);

  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  --transition-bounce: all 0.4s cubic-bezier(0.34,1.56,0.64,1);

  --nav-h: 72px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; outline: none; }
input, textarea, select { font-family: var(--font-body); outline: none; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: var(--radius-pill); }
::-webkit-scrollbar-thumb:hover { background: var(--blue-dark); }

/* ============================================================
   NAVIGATION
============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(15,82,186,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 2px solid rgba(255,215,0,0.25);
  display: flex;
  align-items: center;
  padding: 0 clamp(16px, 4vw, 48px);
  gap: 24px;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(10,61,143,0.98);
  box-shadow: var(--shadow-lg);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--yellow);
  letter-spacing: -0.5px;
  flex-shrink: 0;
}
.nav-logo .logo-icon {
  width: 40px; height: 40px;
  background: var(--yellow);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--yellow);
  background: rgba(255,215,0,0.12);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 8px;
}
.cart-btn {
  position: relative;
  background: var(--yellow);
  color: var(--blue-dark);
  border: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 1.1rem;
  display: grid;
  place-items: center;
  transition: var(--transition-bounce);
  box-shadow: var(--shadow-yellow);
}
.cart-btn:hover { transform: scale(1.1); }
.cart-badge {
  position: absolute;
  top: -4px; right: -4px;
  background: var(--green);
  color: white;
  font-size: 0.65rem;
  font-weight: 800;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  display: none;
}
.cart-badge.visible { display: grid; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--blue-dark);
  padding: 20px;
  z-index: 999;
  flex-direction: column;
  gap: 8px;
  border-bottom: 3px solid var(--yellow);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: white;
  font-weight: 600;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.mobile-nav a:hover { background: rgba(255,215,0,0.15); color: var(--yellow); }

/* ============================================================
   HERO SECTION
============================================================ */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 50%, var(--teal) 100%);
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 40px) clamp(16px,5vw,80px) 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 50%, rgba(255,215,0,0.12) 0%, transparent 60%),
    radial-gradient(circle at 85% 20%, rgba(0,168,107,0.15) 0%, transparent 50%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,215,0,0.15);
  border: 1.5px solid rgba(255,215,0,0.4);
  color: var(--yellow);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
  font-family: var(--font-head);
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  animation: fadeInDown 0.6s ease both;
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  color: white;
  line-height: 1.1;
  margin-bottom: 20px;
  animation: fadeInDown 0.7s ease 0.1s both;
}
.hero h1 span { color: var(--yellow); }
.hero p {
  color: rgba(255,255,255,0.8);
  font-size: clamp(1rem, 2vw, 1.15rem);
  margin-bottom: 36px;
  animation: fadeInDown 0.7s ease 0.2s both;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInDown 0.7s ease 0.3s both;
}
.hero-visual {
  position: relative;
  z-index: 2;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.hero-float-cards {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 16px;
  max-width: 400px;
}
.hero-float-card {
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 20px;
  text-align: center;
  color: white;
  animation: float 3s ease-in-out infinite;
}
.hero-float-card:nth-child(2) { animation-delay: 0.5s; }
.hero-float-card:nth-child(3) { animation-delay: 1s; }
.hero-float-card:nth-child(4) { animation-delay: 1.5s; }
.hero-float-card .card-emoji { font-size: 2rem; margin-bottom: 8px; }
.hero-float-card .card-label { font-size: 0.75rem; font-weight: 700; color: var(--yellow); font-family: var(--font-head); }

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.9rem;
  font-family: var(--font-head);
  transition: var(--transition-bounce);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--yellow);
  color: var(--blue-dark);
  box-shadow: var(--shadow-yellow);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 32px rgba(255,215,0,0.5);
  background: var(--yellow-dark);
}
.btn-secondary {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.5);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.12);
  border-color: white;
  transform: translateY(-3px);
}
.btn-green {
  background: var(--green);
  color: white;
  box-shadow: var(--shadow-green);
}
.btn-green:hover {
  background: var(--green-dark);
  transform: translateY(-3px) scale(1.03);
}
.btn-blue {
  background: var(--blue);
  color: white;
  box-shadow: var(--shadow-md);
}
.btn-blue:hover {
  background: var(--blue-dark);
  transform: translateY(-3px);
}
.btn-outline-blue {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline-blue:hover {
  background: var(--blue);
  color: white;
  transform: translateY(-2px);
}
.btn-sm { padding: 8px 18px; font-size: 0.8rem; }
.btn-lg { padding: 16px 40px; font-size: 1rem; }
.btn-danger {
  background: #ef4444;
  color: white;
  box-shadow: 0 4px 16px rgba(239,68,68,0.3);
}
.btn-danger:hover { background: #dc2626; transform: translateY(-2px); }

/* ============================================================
   SECTION LAYOUT
============================================================ */
.section {
  padding: clamp(48px, 8vw, 96px) clamp(16px, 5vw, 80px);
}
.section-header {
  text-align: center;
  margin-bottom: clamp(32px, 5vw, 60px);
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--azure);
  color: var(--blue);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  font-family: var(--font-head);
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--gray-800);
  line-height: 1.2;
  margin-bottom: 12px;
}
.section-title span { color: var(--blue); }
.section-sub {
  color: var(--gray-600);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto;
}
.container {
  max-width: 1280px;
  margin: 0 auto;
}

/* ============================================================
   PRODUCT CARDS
============================================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.product-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--gray-200);
  transition: var(--transition-bounce);
  position: relative;
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--yellow);
}
.product-img-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--gray-100);
}
.product-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img-wrap img {
  transform: scale(1.08);
}
.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,82,186,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transition: var(--transition);
}
.product-card:hover .product-overlay { opacity: 1; }
.overlay-btn {
  background: white;
  color: var(--blue);
  border: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 1rem;
  display: grid;
  place-items: center;
  transition: var(--transition-bounce);
}
.overlay-btn:hover {
  background: var(--yellow);
  color: var(--blue-dark);
  transform: scale(1.15);
}
.product-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--yellow);
  color: var(--blue-dark);
  font-size: 0.7rem;
  font-weight: 800;
  font-family: var(--font-head);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.product-badge.green { background: var(--green); color: white; }
.product-badge.blue  { background: var(--blue);  color: white; }
.product-info {
  padding: 16px;
}
.product-category {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 4px;
}
.product-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--gray-800);
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
}
.product-stars {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 10px;
}
.star { color: var(--gray-200); font-size: 0.85rem; }
.star.filled { color: var(--yellow); }
.star-count { font-size: 0.75rem; color: var(--gray-600); margin-left: 4px; }
.product-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.product-price {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--blue);
}
.product-price-old {
  font-size: 0.8rem;
  color: var(--gray-400);
  text-decoration: line-through;
}
.add-to-cart-btn {
  background: var(--blue);
  color: white;
  border: none;
  width: 36px; height: 36px;
  border-radius: 50%;
  font-size: 0.9rem;
  display: grid;
  place-items: center;
  transition: var(--transition-bounce);
  flex-shrink: 0;
}
.add-to-cart-btn:hover {
  background: var(--yellow);
  color: var(--blue-dark);
  transform: scale(1.15);
}

/* ============================================================
   STAMP CARD (decorative style)
============================================================ */
.stamp-card {
  position: relative;
  background: white;
  border: 3px solid var(--yellow);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.stamp-card::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: var(--radius-lg);
  background: repeating-linear-gradient(
    90deg,
    var(--yellow) 0px, var(--yellow) 6px,
    transparent 6px, transparent 12px
  );
  z-index: -1;
}

/* ============================================================
   REVIEWS / RATINGS
============================================================ */
.stars-interactive {
  display: flex;
  gap: 4px;
}
.stars-interactive .star-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--gray-200);
  cursor: pointer;
  transition: var(--transition);
  padding: 2px;
}
.stars-interactive .star-btn:hover,
.stars-interactive .star-btn.active {
  color: var(--yellow);
  transform: scale(1.2);
}
.review-card {
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: var(--transition);
}
.review-card:hover {
  border-color: var(--yellow);
  box-shadow: var(--shadow-sm);
}
.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--green));
  display: grid;
  place-items: center;
  color: white;
  font-weight: 800;
  font-family: var(--font-head);
  font-size: 1rem;
  flex-shrink: 0;
}
.review-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--gray-800);
}
.review-date {
  font-size: 0.75rem;
  color: var(--gray-400);
}
.review-text {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ============================================================
   FORMS
============================================================ */
.form-group {
  margin-bottom: 20px;
}
.form-label {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--gray-800);
  margin-bottom: 6px;
  font-family: var(--font-head);
}
.form-label span.required { color: #ef4444; }
.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  background: white;
  color: var(--gray-800);
  transition: var(--transition);
}
.form-input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(15,82,186,0.12);
}
.form-input::placeholder { color: var(--gray-400); }
.form-textarea {
  resize: vertical;
  min-height: 100px;
}
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2394A3B8'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  padding-right: 40px;
}
.form-error {
  color: #ef4444;
  font-size: 0.78rem;
  margin-top: 4px;
  display: none;
}
.form-error.show { display: block; }

/* File upload */
.file-upload-box {
  border: 2px dashed var(--gray-200);
  border-radius: var(--radius-md);
  padding: 32px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  background: var(--gray-50);
}
.file-upload-box:hover {
  border-color: var(--blue);
  background: var(--azure);
}
.file-upload-box input[type="file"] { display: none; }
.file-upload-icon { font-size: 2.5rem; margin-bottom: 8px; }
.file-upload-text { font-weight: 600; color: var(--gray-600); }
.file-upload-text span { color: var(--blue); }
.file-upload-hint { font-size: 0.8rem; color: var(--gray-400); margin-top: 4px; }

/* ============================================================
   MODAL
============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.2s ease;
}
.modal-overlay.open { display: flex; }
.modal {
  background: white;
  border-radius: var(--radius-xl);
  padding: 32px;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 32px 64px rgba(0,0,0,0.25);
  animation: slideUp 0.3s cubic-bezier(0.34,1.56,0.64,1) both;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}
.modal-lg { max-width: 700px; }
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--gray-100);
  border: none;
  width: 36px; height: 36px;
  border-radius: 50%;
  font-size: 1.1rem;
  display: grid;
  place-items: center;
  transition: var(--transition);
  color: var(--gray-600);
}
.modal-close:hover { background: var(--gray-200); color: var(--gray-800); }
.modal-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 2rem;
  margin: 0 auto 20px;
}
.modal-icon.danger { background: #FEE2E2; }
.modal-icon.success { background: #DCFCE7; }
.modal-icon.info { background: var(--azure); }
.modal h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.3rem;
  text-align: center;
  margin-bottom: 8px;
}
.modal p { text-align: center; color: var(--gray-600); margin-bottom: 24px; font-size: 0.9rem; }
.modal-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}

/* ============================================================
   TOAST NOTIFICATIONS
============================================================ */
.toast-container {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}
.toast {
  display: flex;
  align-items: center;
  gap: 12px;
  background: white;
  border-radius: var(--radius-md);
  padding: 14px 20px;
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--green);
  min-width: 260px;
  animation: slideInRight 0.4s cubic-bezier(0.34,1.56,0.64,1) both;
  pointer-events: all;
}
.toast.success { border-color: var(--green); }
.toast.error   { border-color: #ef4444; }
.toast.info    { border-color: var(--blue); }
.toast-icon { font-size: 1.2rem; flex-shrink: 0; }
.toast-msg  { font-weight: 600; font-size: 0.88rem; color: var(--gray-800); }
.toast.removing {
  animation: slideOutRight 0.3s ease forwards;
}

/* ============================================================
   HOW IT WORKS
============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  position: relative;
}
.step-card {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius-lg);
  background: white;
  border: 2px solid var(--gray-200);
  transition: var(--transition-bounce);
  position: relative;
}
.step-card:hover {
  transform: translateY(-6px);
  border-color: var(--yellow);
  box-shadow: var(--shadow-md);
}
.step-num {
  width: 52px; height: 52px;
  background: var(--yellow);
  color: var(--blue-dark);
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.3rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
}
.step-icon { font-size: 2.2rem; margin-bottom: 12px; }
.step-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--gray-800);
}
.step-text { font-size: 0.88rem; color: var(--gray-600); line-height: 1.6; }

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--blue-dark);
  color: rgba(255,255,255,0.75);
  padding: 48px clamp(16px,5vw,80px) 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 32px;
  margin-bottom: 40px;
}
.footer-brand .logo {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--yellow);
  margin-bottom: 12px;
}
.footer-brand p { font-size: 0.88rem; line-height: 1.7; max-width: 260px; }
.footer-heading {
  font-family: var(--font-head);
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
  font-size: 0.95rem;
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  font-size: 0.88rem;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--yellow); }
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.social-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: white;
  display: grid;
  place-items: center;
  font-size: 1rem;
  transition: var(--transition-bounce);
  border: 1.5px solid rgba(255,255,255,0.15);
}
.social-btn:hover {
  background: var(--yellow);
  color: var(--blue-dark);
  transform: scale(1.15);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.82rem;
}
.footer-bottom a { color: var(--yellow); }

/* ============================================================
   STATS BAR
============================================================ */
.stats-bar {
  background: linear-gradient(90deg, var(--blue) 0%, var(--green) 100%);
  padding: 32px clamp(16px,5vw,80px);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px,1fr));
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}
.stat-item .stat-num {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 2.2rem;
  color: var(--yellow);
  line-height: 1;
}
.stat-item .stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
  margin-top: 4px;
}

/* ============================================================
   CATEGORY TABS
============================================================ */
.category-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.cat-tab {
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.85rem;
  font-family: var(--font-head);
  border: 2px solid var(--gray-200);
  background: white;
  color: var(--gray-600);
  cursor: pointer;
  transition: var(--transition);
}
.cat-tab:hover {
  border-color: var(--blue);
  color: var(--blue);
}
.cat-tab.active {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
  box-shadow: var(--shadow-sm);
}

/* ============================================================
   BANNER / MARQUEE
============================================================ */
.marquee-bar {
  background: var(--yellow);
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  gap: 48px;
  animation: marquee 20s linear infinite;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--blue-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.marquee-dot { color: var(--green); font-size: 1.2rem; }

/* ============================================================
   PAGE HEADER (inner pages)
============================================================ */
.page-header {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  padding: calc(var(--nav-h) + 40px) clamp(16px,5vw,80px) 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(255,215,0,0.15) 0%, transparent 60%);
}
.page-header h1 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: white;
  position: relative;
  z-index: 1;
}
.page-header h1 span { color: var(--yellow); }
.page-header p {
  color: rgba(255,255,255,0.75);
  margin-top: 10px;
  position: relative;
  z-index: 1;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  position: relative;
  z-index: 1;
}
.breadcrumb a { color: var(--yellow); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* ============================================================
   LOADING SPINNER
============================================================ */
.spinner {
  width: 40px; height: 40px;
  border: 4px solid var(--gray-200);
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 40px auto;
}

/* ============================================================
   EMPTY STATE
============================================================ */
.empty-state {
  text-align: center;
  padding: 60px 20px;
}
.empty-icon { font-size: 4rem; margin-bottom: 16px; }
.empty-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--gray-800);
  margin-bottom: 8px;
}
.empty-text { color: var(--gray-600); font-size: 0.9rem; margin-bottom: 24px; }

/* ============================================================
   CONFETTI CANVAS
============================================================ */
#confetti-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
}

/* ============================================================
   SCROLL ANIMATIONS
============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   KEYFRAME ANIMATIONS
============================================================ */
@keyframes fadeIn    { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideOutRight {
  from { opacity: 1; transform: translateX(0); }
  to   { opacity: 0; transform: translateX(60px); }
}
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33%       { transform: translateY(-10px) rotate(1deg); }
  66%       { transform: translateY(-5px) rotate(-1deg); }
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.05); }
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero { flex-direction: column; text-align: center; }
  .hero-content { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-visual { margin: 40px auto 0; }
}
@media (max-width: 768px) {
  .navbar { gap: 12px; }
  .nav-links { display: none; }
  .nav-actions { margin-left: auto; }
  .hamburger { display: flex; margin-left: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-float-cards { grid-template-columns: repeat(2,1fr); gap: 10px; }
  .hero-float-card { padding: 14px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .modal { padding: 24px 20px; }
  .modal-actions { flex-direction: column; }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .btn { padding: 11px 20px; font-size: 0.85rem; }
  .hero-float-cards { max-width: 100%; }
  .steps-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   UTILITIES
============================================================ */
.text-center { text-align: center; }
.text-yellow { color: var(--yellow); }
.text-green  { color: var(--green); }
.text-blue   { color: var(--blue); }
.bg-blue     { background: var(--blue); }
.bg-green    { background: var(--green); }
.bg-yellow   { background: var(--yellow); }
.bg-azure    { background: var(--azure); }
.bg-light    { background: var(--gray-50); }
.rounded     { border-radius: var(--radius-md); }
.shadow      { box-shadow: var(--shadow-md); }
.flex        { display: flex; }
.items-center{ align-items: center; }
.justify-between { justify-content: space-between; }
.gap-8       { gap: 8px; }
.gap-12      { gap: 12px; }
.gap-16      { gap: 16px; }
.gap-24      { gap: 24px; }
.mt-8        { margin-top: 8px; }
.mt-16       { margin-top: 16px; }
.mt-24       { margin-top: 24px; }
.mb-8        { margin-bottom: 8px; }
.mb-16       { margin-bottom: 16px; }
.mb-24       { margin-bottom: 24px; }
.w-full      { width: 100%; }
.grid-2      { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.grid-3      { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4      { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.hide        { display: none !important; }
.show        { display: block !important; }
