/* ============================================================
   DTPlayworld.com — Main Stylesheet
   Theme: Vibrant Playful + Professional Trust
   Fonts: Baloo 2 (display) + Nunito (body)
   ============================================================ */

:root {
  --primary: #FF6B35;
  --primary-dark: #e0541e;
  --secondary: #FFD23F;
  --accent: #06D6A0;
  --accent2: #118AB2;
  --purple: #7B2FBE;
  --bg: #FFF8F0;
  --bg2: #fff;
  --text: #1A1A2E;
  --text-muted: #6B7280;
  --border: #E5E7EB;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.15);
  --radius: 16px;
  --radius-sm: 10px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
}

/* ===== PRELOADER ===== */
#preloader {
  position: fixed; inset: 0; background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999; transition: opacity 0.5s ease;
}
.preloader-inner { text-align: center; }
.preloader-logo {
  font-family: 'Baloo 2', cursive; font-size: 2.5rem; font-weight: 800;
  color: #fff; letter-spacing: -1px;
}
.preloader-logo span { color: var(--secondary); }
.preloader-dots { display: flex; gap: 8px; justify-content: center; margin-top: 16px; }
.preloader-dots span {
  width: 12px; height: 12px; background: #fff;
  border-radius: 50%; animation: bounce 0.8s infinite alternate;
}
.preloader-dots span:nth-child(2) { animation-delay: 0.2s; background: var(--secondary); }
.preloader-dots span:nth-child(3) { animation-delay: 0.4s; background: var(--accent); }
@keyframes bounce { from { transform: translateY(0); } to { transform: translateY(-14px); } }

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  background: linear-gradient(90deg, var(--primary), var(--purple), var(--accent2));
  color: #fff; text-align: center; padding: 10px 16px;
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.3px;
  white-space: nowrap; overflow: hidden;
  animation: marquee-like 0s linear;
}

/* ===== HEADER ===== */
#main-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--secondary);
  box-shadow: 0 2px 16px rgba(255,107,53,0.08);
  transition: all 0.3s ease;
}
.header-inner {
  display: flex; align-items: center; gap: 1.5rem;
  padding: 14px 24px; max-width: 1300px; margin: 0 auto;
}
.logo {
  font-family: 'Baloo 2', cursive; font-size: 1.6rem; font-weight: 800;
  text-decoration: none; letter-spacing: -0.5px; white-space: nowrap;
}
.logo-dt { color: var(--primary); }
.logo-play { color: var(--text); }
.logo-world { color: var(--accent2); }
.logo-dot { color: var(--secondary); }
.logo-com { color: var(--text-muted); font-size: 1rem; font-weight: 600; }

.main-nav { display: flex; gap: 0.1rem; flex: 1; justify-content: center; }
.main-nav a {
  text-decoration: none; color: var(--text); font-weight: 600;
  padding: 8px 14px; border-radius: 8px; font-size: 0.9rem;
  transition: all 0.2s ease; position: relative;
}
.main-nav a:hover { color: var(--primary); background: rgba(255,107,53,0.08); }

.header-actions { display: flex; align-items: center; gap: 12px; }
.cart-btn {
  background: var(--bg); border: 2px solid var(--border);
  padding: 8px 16px; border-radius: 24px; cursor: pointer;
  font-size: 1rem; font-weight: 700; display: flex; align-items: center;
  gap: 6px; transition: all 0.2s ease; font-family: 'Nunito', sans-serif;
  position: relative;
}
.cart-btn:hover { border-color: var(--primary); background: rgba(255,107,53,0.06); }
.cart-count {
  background: var(--primary); color: #fff;
  border-radius: 50%; width: 20px; height: 20px;
  font-size: 0.7rem; display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff; border: none; padding: 10px 24px; border-radius: 24px;
  cursor: pointer; font-weight: 700; font-family: 'Nunito', sans-serif;
  font-size: 0.95rem; transition: all 0.25s ease; box-shadow: 0 4px 14px rgba(255,107,53,0.3);
  white-space: nowrap;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,107,53,0.4); }
.btn-primary.large { padding: 14px 32px; font-size: 1.05rem; border-radius: 30px; }
.btn-primary.full-w { width: 100%; justify-content: center; text-align: center; margin-top: 8px; }

.btn-outline {
  background: transparent; color: var(--primary);
  border: 2px solid var(--primary); padding: 10px 24px;
  border-radius: 24px; cursor: pointer; font-weight: 700;
  font-family: 'Nunito', sans-serif; font-size: 0.95rem;
  transition: all 0.25s ease;
}
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-outline.large { padding: 14px 32px; font-size: 1.05rem; border-radius: 30px; }

.hamburger {
  display: none; background: none; border: none;
  font-size: 1.5rem; cursor: pointer; color: var(--text);
}
.mobile-nav {
  display: none; flex-direction: column; gap: 0;
  background: #fff; border-top: 1px solid var(--border);
}
.mobile-nav a {
  padding: 14px 24px; text-decoration: none; color: var(--text);
  font-weight: 600; border-bottom: 1px solid var(--border);
}
.mobile-nav.open { display: flex; }

/* ===== CONTAINER ===== */
.container { max-width: 1300px; margin: 0 auto; padding: 0 24px; }

/* ===== HERO ===== */
.hero-section {
  min-height: 90vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #FFF8F0 60%, #FFF0E8 100%);
  padding: 80px 0 60px;
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape {
  position: absolute; border-radius: 50%;
  opacity: 0.12; animation: float-shape 8s ease-in-out infinite;
}
.s1 { width: 500px; height: 500px; background: var(--primary); top: -150px; right: -100px; }
.s2 { width: 300px; height: 300px; background: var(--secondary); bottom: -80px; left: -60px; animation-delay: 2s; }
.s3 { width: 200px; height: 200px; background: var(--accent); top: 30%; left: 20%; animation-delay: 4s; }
.s4 { width: 150px; height: 150px; background: var(--accent2); bottom: 20%; right: 30%; animation-delay: 1s; }
@keyframes float-shape {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center; padding: 0 24px;
  max-width: 1300px; margin: 0 auto; width: 100%;
  position: relative; z-index: 2;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,107,53,0.12); color: var(--primary);
  padding: 8px 18px; border-radius: 24px; font-weight: 700;
  font-size: 0.85rem; margin-bottom: 20px; border: 1.5px solid rgba(255,107,53,0.3);
}
.hero-title {
  font-family: 'Baloo 2', cursive; font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800; line-height: 1.15; margin-bottom: 20px; color: var(--text);
}
.hero-title .highlight {
  color: var(--primary);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 32px; max-width: 480px; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 12px; }
.trust-item {
  background: #fff; border: 1.5px solid var(--border);
  padding: 6px 14px; border-radius: 20px; font-size: 0.82rem;
  font-weight: 700; color: var(--text); box-shadow: var(--shadow);
}

/* Hero Visual */
.hero-visual { display: flex; align-items: center; justify-content: center; }
.hero-toy-grid {
  position: relative; width: 380px; height: 380px;
  background: radial-gradient(circle at center, rgba(255,107,53,0.08), transparent 70%);
}
.toy-float {
  position: absolute; font-size: 3rem; animation: toy-bounce 3s ease-in-out infinite;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}
.f1 { top: 5%; left: 10%; animation-delay: 0s; }
.f2 { top: 5%; right: 10%; animation-delay: 0.5s; }
.f3 { top: 35%; left: 0%; animation-delay: 1s; }
.f4 { top: 35%; right: 0%; animation-delay: 1.5s; }
.f5 { bottom: 15%; left: 10%; animation-delay: 2s; }
.f6 { bottom: 15%; right: 10%; animation-delay: 0.8s; }
@keyframes toy-bounce {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50% { transform: translateY(-16px) rotate(5deg); }
}
.hero-center-circle {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 160px; height: 160px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: #fff; font-family: 'Baloo 2', cursive; font-weight: 800;
  box-shadow: 0 8px 32px rgba(255,107,53,0.4);
  animation: pulse-circle 2s ease-in-out infinite;
}
.hero-center-circle span { font-size: 1.1rem; line-height: 1.1; }
.hero-center-circle span:nth-child(2) { color: var(--secondary); font-size: 1.4rem; }
@keyframes pulse-circle {
  0%, 100% { box-shadow: 0 8px 32px rgba(255,107,53,0.4); }
  50% { box-shadow: 0 12px 48px rgba(255,107,53,0.6); }
}

/* ===== STATS STRIP ===== */
.stats-strip {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 32px 24px;
}
.stats-inner {
  display: flex; align-items: center; justify-content: space-around;
  flex-wrap: wrap; gap: 24px;
}
.stat { text-align: center; color: #fff; }
.stat-num { font-family: 'Baloo 2', cursive; font-size: 2.2rem; font-weight: 800; }
.stat span { font-size: 1.5rem; font-weight: 800; }
.stat-label { font-size: 0.9rem; opacity: 0.85; font-weight: 600; }
.stat-div { width: 1px; height: 48px; background: rgba(255,255,255,0.25); }

/* ===== SECTION TITLES ===== */
.section-title {
  font-family: 'Baloo 2', cursive; font-size: 2.2rem; font-weight: 800;
  margin-bottom: 12px; color: var(--text);
}
.section-title span {
  color: var(--primary);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-header { text-align: center; margin-bottom: 40px; }
.section-header p { color: var(--text-muted); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }
.section-badge {
  display: inline-block; background: rgba(255,210,63,0.2); color: #b07d00;
  padding: 4px 14px; border-radius: 20px; font-size: 0.8rem;
  font-weight: 700; margin-bottom: 12px; border: 1.5px solid rgba(255,210,63,0.5);
}

/* ===== CATEGORY TABS ===== */
.categories-section { padding: 60px 24px 20px; }
.cat-tabs {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 24px;
}
.cat-tab {
  padding: 8px 20px; border-radius: 24px; border: 2px solid var(--border);
  background: #fff; cursor: pointer; font-weight: 700;
  font-family: 'Nunito', sans-serif; font-size: 0.9rem; color: var(--text);
  transition: all 0.2s ease;
}
.cat-tab:hover, .cat-tab.active {
  background: var(--primary); border-color: var(--primary);
  color: #fff; transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(255,107,53,0.3);
}

/* ===== PRODUCT GRID ===== */
.catalogue-section { padding: 20px 24px 80px; }
.product-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 28px; margin-top: 20px;
}
.product-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); border: 1.5px solid var(--border);
  transition: all 0.3s ease; position: relative;
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: var(--primary); color: #fff; padding: 4px 12px;
  border-radius: 20px; font-size: 0.75rem; font-weight: 800;
}
.product-badge.new { background: var(--accent); }
.product-badge.hot { background: #e53e3e; }
.product-img {
  height: 200px; display: flex; align-items: center; justify-content: center;
  font-size: 5rem; background: var(--bg);
  position: relative; overflow: hidden;
}
.product-img::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.5), transparent);
  pointer-events: none;
}
.product-info { padding: 18px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.product-cat {
  font-size: 0.75rem; font-weight: 700; color: var(--accent2);
  text-transform: uppercase; letter-spacing: 0.5px;
}
.product-name {
  font-family: 'Baloo 2', cursive; font-size: 1.1rem; font-weight: 700;
  color: var(--text); line-height: 1.3;
}
.product-desc { font-size: 0.85rem; color: var(--text-muted); flex: 1; }
.product-age {
  font-size: 0.78rem; color: var(--text-muted); font-weight: 600;
  background: var(--bg); display: inline-block; padding: 3px 10px; border-radius: 12px;
}
.product-price {
  font-family: 'Baloo 2', cursive; font-size: 1.4rem; font-weight: 800; color: var(--primary);
  display: flex; align-items: center; gap: 10px;
}
.product-price .mrp { font-size: 0.9rem; color: var(--text-muted); text-decoration: line-through; font-weight: 400; font-family: 'Nunito', sans-serif; }
.product-price .discount { font-size: 0.8rem; color: var(--accent); font-weight: 700; font-family: 'Nunito', sans-serif; }
.product-actions { display: flex; gap: 10px; margin-top: 8px; }
.product-actions .btn-primary { flex: 1; padding: 10px; font-size: 0.9rem; text-align: center; border-radius: 12px; }
.wishlist-btn {
  width: 40px; height: 40px; border: 2px solid var(--border);
  border-radius: 12px; background: none; cursor: pointer;
  font-size: 1.1rem; transition: all 0.2s ease; display: flex;
  align-items: center; justify-content: center;
}
.wishlist-btn:hover { border-color: #e53e3e; background: rgba(229,62,62,0.06); }
.product-rating { display: flex; align-items: center; gap: 6px; }
.stars-sm { color: var(--secondary); font-size: 0.85rem; }
.rating-count { font-size: 0.78rem; color: var(--text-muted); }

/* ===== CART DRAWER ===== */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.4);
  z-index: 2000; display: none; backdrop-filter: blur(4px);
}
.cart-overlay.open { display: block; }
.cart-drawer {
  position: fixed; right: -420px; top: 0; bottom: 0;
  width: 400px; background: #fff; z-index: 2001;
  box-shadow: -8px 0 40px rgba(0,0,0,0.15);
  transition: right 0.35s ease; display: flex; flex-direction: column;
}
.cart-drawer.open { right: 0; }
.cart-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border-bottom: 2px solid var(--border);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #fff;
}
.cart-header h3 { font-family: 'Baloo 2', cursive; font-size: 1.3rem; }
.cart-header button {
  background: rgba(255,255,255,0.2); border: none; color: #fff;
  width: 32px; height: 32px; border-radius: 50%; cursor: pointer; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.cart-header button:hover { background: rgba(255,255,255,0.35); }
.cart-items { flex: 1; overflow-y: auto; padding: 16px; }
.empty-cart { text-align: center; color: var(--text-muted); font-size: 0.95rem; margin-top: 40px; }
.cart-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 0; border-bottom: 1px solid var(--border);
}
.cart-item-emoji { font-size: 2.5rem; width: 50px; text-align: center; }
.cart-item-info { flex: 1; }
.cart-item-name { font-weight: 700; font-size: 0.9rem; }
.cart-item-price { color: var(--primary); font-weight: 700; font-size: 0.9rem; }
.cart-item-qty { display: flex; align-items: center; gap: 8px; margin-top: 4px; }
.qty-btn {
  width: 24px; height: 24px; border-radius: 50%; border: 1.5px solid var(--border);
  background: none; cursor: pointer; font-size: 0.9rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; transition: all 0.2s;
}
.qty-btn:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.qty-val { font-weight: 700; min-width: 20px; text-align: center; }
.remove-cart-item { color: #e53e3e; cursor: pointer; font-size: 0.8rem; font-weight: 700; border: none; background: none; }
.cart-footer { padding: 16px 24px; border-top: 2px solid var(--border); }
.cart-total { font-family: 'Baloo 2', cursive; font-size: 1.3rem; font-weight: 800; margin-bottom: 12px; color: var(--text); }

/* ===== MODALS ===== */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5);
  z-index: 3000; display: none; align-items: center; justify-content: center;
  padding: 24px; backdrop-filter: blur(6px);
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: #fff; border-radius: var(--radius);
  padding: 36px; max-width: 640px; width: 100%;
  max-height: 90vh; overflow-y: auto; position: relative;
  box-shadow: var(--shadow-lg); animation: modalIn 0.3s ease;
}
@keyframes modalIn { from { transform: translateY(30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  background: var(--bg); border: 1.5px solid var(--border);
  width: 34px; height: 34px; border-radius: 50%; cursor: pointer;
  font-size: 1rem; display: flex; align-items: center; justify-content: center;
  transition: all 0.2s; color: var(--text);
}
.modal-close:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.modal-box h2 {
  font-family: 'Baloo 2', cursive; font-size: 1.8rem; font-weight: 800;
  margin-bottom: 8px; color: var(--text);
}
.modal-box p { color: var(--text-muted); margin-bottom: 24px; }
.order-summary {
  background: var(--bg); border-radius: var(--radius-sm);
  padding: 16px; margin-bottom: 20px; border: 1.5px solid var(--border);
}

/* ===== FORMS ===== */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-weight: 700; font-size: 0.88rem; color: var(--text); }
.form-group input, .form-group textarea, .form-group select {
  padding: 12px 16px; border: 2px solid var(--border); border-radius: var(--radius-sm);
  font-family: 'Nunito', sans-serif; font-size: 0.95rem; color: var(--text);
  background: #fff; transition: border-color 0.2s ease; outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--primary); box-shadow: 0 0 0 3px rgba(255,107,53,0.12);
}
.form-group textarea { min-height: 100px; resize: vertical; }
.form-check { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 16px; }
.form-check input[type="checkbox"] { margin-top: 3px; accent-color: var(--primary); }
.form-check label { font-size: 0.85rem; color: var(--text-muted); }

/* ===== WHY SECTION ===== */
.why-section { padding: 80px 24px; background: #fff; }
.why-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px; margin-top: 48px;
}
.why-card {
  padding: 32px 28px; border-radius: var(--radius);
  border: 2px solid var(--border); transition: all 0.3s ease;
  background: var(--bg);
}
.why-card:hover {
  border-color: var(--primary); transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  background: #fff;
}
.why-icon { font-size: 2.5rem; margin-bottom: 16px; }
.why-card h3 {
  font-family: 'Baloo 2', cursive; font-size: 1.2rem; font-weight: 700;
  margin-bottom: 10px; color: var(--text);
}
.why-card p { font-size: 0.9rem; color: var(--text-muted); }

/* ===== BULK SECTION ===== */
.bulk-section {
  padding: 80px 24px;
  background: linear-gradient(135deg, var(--accent2), #0a6a8a, var(--purple));
  position: relative; overflow: hidden;
}
.bulk-section::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.bulk-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center; position: relative; z-index: 1;
}
.bulk-text .section-badge { background: rgba(255,255,255,0.15); color: #fff; border-color: rgba(255,255,255,0.3); }
.section-title.white { color: #fff; }
.section-title.white span {
  background: linear-gradient(135deg, var(--secondary), #ffc107);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.bulk-text p { color: rgba(255,255,255,0.85); margin-bottom: 24px; font-size: 1.05rem; }
.bulk-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.bulk-features li { color: rgba(255,255,255,0.9); font-weight: 600; font-size: 0.95rem; }
.bulk-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.bulk-card {
  background: rgba(255,255,255,0.12); border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: var(--radius); padding: 24px; backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.bulk-card:hover { background: rgba(255,255,255,0.18); transform: translateY(-4px); }
.bulk-icon { font-size: 2rem; margin-bottom: 12px; }
.bulk-detail h4 { font-family: 'Baloo 2', cursive; font-size: 1.1rem; color: #fff; font-weight: 700; }
.bulk-detail p { font-size: 0.82rem; color: rgba(255,255,255,0.75); margin-top: 4px; }

/* ===== REGISTER SECTIONS ===== */
.register-section { padding: 40px 24px; }
.register-box {
  border-radius: var(--radius); padding: 48px 40px;
  text-align: center; border: 2px solid var(--border);
  background: #fff; transition: all 0.3s ease;
  box-shadow: var(--shadow);
}
.register-box:hover { box-shadow: var(--shadow-lg); }
.dist-box { border-top: 5px solid var(--accent2); }
.retail-box { border-top: 5px solid var(--accent); }
.register-icon { font-size: 3.5rem; margin-bottom: 20px; }
.register-box h2 {
  font-family: 'Baloo 2', cursive; font-size: 2rem; font-weight: 800; margin-bottom: 16px;
}
.register-box h2 span { color: var(--primary); }
.register-box p { color: var(--text-muted); max-width: 600px; margin: 0 auto 24px; font-size: 1rem; }
.register-perks {
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: center; margin-bottom: 32px;
}
.register-perks span {
  background: var(--bg); border: 1.5px solid var(--border);
  padding: 6px 16px; border-radius: 20px; font-size: 0.85rem; font-weight: 700;
}

/* ===== ENQUIRY SECTION ===== */
.enquiry-section {
  padding: 80px 24px;
  background: linear-gradient(135deg, #FFF8F0, #fff);
  border-top: 2px solid var(--border);
}
.enquiry-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: flex-start;
}
.enquiry-text h2 {
  font-family: 'Baloo 2', cursive; font-size: 2.2rem; font-weight: 800; margin-bottom: 16px;
}
.enquiry-text h2 span { color: var(--primary); }
.enquiry-text p { color: var(--text-muted); margin-bottom: 28px; }
.contact-quick { display: flex; flex-direction: column; gap: 12px; }
.cq-item { display: flex; align-items: center; gap: 10px; font-size: 0.95rem; color: var(--text); }
.enquiry-form {
  background: #fff; border-radius: var(--radius); padding: 36px;
  box-shadow: var(--shadow-lg); border: 1.5px solid var(--border);
}
.enquiry-form h3 {
  font-family: 'Baloo 2', cursive; font-size: 1.5rem; font-weight: 800;
  margin-bottom: 24px; color: var(--text);
}

/* ===== ABOUT ===== */
.about-section { padding: 80px 24px; }
.about-inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px; align-items: start; }
.about-badge {
  display: inline-block; background: rgba(255,107,53,0.1); color: var(--primary);
  padding: 6px 16px; border-radius: 20px; font-size: 0.82rem;
  font-weight: 700; margin-bottom: 20px; border: 1.5px solid rgba(255,107,53,0.3);
}
.about-story p { color: var(--text); line-height: 1.8; margin-bottom: 16px; font-size: 1rem; }
.about-values { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.val {
  background: var(--bg); border: 2px solid var(--border);
  padding: 8px 18px; border-radius: 24px; font-weight: 700; font-size: 0.9rem;
}

.founders-cards { display: flex; flex-direction: column; gap: 20px; }
.founder-card {
  background: #fff; border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow); border: 1.5px solid var(--border);
  text-align: center; transition: all 0.3s ease;
}
.founder-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.founder-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff; font-family: 'Baloo 2', cursive; font-size: 1.5rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; box-shadow: 0 4px 14px rgba(255,107,53,0.35);
}
.founder-card h3 { font-family: 'Baloo 2', cursive; font-size: 1.2rem; font-weight: 800; }
.founder-card p { color: var(--primary); font-weight: 700; font-size: 0.9rem; margin: 4px 0 8px; }
.founder-card small { color: var(--text-muted); font-size: 0.85rem; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { padding: 80px 24px; background: var(--bg); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px; margin-top: 48px;
}
.testimonial-card {
  background: #fff; border-radius: var(--radius); padding: 32px;
  box-shadow: var(--shadow); border: 1.5px solid var(--border);
  transition: all 0.3s ease;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.stars { font-size: 1.1rem; margin-bottom: 14px; }
.testimonial-card p { color: var(--text); font-style: italic; margin-bottom: 16px; line-height: 1.7; }
.testi-author { font-weight: 700; font-size: 0.88rem; color: var(--primary); }

/* ===== CONTACT ===== */
.contact-section { padding: 80px 24px; }
.contact-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px; margin-top: 48px;
}
.contact-card {
  background: #fff; border-radius: var(--radius); padding: 32px 24px;
  text-align: center; box-shadow: var(--shadow); border: 1.5px solid var(--border);
  transition: all 0.3s ease;
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.contact-icon { font-size: 2.5rem; margin-bottom: 14px; }
.contact-card h4 {
  font-family: 'Baloo 2', cursive; font-size: 1.1rem; font-weight: 700;
  margin-bottom: 8px;
}
.contact-card p { color: var(--text-muted); font-size: 0.9rem; margin: 2px 0; }
.contact-card a { color: var(--accent2); text-decoration: none; font-weight: 600; }
.contact-card a:hover { color: var(--primary); }

/* ===== FOOTER ===== */
.main-footer {
  background: var(--text); color: rgba(255,255,255,0.8); padding: 60px 24px 0;
}
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 40px;
}
.footer-logo {
  font-family: 'Baloo 2', cursive; font-size: 1.8rem; font-weight: 800;
  color: #fff; margin-bottom: 12px;
}
.footer-logo span { color: var(--secondary); }
.footer-brand p { font-size: 0.9rem; margin-bottom: 8px; line-height: 1.7; }
.footer-reg { font-size: 0.78rem !important; opacity: 0.6; }
.footer-links h4 {
  color: #fff; font-family: 'Baloo 2', cursive; font-size: 1.05rem;
  font-weight: 700; margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.9rem;
  transition: color 0.2s ease;
}
.footer-links a:hover { color: var(--secondary); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12); padding: 20px 24px;
  text-align: center; font-size: 0.82rem; color: rgba(255,255,255,0.5);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed; bottom: 28px; right: 28px;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--primary); color: #fff; border: none;
  font-size: 1.2rem; cursor: pointer; z-index: 999;
  box-shadow: 0 4px 16px rgba(255,107,53,0.4);
  transition: all 0.3s ease; display: none;
  align-items: center; justify-content: center;
}
.back-to-top.visible { display: flex; }
.back-to-top:hover { transform: translateY(-3px); background: var(--primary-dark); }

/* ===== TOAST ===== */
.toast {
  position: fixed; bottom: 90px; right: 28px;
  background: var(--text); color: #fff; padding: 14px 24px;
  border-radius: var(--radius-sm); z-index: 5000;
  font-weight: 700; font-size: 0.9rem; box-shadow: var(--shadow-lg);
  transform: translateY(20px); opacity: 0; transition: all 0.35s ease;
  max-width: 320px; border-left: 4px solid var(--accent);
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .bulk-inner, .about-inner, .enquiry-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .main-nav { display: none; }
  .hamburger { display: block; }
  .header-actions .btn-primary { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .bulk-visual { grid-template-columns: 1fr; }
  .founders-cards { flex-direction: row; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.2rem; }
  .register-box { padding: 32px 24px; }
}
@media (max-width: 480px) {
  .stats-inner { gap: 16px; }
  .stat-div { display: none; }
  .hero-cta { flex-direction: column; }
  .founders-cards { flex-direction: column; }
  .cart-drawer { width: 100%; right: -100%; }
}
