/* Base Global Styles */
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@600;700&family=Kalam:wght@700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --primary-navy: #141f36;
  --navy-hover: #1f2e4d;
  --primary-yellow: #f5a623;
  --yellow-hover: #e59815;
  --yellow-light: #fff8eb;
  --yellow-gold: #e69a19;
  
  --brand-green: #0f8a5f;
  --green-light: #e6f6ef;
  --brand-red: #e53e3e;
  --red-light: #fef2f2;
  
  --text-dark: #1e293b;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  
  --bg-page: #f8fafc;
  --bg-white: #ffffff;
  --border-color: #e2e8f0;
  --border-light: #f1f5f9;
  
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.07), 0 2px 4px -2px rgb(0 0 0 / 0.05);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.08), 0 4px 6px -4px rgb(0 0 0 / 0.04);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.04);
  --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.06);
  --shadow-card-hover: 0 12px 28px rgba(0, 0, 0, 0.12);
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 28px;
  --radius-pill: 9999px;
  
  --font-main: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-doodle: 'Caveat', 'Kalam', cursive;
}

/* User Explicit Requirement: Global zoom 85% */
html {
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-main);
  background-color: #ffffff;
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  overflow-x: hidden;
  /* Global zoom 85% requirement */
  zoom: 0.85;
}

/* Container */
.container {
  width: 100%;
  max-width: 1420px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Utilities */
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

input, select, textarea {
  font-family: inherit;
}

/* Doodle Font Class */
.font-doodle {
  font-family: var(--font-doodle);
}

/* Badges */
.badge-best-seller {
  background: #0f8a5f;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.2px;
}

.badge-discount {
  background: #dc2626;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.2px;
}

/* Keyframe animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInRight {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

@keyframes pulseGlow {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes floatSoft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.animate-fade-in {
  animation: fadeIn 0.3s ease-out forwards;
}

.animate-float {
  animation: floatSoft 4s ease-in-out infinite;
}


/* ==========================================================================
   EDUMART - PREMIUM E-COMMERCE THEME STYLES
   Pixel-perfect matching of the design with 85% global zoom
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. TOP ANNOUNCEMENT BAR
   -------------------------------------------------------------------------- */
.top-bar {
  background-color: #111a2e;
  color: #d1d5db;
  font-size: 12.5px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-bar-features {
  display: flex;
  align-items: center;
  gap: 28px;
}

.top-feature-item {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #cbd5e1;
  font-weight: 500;
}

.top-icon {
  color: #f5a623;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.top-link {
  color: #cbd5e1;
  font-size: 12.5px;
  font-weight: 500;
  transition: color 0.15s;
}

.top-link:hover {
  color: #ffffff;
}

.top-divider {
  color: #475569;
  font-size: 12px;
}

.currency-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #f8fafc;
  font-size: 12.5px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 4px;
}

.currency-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Dropdown menu common */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: var(--shadow-xl);
  padding: 6px;
  min-width: 140px;
  z-index: 100;
}

.cat-dropdown {
  left: 0;
  right: auto;
  min-width: 200px;
}

.dropdown-item {
  padding: 8px 12px;
  font-size: 13px;
  color: #334155;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.15s;
}

.dropdown-item:hover {
  background: #f8fafc;
  color: #0f172a;
  font-weight: 600;
}

.dropdown-item.active {
  background: #fff8eb;
  color: #d97706;
  font-weight: 700;
}


/* --------------------------------------------------------------------------
   2. MAIN HEADER
   -------------------------------------------------------------------------- */
.main-header {
  background: #ffffff;
  padding: 16px 0;
  border-bottom: 1px solid #f1f5f9;
}

.main-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* LOGO */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-title {
  font-size: 26px;
  font-weight: 800;
  color: #111a2e;
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.brand-tagline {
  font-size: 11px;
  font-weight: 600;
  color: #64748b;
  letter-spacing: 0.2px;
}

/* SEARCH FORM */
.search-form {
  flex: 1;
  max-width: 680px;
  display: flex;
  align-items: center;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: var(--radius-pill);
  padding: 4px 6px 4px 16px;
  transition: all 0.2s ease;
}

.search-form:focus-within {
  border-color: #f5a623;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.15);
}

.search-cat-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #475569;
  padding: 6px 12px 6px 0;
  border-right: 1px solid #cbd5e1;
  white-space: nowrap;
}

.search-input-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 12px;
}

.search-input {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  font-size: 13.5px;
  color: #1e293b;
}

.search-input::placeholder {
  color: #94a3b8;
}

.clear-search-btn {
  color: #94a3b8;
  padding: 4px;
}

.clear-search-btn:hover {
  color: #475569;
}

.search-submit-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-pill);
  background: #111a2e;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
}

.search-submit-btn:hover {
  background: #1e293b;
  transform: scale(1.04);
}

/* HEADER USER ACTIONS */
.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-shrink: 0;
}

.action-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 8px;
  border-radius: 12px;
  transition: background 0.15s;
}

.action-btn:hover {
  background: #f8fafc;
}

.action-icon-circle {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-pill);
  border: 1.5px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1e293b;
  position: relative;
  transition: all 0.2s;
}

.action-btn:hover .action-icon-circle {
  border-color: #cbd5e1;
  background: #ffffff;
}

.badge-count {
  position: absolute;
  top: -6px;
  right: -6px;
  font-size: 10.5px;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  padding: 0 4px;
  border: 2px solid #ffffff;
}

.wishlist-badge-count {
  background: #dc2626;
}

.cart-badge-count {
  background: #111a2e;
}

.action-text-col {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.25;
}

.action-label {
  font-size: 12.5px;
  color: #64748b;
  font-weight: 500;
}

.action-sub {
  font-size: 13.5px;
  color: #111a2e;
  font-weight: 700;
}

.text-red-fill {
  color: #dc2626;
}


/* --------------------------------------------------------------------------
   3. NAVIGATION BAR
   -------------------------------------------------------------------------- */
.nav-bar {
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  padding: 6px 0;
}

.nav-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ALL CATEGORIES BUTTON */
.all-categories-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f1f5f9;
  color: #1e293b;
  font-size: 13.5px;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  transition: all 0.2s;
}

.all-categories-btn:hover {
  background: #e2e8f0;
}

.nav-links-list {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-link {
  font-size: 14px;
  font-weight: 600;
  color: #475569;
  padding: 10px 2px;
  position: relative;
  transition: color 0.15s;
}

.nav-link:hover {
  color: #111a2e;
}

.nav-link.active {
  color: #111a2e;
  font-weight: 700;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #f5a623;
  border-radius: 2px;
}

/* DEALS BUTTON */
.deals-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #dc2626;
  font-size: 13.5px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: #fef2f2;
  transition: all 0.2s;
}

.deals-btn:hover {
  background: #fee2e2;
  transform: translateY(-1px);
}


/* --------------------------------------------------------------------------
   4. HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
  padding: 24px 0 32px 0;
  background: #ffffff;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
  gap: 40px;
  background: #f8faf9;
  border-radius: 36px;
  padding: 48px 56px;
  border: 1px solid #edf2f0;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 580px;
}

.hero-badge-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  color: #c2410c;
  letter-spacing: 1.2px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.hero-title {
  font-size: 54px;
  font-weight: 800;
  line-height: 1.12;
  color: #111a2e;
  letter-spacing: -1.2px;
  margin-bottom: 20px;
}

.highlight-yellow {
  color: #f5a623;
  position: relative;
  display: inline-block;
}

.hero-description {
  font-size: 16.5px;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 32px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 44px;
}

.btn-primary-navy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #111a2e;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 14px rgba(17, 26, 46, 0.25);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary-navy:hover {
  background: #1e293b;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(17, 26, 46, 0.35);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #ffffff;
  color: #1e293b;
  font-size: 15px;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  border: 1.5px solid #cbd5e1;
  transition: all 0.2s;
}

.btn-outline:hover {
  border-color: #94a3b8;
  background: #f8fafc;
}

/* HERO STATS ROW */
.hero-stats-row {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 24px;
  border-top: 1px solid #e2e8f0;
}

.stat-card {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-number {
  font-size: 24px;
  font-weight: 800;
  color: #111a2e;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.stat-label {
  font-size: 12.5px;
  color: #64748b;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: #e2e8f0;
}

/* HERO VISUAL RIGHT */
.hero-visual-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-image-card {
  position: relative;
  width: 100%;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}

.hero-main-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 28px;
  display: block;
}

/* HERO DOODLE OVERLAY */
.hero-doodle-overlay {
  position: absolute;
  top: 24px;
  left: 24px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  pointer-events: none;
}

.hero-doodle-text {
  display: flex;
  flex-direction: column;
  font-family: var(--font-doodle);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.1;
  color: #1e293b;
  transform: rotate(-6deg);
}

.doodle-line-1 { margin-left: 0; }
.doodle-line-2 { margin-left: 12px; }
.doodle-line-3 { margin-left: 24px; }
.doodle-heart { color: #e11d48; font-size: 18px; }

/* FLOATING GLASS BADGE */
.hero-floating-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.floating-badge-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-pill);
  background: #e6f6ef;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-badge-text {
  display: flex;
  flex-direction: column;
  font-size: 11px;
  color: #64748b;
  line-height: 1.2;
}

.floating-badge-text strong {
  font-size: 13px;
  color: #111a2e;
}

/* CAROUSEL DOTS */
.hero-dots-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-pill);
  background: #cbd5e1;
  cursor: pointer;
  transition: all 0.2s;
}

.hero-dot.active {
  width: 22px;
  background: #111a2e;
}


/* --------------------------------------------------------------------------
   5. SHOP BY CATEGORY SECTION
   -------------------------------------------------------------------------- */
.category-section {
  padding: 44px 0 36px 0;
}

.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 28px;
}

.section-heading {
  font-size: 28px;
  font-weight: 800;
  color: #111a2e;
  letter-spacing: -0.5px;
  margin-bottom: 4px;
}

.section-subheading {
  font-size: 14px;
  color: #64748b;
}

.view-all-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 700;
  color: #111a2e;
  transition: gap 0.2s, color 0.15s;
}

.view-all-link-btn:hover {
  color: #f5a623;
  gap: 9px;
}

/* CATEGORY 8-CARD GRID */
.category-cards-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 16px;
}

.category-item-card {
  background: #ffffff;
  border: 1.5px solid #f1f5f9;
  border-radius: 20px;
  padding: 20px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.category-item-card:hover {
  transform: translateY(-5px);
  border-color: #fcd34d;
  box-shadow: 0 10px 22px rgba(245, 166, 35, 0.12);
}

.category-item-card.selected {
  border-color: #f5a623;
  background: #fffdfa;
  box-shadow: 0 8px 20px rgba(245, 166, 35, 0.15);
}

.category-icon-bubble {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  font-size: 26px;
  transition: transform 0.2s;
}

.category-item-card:hover .category-icon-bubble {
  transform: scale(1.08);
}

.category-card-name {
  font-size: 13.5px;
  font-weight: 700;
  color: #111a2e;
  margin-bottom: 4px;
}

.category-card-count {
  font-size: 11px;
  font-weight: 500;
  color: #64748b;
}


/* --------------------------------------------------------------------------
   6. TRENDING PRODUCTS SECTION
   -------------------------------------------------------------------------- */
.trending-section {
  padding: 36px 0 48px 0;
}

.products-grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.product-card {
  background: #ffffff;
  border: 1.5px solid #f1f5f9;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: #e2e8f0;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.product-image-box {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  background: #f8fafc;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
  cursor: pointer;
}

.product-card:hover .product-main-img {
  transform: scale(1.04);
}

.product-badge-wrapper {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
}

.product-wishlist-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.2s;
}

.product-wishlist-btn:hover {
  transform: scale(1.1);
  background: #ffffff;
}

.product-quick-view-btn {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%) translateY(30px);
  background: rgba(17, 26, 46, 0.88);
  color: #ffffff;
  font-size: 11.5px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 3;
}

.product-card:hover .product-quick-view-btn {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.product-info-box {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-category-tag {
  font-size: 10.5px;
  font-weight: 700;
  color: #64748b;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.product-title-text {
  font-size: 14px;
  font-weight: 700;
  color: #111a2e;
  line-height: 1.35;
  margin-bottom: 8px;
  min-height: 38px;
  cursor: pointer;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.15s;
}

.product-title-text:hover {
  color: #f5a623;
}

.product-rating-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}

.stars-group {
  display: flex;
  align-items: center;
  gap: 2px;
}

.reviews-count {
  font-size: 12px;
  color: #64748b;
  font-weight: 500;
}

.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 14px;
}

.current-price {
  font-size: 18px;
  font-weight: 800;
  color: #111a2e;
}

.original-price {
  font-size: 13.5px;
  color: #94a3b8;
  text-decoration: line-through;
  font-weight: 500;
}

.add-to-cart-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #ffffff;
  color: #111a2e;
  font-size: 13.5px;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  border: 1.5px solid #cbd5e1;
  margin-top: auto;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.add-to-cart-btn:hover {
  background: #111a2e;
  color: #ffffff;
  border-color: #111a2e;
  transform: translateY(-1px);
}


/* --------------------------------------------------------------------------
   7. TRUST FEATURES BAR
   -------------------------------------------------------------------------- */
.trust-features-section {
  padding: 16px 0 36px 0;
}

.trust-features-card {
  background: #f8faf9;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 24px 36px;
}

.trust-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.trust-icon-circle {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-title {
  font-size: 14.5px;
  font-weight: 700;
  color: #111a2e;
  margin-bottom: 2px;
}

.trust-sub {
  font-size: 12.5px;
  color: #64748b;
  font-weight: 500;
}


/* --------------------------------------------------------------------------
   8. PROMO BANNERS DUAL
   -------------------------------------------------------------------------- */
.promo-banners-section {
  padding: 20px 0 48px 0;
}

.promo-banners-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.promo-card {
  border-radius: 28px;
  padding: 36px 40px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.promo-card-green {
  background: linear-gradient(135deg, #dcfce7 0%, #ecfdf5 100%);
  border: 1px solid #bbf7d0;
}

.promo-card-peach {
  background: linear-gradient(135deg, #ffedd5 0%, #fff7ed 100%);
  border: 1px solid #fed7aa;
}

.promo-tag-green {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 800;
  color: #15803d;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.promo-tag-orange {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 800;
  color: #c2410c;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.promo-title {
  font-size: 26px;
  font-weight: 800;
  color: #111a2e;
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.promo-desc {
  font-size: 13.5px;
  color: #475569;
  line-height: 1.5;
  margin-bottom: 24px;
}

.promo-btn-navy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #111a2e;
  color: #ffffff;
  font-size: 13.5px;
  font-weight: 700;
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 12px rgba(17, 26, 46, 0.2);
  transition: all 0.2s;
}

.promo-btn-navy:hover {
  background: #1e293b;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(17, 26, 46, 0.3);
}

.promo-visual-col {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.promo-img {
  width: 100%;
  max-height: 200px;
  object-fit: contain;
  border-radius: 16px;
}

.books-stack-img {
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.doodle-big-ideas {
  position: absolute;
  top: -24px;
  left: -20px;
  font-size: 18px;
  font-weight: 700;
  color: #1e293b;
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  transform: rotate(-8deg);
  pointer-events: none;
}

.doodle-curved-arrow {
  margin-top: 2px;
  margin-left: 12px;
}


/* --------------------------------------------------------------------------
   9. NEWSLETTER SECTION
   -------------------------------------------------------------------------- */
.newsletter-section {
  padding: 40px 0 60px 0;
  background: #ffffff;
}

.newsletter-inner-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 40px;
  max-width: 960px;
  margin: 0 auto;
}

.newsletter-content-col {
  text-align: center;
}

.newsletter-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  color: #0f8a5f;
  letter-spacing: 1.2px;
  margin-bottom: 8px;
}

.newsletter-heading {
  font-size: 32px;
  font-weight: 800;
  color: #111a2e;
  letter-spacing: -0.6px;
  margin-bottom: 10px;
}

.newsletter-sub {
  font-size: 14.5px;
  color: #64748b;
  margin-bottom: 28px;
}

.newsletter-form {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: var(--radius-pill);
  padding: 5px 6px 5px 18px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.newsletter-form:focus-within {
  border-color: #111a2e;
}

.newsletter-input-box {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
}

.newsletter-mail-icon {
  color: #94a3b8;
}

.newsletter-input {
  width: 100%;
  border: none;
  outline: none;
  font-size: 14px;
  color: #1e293b;
  background: transparent;
}

.newsletter-submit-btn {
  background: #111a2e;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  transition: all 0.2s;
}

.newsletter-submit-btn:hover {
  background: #1e293b;
}

.newsletter-success-box {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #f0fdf4;
  border: 1.5px solid #86efac;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  color: #166534;
  font-weight: 600;
  font-size: 14px;
}

.newsletter-doodle-col {
  display: flex;
  align-items: center;
  justify-content: center;
}

.paper-plane-wrapper {
  position: relative;
  width: 220px;
  height: 120px;
}

.airplane-dashed-trail {
  position: absolute;
  left: 0;
  bottom: 0;
}

.paper-airplane-svg {
  position: absolute;
  top: 10px;
  left: 90px;
  transform: rotate(15deg);
  color: #475569;
}

.airplane-doodle-text {
  position: absolute;
  top: 6px;
  right: -20px;
  display: flex;
  flex-direction: column;
  font-family: var(--font-doodle);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1;
  color: #475569;
  transform: rotate(4deg);
}


/* --------------------------------------------------------------------------
   10. SITE FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
  padding: 60px 0 24px 0;
}

.footer-main-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.3fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-brand-desc {
  font-size: 13.5px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 280px;
}

.footer-social-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-icon-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-pill);
  background: #f1f5f9;
  color: #475569;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.social-icon-btn:hover {
  background: #111a2e;
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-col-heading {
  font-size: 15px;
  font-weight: 700;
  color: #111a2e;
  margin-bottom: 18px;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-list a {
  font-size: 13.5px;
  color: #64748b;
  font-weight: 500;
  transition: color 0.15s, transform 0.15s;
  display: inline-block;
}

.footer-links-list a:hover {
  color: #111a2e;
  transform: translateX(3px);
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: #64748b;
  line-height: 1.4;
}

.contact-icon {
  color: #475569;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid #f1f5f9;
  font-size: 12.5px;
  color: #94a3b8;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-legal-links a {
  color: #94a3b8;
  transition: color 0.15s;
}

.footer-legal-links a:hover {
  color: #475569;
}


/* --------------------------------------------------------------------------
   11. DRAWERS & MODALS
   -------------------------------------------------------------------------- */
.drawer-backdrop, .modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.drawer-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 440px;
  background: #ffffff;
  z-index: 10001;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.15);
  animation: slideInRight 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid #e2e8f0;
}

.drawer-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.drawer-title {
  font-size: 18px;
  font-weight: 700;
  color: #111a2e;
}

.drawer-close-btn {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  background: #f1f5f9;
  transition: all 0.15s;
}

.drawer-close-btn:hover {
  background: #e2e8f0;
  color: #0f172a;
}

.shipping-progress-box {
  padding: 12px 24px;
  background: #fff8eb;
  border-bottom: 1px solid #fef3c7;
}

.shipping-progress-text {
  font-size: 12.5px;
  color: #92400e;
  margin-bottom: 6px;
}

.progress-bar-track {
  width: 100%;
  height: 6px;
  background: #fde68a;
  border-radius: var(--radius-pill);
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  transition: width 0.3s ease;
}

.drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-item-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f1f5f9;
}

.cart-item-img {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid #f1f5f9;
}

.cart-item-details {
  flex: 1;
}

.cart-item-cat {
  font-size: 10px;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
}

.cart-item-name {
  font-size: 13.5px;
  font-weight: 700;
  color: #111a2e;
  line-height: 1.3;
  margin-bottom: 4px;
}

.cart-item-price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 8px;
}

.cart-price {
  font-size: 15px;
  font-weight: 800;
  color: #111a2e;
}

.cart-original-price {
  font-size: 12px;
  color: #94a3b8;
  text-decoration: line-through;
}

.cart-qty-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.qty-stepper {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-pill);
  padding: 2px 8px;
}

.qty-btn {
  color: #475569;
  padding: 2px;
  display: flex;
  align-items: center;
}

.qty-btn:hover {
  color: #0f172a;
}

.qty-value {
  font-size: 13px;
  font-weight: 700;
  min-width: 16px;
  text-align: center;
}

.cart-item-delete-btn {
  color: #94a3b8;
  padding: 4px;
  transition: color 0.15s;
}

.cart-item-delete-btn:hover {
  color: #dc2626;
}

.wishlist-action-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 6px;
}

.wishlist-add-cart-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #111a2e;
  background: #f1f5f9;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  transition: all 0.15s;
}

.wishlist-add-cart-btn:hover {
  background: #111a2e;
  color: #ffffff;
}

.drawer-footer {
  padding: 20px 24px;
  border-top: 1px solid #e2e8f0;
  background: #f8fafc;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.summary-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13.5px;
  color: #64748b;
}

.summary-amount {
  font-weight: 700;
  color: #1e293b;
}

.summary-divider {
  height: 1px;
  background: #e2e8f0;
  margin: 4px 0;
}

.summary-total {
  font-size: 16px;
  font-weight: 800;
  color: #111a2e;
}

.total-amount {
  font-size: 20px;
  color: #111a2e;
}

.btn-checkout {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #111a2e;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  padding: 14px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 14px rgba(17, 26, 46, 0.25);
  transition: all 0.2s;
}

.btn-checkout:hover {
  background: #1e293b;
  transform: translateY(-2px);
}

.checkout-trust-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 11.5px;
  color: #0f8a5f;
  font-weight: 600;
}

.empty-drawer-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 16px;
  gap: 12px;
}

.empty-icon-circle {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-pill);
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* --------------------------------------------------------------------------
   MODALS (Quick View & Auth)
   -------------------------------------------------------------------------- */
.modal-card {
  background: #ffffff;
  border-radius: 24px;
  box-shadow: var(--shadow-xl);
  max-width: 780px;
  width: 92%;
  position: relative;
  overflow: hidden;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-pill);
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #475569;
  z-index: 10;
  transition: all 0.15s;
}

.modal-close-btn:hover {
  background: #e2e8f0;
  color: #0f172a;
}

/* Quick View Specific */
.quick-view-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.quick-view-img-col {
  background: #f8fafc;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.quick-view-img {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  border-radius: 16px;
}

.modal-badge {
  position: absolute;
  top: 20px;
  left: 20px;
}

.quick-view-info-col {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
}

.quick-view-title {
  font-size: 22px;
  font-weight: 800;
  color: #111a2e;
  line-height: 1.25;
  margin-bottom: 10px;
}

.modal-price-row {
  margin-bottom: 16px;
}

.modal-price {
  font-size: 24px;
}

.modal-orig-price {
  font-size: 16px;
}

.discount-pill-text {
  background: #fef2f2;
  color: #dc2626;
  font-size: 12px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
}

.quick-view-desc {
  font-size: 13.5px;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 18px;
}

.quick-view-features-box {
  background: #f8fafc;
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 24px;
}

.features-title {
  font-size: 12px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: #334155;
}

.quick-view-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.modal-add-cart-btn {
  flex: 1;
  padding: 12px;
}

.modal-wishlist-btn {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-pill);
  border: 1.5px solid #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
}

.modal-wishlist-btn:hover {
  border-color: #94a3b8;
  background: #f8fafc;
}

.modal-wishlist-btn.active {
  border-color: #dc2626;
  background: #fef2f2;
}

.modal-trust-footer {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #64748b;
}

/* Auth Modal Specific */
.auth-modal-card {
  max-width: 440px;
  padding: 40px 32px;
}

.auth-header {
  text-align: center;
  margin-bottom: 24px;
}

.auth-title {
  font-size: 22px;
  font-weight: 800;
  color: #111a2e;
  margin-bottom: 6px;
}

.auth-subtitle {
  font-size: 13px;
  color: #64748b;
  line-height: 1.5;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 12.5px;
  font-weight: 600;
  color: #334155;
}

.input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 14px;
  color: #94a3b8;
}

.input-with-icon input {
  width: 100%;
  padding: 12px 14px 12px 42px;
  border-radius: 12px;
  border: 1.5px solid #e2e8f0;
  font-size: 14px;
  outline: none;
  transition: all 0.2s;
}

.input-with-icon input:focus {
  border-color: #f5a623;
  box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.15);
}

.btn-block {
  width: 100%;
}

.auth-footer-toggle {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  color: #64748b;
}

.auth-switch-btn {
  color: #f5a623;
  font-weight: 700;
  text-decoration: underline;
}


/* --------------------------------------------------------------------------
   TOAST NOTIFICATION
   -------------------------------------------------------------------------- */
.toast-popup {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  padding: 14px 18px;
  border-radius: 14px;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10000;
  max-width: 400px;
}

.toast-message {
  font-size: 13.5px;
  font-weight: 600;
  color: #1e293b;
  flex: 1;
}

.toast-close-btn {
  color: #94a3b8;
}

.toast-close-btn:hover {
  color: #475569;
}


/* --------------------------------------------------------------------------
   INSTAGRAM REELS SECTION
   -------------------------------------------------------------------------- */
.insta-reels-section {
  padding: 48px 0 36px 0;
  background: #ffffff;
}

.insta-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fdf2f8;
  color: #db2777;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.8px;
  margin-bottom: 8px;
}

.insta-icon-svg {
  color: #db2777;
}

.btn-follow-insta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #ffffff;
  font-size: 13.5px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 14px rgba(220, 39, 67, 0.25);
  transition: all 0.25s ease;
}

.btn-follow-insta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 39, 67, 0.35);
}

.reels-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-add-reel-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  color: #111a2e;
  border: 1.5px solid #cbd5e1;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  transition: all 0.2s;
}

.btn-add-reel-outline:hover {
  border-color: #111a2e;
  background: #f8fafc;
}

/* INSTA ID AUTO-FETCH BAR */
.insta-fetch-bar-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 20px;
  padding: 16px 22px;
  margin: 18px 0 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
}

.fetch-bar-info {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.live-status-indicator {
  display: flex;
  align-items: center;
  gap: 7px;
}

.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #16a34a;
}

.pulse-dot {
  box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.7);
  animation: pulseGreen 1.8s infinite;
}

@keyframes pulseGreen {
  0% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.7); }
  70% { box-shadow: 0 0 0 8px rgba(22, 163, 74, 0); }
  100% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0); }
}

.live-text {
  font-size: 12.5px;
  font-weight: 700;
  color: #111a2e;
}

.connected-handle-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #e6f6ef;
  color: #0f8a5f;
  font-size: 12.5px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}

.connected-handle-badge strong {
  font-weight: 800;
  color: #0a6c49;
}

.sync-timestamp {
  font-size: 12px;
  color: #94a3b8;
}

.fetch-input-form {
  display: flex;
  align-items: center;
  gap: 10px;
}

.handle-input-box {
  display: flex;
  align-items: center;
  background: #f8fafc;
  border: 1.5px solid #cbd5e1;
  border-radius: var(--radius-pill);
  padding: 2px 14px;
  min-width: 280px;
  transition: all 0.2s;
}

.handle-input-box:focus-within {
  border-color: #db2777;
  box-shadow: 0 0 0 3px rgba(219, 39, 119, 0.12);
  background: #ffffff;
}

.handle-at-symbol {
  color: #94a3b8;
  font-size: 14px;
  font-weight: 700;
  margin-right: 4px;
}

.handle-input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 13.5px;
  color: #111a2e;
  font-weight: 600;
  width: 100%;
  padding: 8px 0;
}

.btn-fetch-sync {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #111a2e;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-fetch-sync:hover:not(:disabled) {
  background: #1e293b;
  transform: translateY(-1px);
}

.btn-fetch-sync.loading {
  background: #64748b;
  cursor: not-allowed;
}

.spin-icon {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* OVERLAY CONTROLS */
.reel-video-overlay-controls {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 5;
}

.reel-playback-toggle-btn, .reel-audio-toggle-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-pill);
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.15s;
}

.reel-playback-toggle-btn:hover, .reel-audio-toggle-btn:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: scale(1.08);
}

.open-in-instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #db2777;
  font-size: 12.5px;
  font-weight: 700;
  text-decoration: none;
}

.open-in-instagram-link:hover {
  text-decoration: underline;
}

.add-reel-modal-card {
  max-width: 480px;
  padding: 36px 30px;
}

@media (max-width: 900px) {
  .insta-fetch-bar-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .handle-input-box {
    min-width: 200px;
  }
}

.reels-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 12px;
}

.reel-card {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: #0f172a;
}

.reel-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.16);
}

.reel-media-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.reel-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.reel-card:hover .reel-thumbnail {
  transform: scale(1.05);
}

.reel-dark-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0) 35%,
    rgba(0, 0, 0, 0.35) 60%,
    rgba(0, 0, 0, 0.88) 100%
  );
  pointer-events: none;
}

.reel-top-row {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 2;
}

.reel-handle-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.reel-views-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: var(--radius-pill);
}

.reel-play-btn-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all 0.25s ease;
  z-index: 2;
}

.reel-card:hover .reel-play-btn-circle {
  transform: translate(-50%, -50%) scale(1.15);
  background: rgba(255, 255, 255, 0.4);
}

.play-icon-offset {
  margin-left: 3px;
}

.reel-bottom-info {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.reel-caption-text {
  color: #ffffff;
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

.reel-audio-row {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #cbd5e1;
  font-size: 11px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.reel-meta-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 4px;
}

.reel-action-icon-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(6px);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  transition: all 0.2s;
}

.reel-action-icon-btn:hover {
  background: rgba(0, 0, 0, 0.6);
}

.reel-action-icon-btn.liked {
  color: #f87171;
}

.reel-tag-product-btn {
  font-size: 11px;
  font-weight: 700;
  color: #ffffff;
  background: rgba(245, 166, 35, 0.9);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

/* REEL MODAL PLAYER */
.reel-modal-container {
  background: #ffffff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  max-width: 820px;
  width: 90%;
  position: relative;
}

.reel-modal-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.reel-modal-visual {
  position: relative;
  background: #000000;
  aspect-ratio: 9 / 16;
  max-height: 580px;
}

.reel-modal-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reel-simulated-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
}

.progress-anim-bar {
  height: 100%;
  background: #f5a623;
  width: 70%;
  animation: pulseGlow 2s infinite;
}

.reel-modal-sidebar {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #ffffff;
}

.reel-modal-author-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f1f5f9;
}

.author-avatar-circle img {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-pill);
  object-fit: cover;
}

.modal-author-name {
  font-size: 15px;
  font-weight: 700;
  color: #111a2e;
}

.modal-audio-track {
  font-size: 11.5px;
  color: #64748b;
}

.btn-follow-small {
  margin-left: auto;
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  background: #111a2e;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}

.modal-caption-text {
  font-size: 14px;
  color: #334155;
  line-height: 1.5;
}

.modal-stats-strip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid #f1f5f9;
  border-bottom: 1px solid #f1f5f9;
}

.stat-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #475569;
}

.stat-pill-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #475569;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 8px;
  transition: all 0.15s;
}

.stat-pill-btn:hover {
  background: #f8fafc;
}

.stat-pill-btn.liked {
  color: #dc2626;
}

.featured-in-reel-box {
  background: #f8faf9;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 14px;
  margin-top: auto;
}

.featured-tag-label {
  font-size: 11px;
  font-weight: 700;
  color: #0f8a5f;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.featured-product-mini-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.featured-mini-img {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  object-fit: cover;
}

.featured-mini-info {
  flex: 1;
}

.featured-mini-title {
  font-size: 13px;
  font-weight: 700;
  color: #111a2e;
  line-height: 1.2;
}

.featured-mini-price {
  font-size: 14px;
  font-weight: 800;
  color: #f5a623;
  margin-top: 2px;
}

.btn-add-mini-cart {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #111a2e;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  transition: all 0.15s;
}

.btn-add-mini-cart:hover {
  background: #1e293b;
}


/* --------------------------------------------------------------------------
   SOCIAL MEDIA SECTION
   -------------------------------------------------------------------------- */
.social-media-section {
  padding: 50px 0 40px 0;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
}

.social-header-center {
  max-width: 680px;
  margin: 0 auto 36px auto;
  text-align: center;
}

.social-tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff8eb;
  color: #b45309;
  font-size: 11.5px;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.8px;
  margin-bottom: 10px;
}

.social-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.social-channel-card {
  background: #ffffff;
  border: 1.5px solid #f1f5f9;
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-channel-card:hover {
  transform: translateY(-6px);
  border-color: #cbd5e1;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.social-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.social-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.social-followers-badge {
  font-size: 12px;
  font-weight: 700;
  color: #0f8a5f;
  background: #e6f6ef;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.social-card-body {
  flex: 1;
  margin-bottom: 20px;
}

.social-channel-title {
  font-size: 17px;
  font-weight: 800;
  color: #111a2e;
  margin-bottom: 2px;
}

.social-handle-text {
  font-size: 12.5px;
  font-weight: 600;
  color: #64748b;
  display: block;
  margin-bottom: 10px;
}

.social-channel-desc {
  font-size: 13px;
  color: #475569;
  line-height: 1.5;
}

.social-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: #f8fafc;
  color: #111a2e;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  border: 1.5px solid #e2e8f0;
  transition: all 0.2s;
}

.social-channel-card:hover .social-action-btn {
  background: #111a2e;
  color: #ffffff;
  border-color: #111a2e;
}

/* UGC HASHTAG BANNER */
.ugc-hashtag-banner {
  background: linear-gradient(135deg, #111a2e 0%, #1e293b 100%);
  border-radius: 28px;
  padding: 36px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(17, 26, 46, 0.2);
}

.ugc-tag {
  font-size: 11.5px;
  font-weight: 800;
  color: #f5a623;
  letter-spacing: 1.2px;
  display: block;
  margin-bottom: 6px;
}

.ugc-title {
  font-size: 26px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
}

.highlight-tag {
  color: #f5a623;
}

.ugc-desc {
  font-size: 14px;
  color: #cbd5e1;
  max-width: 620px;
  line-height: 1.6;
}

.ugc-btn {
  background: #f5a623;
  color: #111a2e;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 800;
  padding: 13px 24px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 14px rgba(245, 166, 35, 0.3);
}

.ugc-btn:hover {
  background: #ffffff;
  color: #111a2e;
}


/* --------------------------------------------------------------------------
   12. MOBILE NAVIGATION DRAWER & MOBILE BOTTOM BAR
   -------------------------------------------------------------------------- */

/* DESKTOP / MOBILE VISIBILITY TOGGLES */
.mobile-menu-toggle-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  color: #111a2e;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.mobile-bottom-nav {
  display: none;
}

/* MOBILE SLIDE-OUT DRAWER */
.mobile-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(5px);
  z-index: 10000;
  display: flex;
}

.mobile-drawer-panel {
  width: 84%;
  max-width: 340px;
  height: 100%;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  box-shadow: 10px 0 30px rgba(0, 0, 0, 0.2);
  animation: slideInLeft 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}

@keyframes slideInLeft {
  from { transform: translateX(-100%); }
  to { transform: translateX(0); }
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid #f1f5f9;
}

.mobile-user-signin-box {
  padding: 16px 20px;
  background: #f8faf9;
  border-bottom: 1px solid #edf2f0;
}

.mobile-auth-trigger-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  text-align: left;
}

.mobile-user-avatar {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-pill);
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-drawer-section {
  padding: 18px 20px;
  border-bottom: 1px solid #f1f5f9;
}

.mobile-section-title {
  font-size: 11px;
  font-weight: 800;
  color: #94a3b8;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

.mobile-cat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.mobile-cat-item-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  color: #1e293b;
  text-align: left;
  transition: all 0.15s;
}

.mobile-cat-item-btn:hover, .mobile-cat-item-btn.active {
  background: #fff8eb;
  border-color: #f5a623;
  color: #d97706;
}

.mobile-cat-emoji {
  font-size: 16px;
}

.mobile-nav-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav-item {
  width: 100%;
  text-align: left;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 13.5px;
  font-weight: 600;
  color: #334155;
  background: #f8fafc;
  transition: all 0.15s;
}

.mobile-nav-item:hover {
  background: #f1f5f9;
  color: #111a2e;
}

.mobile-nav-item.deals-highlight {
  background: #fef2f2;
  color: #dc2626;
  font-weight: 700;
}

.mobile-support-strip {
  padding: 16px 20px;
  margin-top: auto;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-support-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: #64748b;
  font-weight: 600;
}

.mobile-support-item a {
  color: #111a2e;
}


/* --------------------------------------------------------------------------
   13. MOBILE-FIRST RESPONSIVE BREAKPOINTS
   -------------------------------------------------------------------------- */

/* TABLETS & MEDIUM SCREENS (max-width: 1200px) */
@media (max-width: 1200px) {
  .products-grid-5 {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .category-cards-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    padding: 36px;
    gap: 32px;
  }
  .footer-main-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

/* TABLETS & MOBILE PHONES (max-width: 768px) */
@media (max-width: 768px) {
  /* On mobile screens, disable zoom: 0.85 so viewport, fonts, and inputs scale naturally without blur or pinch issues */
  body {
    zoom: 1 !important;
    padding-bottom: 74px !important; /* Space for sticky bottom navigation */
  }

  .desktop-only {
    display: none !important;
  }

  .mobile-menu-toggle-btn {
    display: flex;
  }

  /* TOP ANNOUNCEMENT BAR */
  .top-bar {
    font-size: 11px;
    padding: 6px 0;
  }
  .top-bar-features {
    display: none;
  }
  .top-bar-inner {
    justify-content: center;
  }

  /* MAIN HEADER ROW */
  .main-header {
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  }

  .main-header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
  }

  .brand-logo {
    justify-self: center;
  }

  .brand-title {
    font-size: 22px;
  }

  .search-form {
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 4px;
    padding: 3px 6px 3px 14px;
  }

  .search-input {
    font-size: 13px;
  }

  .header-actions {
    gap: 8px;
  }

  .action-icon-circle {
    width: 36px;
    height: 36px;
  }

  /* HERO SECTION */
  .hero-section {
    padding: 12px 0 24px 0;
  }

  .hero-grid {
    padding: 24px 20px;
    border-radius: 24px;
    gap: 24px;
  }

  .hero-badge-tag {
    font-size: 11px;
    margin-bottom: 10px;
  }

  .hero-title {
    font-size: clamp(28px, 6.8vw, 36px);
    line-height: 1.15;
    margin-bottom: 14px;
  }

  .hero-description {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 24px;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    gap: 10px;
    margin-bottom: 28px;
  }

  .btn-primary-navy, .btn-outline {
    width: 100%;
    padding: 12px 20px;
    font-size: 14px;
  }

  .hero-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding-top: 16px;
    text-align: center;
  }

  .stat-card {
    align-items: center;
  }

  .stat-number {
    font-size: 18px;
  }

  .stat-label {
    font-size: 11px;
  }

  .stat-divider {
    display: none;
  }

  .hero-main-img {
    height: 280px;
    border-radius: 20px;
  }

  .hero-doodle-overlay {
    top: 12px;
    left: 12px;
  }

  .hero-doodle-text {
    font-size: 16px;
  }

  .hero-floating-badge {
    bottom: 12px;
    right: 12px;
    padding: 6px 12px;
  }

  .floating-badge-text strong {
    font-size: 11.5px;
  }

  /* CATEGORY SECTION */
  .category-section {
    padding: 28px 0 24px 0;
  }

  .section-heading {
    font-size: 22px;
  }

  .section-subheading {
    font-size: 12.5px;
  }

  .category-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .category-item-card {
    padding: 14px 8px;
    border-radius: 16px;
  }

  .category-icon-bubble {
    width: 46px;
    height: 46px;
    font-size: 20px;
    margin-bottom: 8px;
  }

  .category-card-name {
    font-size: 12.5px;
  }

  /* TRENDING PRODUCTS */
  .trending-section {
    padding: 24px 0 32px 0;
  }

  .products-grid-5 {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .product-card {
    border-radius: 16px;
  }

  .product-info-box {
    padding: 12px;
  }

  .product-title-text {
    font-size: 12.5px;
    min-height: 34px;
    margin-bottom: 4px;
  }

  .current-price {
    font-size: 15px;
  }

  .original-price {
    font-size: 11.5px;
  }

  .add-to-cart-btn {
    padding: 8px 12px;
    font-size: 12px;
    min-height: 42px;
  }

  /* TRUST FEATURES */
  .trust-features-section {
    padding: 12px 0 24px 0;
  }

  .trust-features-card {
    padding: 18px 16px;
    border-radius: 18px;
  }

  .trust-features-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .trust-icon-circle {
    width: 42px;
    height: 42px;
  }

  .trust-title {
    font-size: 13.5px;
  }

  /* PROMO BANNERS */
  .promo-banners-section {
    padding: 16px 0 28px 0;
  }

  .promo-banners-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .promo-card {
    padding: 24px 20px;
    grid-template-columns: 1fr;
    border-radius: 20px;
    text-align: center;
  }

  .promo-title {
    font-size: 20px;
  }

  .promo-visual-col {
    order: -1;
  }

  .promo-img {
    max-height: 140px;
  }

  /* REELS SECTION */
  .insta-reels-section {
    padding: 28px 0 24px 0;
  }

  .reels-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .reels-header-actions {
    width: 100%;
    justify-content: space-between;
  }

  .btn-add-reel-outline, .btn-follow-insta {
    flex: 1;
    justify-content: center;
    font-size: 12px;
    padding: 9px 12px;
  }

  .insta-fetch-bar-card {
    flex-direction: column;
    padding: 14px 16px;
    gap: 12px;
  }

  .fetch-input-form {
    width: 100%;
    flex-direction: column;
  }

  .handle-input-box {
    width: 100%;
    min-width: unset;
  }

  .btn-fetch-sync {
    width: 100%;
    justify-content: center;
  }

  .reels-grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .reel-card {
    border-radius: 18px;
  }

  .reel-modal-container {
    width: 96%;
    border-radius: 20px;
  }

  .reel-modal-content {
    grid-template-columns: 1fr;
    max-height: 85vh;
    overflow-y: auto;
  }

  .reel-modal-visual {
    max-height: 380px;
  }

  .reel-modal-sidebar {
    padding: 20px;
  }

  /* SOCIAL COMMUNITY SECTION */
  .social-media-section {
    padding: 32px 0 24px 0;
  }

  .social-cards-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .ugc-hashtag-banner {
    flex-direction: column;
    padding: 24px 20px;
    text-align: center;
  }

  .ugc-btn {
    width: 100%;
    justify-content: center;
  }

  /* NEWSLETTER SECTION */
  .newsletter-section {
    padding: 28px 0 36px 0;
  }

  .newsletter-inner-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .newsletter-doodle-col {
    display: none;
  }

  .newsletter-heading {
    font-size: 24px;
  }

  .newsletter-form {
    flex-direction: column;
    padding: 12px;
    border-radius: 20px;
    gap: 10px;
  }

  .newsletter-submit-btn {
    width: 100%;
  }

  /* SITE FOOTER */
  .site-footer {
    padding: 40px 0 20px 0;
  }

  .footer-main-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .footer-col-brand, .footer-col-contact {
    grid-column: 1 / -1;
  }

  .footer-bottom-bar {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  /* DRAWERS & MODALS ON MOBILE */
  .drawer-panel {
    max-width: 100%;
    width: 100%;
  }

  .drawer-footer {
    padding: 16px 20px calc(24px + env(safe-area-inset-bottom, 0px)) 20px;
  }

  .modal-card {
    width: 95%;
    max-height: 92vh;
    border-radius: 20px;
  }

  .quick-view-grid {
    grid-template-columns: 1fr;
  }

  /* STICKY MOBILE BOTTOM NAVIGATION BAR */
  .mobile-bottom-nav {
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: calc(64px + env(safe-area-inset-bottom, 0px));
    padding-bottom: env(safe-area-inset-bottom, 0px);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    border-top: 1px solid #e2e8f0;
    z-index: 990;
    box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.08);
  }

  .bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    color: #475569;
    font-size: 10.5px;
    font-weight: 600;
    padding: 6px 12px;
    flex: 1;
    min-height: 48px;
    transition: color 0.15s;
  }

  .bottom-nav-item:hover, .bottom-nav-item:active {
    color: #111a2e;
  }

  .reels-nav-item .reels-nav-icon-wrapper {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(220, 39, 67, 0.35);
  }

  .nav-icon-relative {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .bottom-nav-badge {
    position: absolute;
    top: -6px;
    right: -10px;
    background: #dc2626;
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    min-width: 16px;
    height: 16px;
    border-radius: var(--radius-pill);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3px;
    border: 1.5px solid #ffffff;
  }

  .cart-badge-num {
    background: #111a2e;
  }
}

/* VERY SMALL PHONES (max-width: 380px) */
@media (max-width: 380px) {
  .category-cards-grid {
    grid-template-columns: 1fr 1fr;
  }
  .products-grid-5 {
    grid-template-columns: 1fr;
  }
  .reels-grid-4 {
    grid-template-columns: 1fr;
  }
}




/* WordPress Menu Flex Compatibility */
.nav-links-list,
.nav-links-row ul,
.main-menu-ul {
  display: flex !important;
  align-items: center !important;
  gap: 28px !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.nav-links-list li,
.nav-links-row ul li,
.main-menu-ul li {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.nav-link,
.nav-links-row ul a,
.main-menu-ul a {
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #475569 !important;
  padding: 10px 2px !important;
  position: relative !important;
  transition: color 0.15s !important;
  text-decoration: none !important;
  display: inline-block !important;
}

.nav-link:hover,
.nav-links-row ul a:hover,
.main-menu-ul a:hover {
  color: #111a2e !important;
}

.nav-link.active,
.nav-links-row ul .current-menu-item a,
.main-menu-ul .current-menu-item a {
  color: #111a2e !important;
  font-weight: 700 !important;
}

.nav-link.active::after,
.nav-links-row ul .current-menu-item a::after,
.main-menu-ul .current-menu-item a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #f5a623;
  border-radius: 2px;
}
