/* ============================================
   KUMAR SNACKS — About Us Page CSS (about.css)
   ============================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Pacifico&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --primary:       #F5A623;
  --primary-dark:  #E8900A;
  --primary-light: #FFC94D;
  --accent:        #FF6B35;
  --black:         #1A1A1A;
  --dark:          #2D2D2D;
  --dark-bg:       #1E1E1E;
  --dark-card:     #252525;
  --text:          #333333;
  --text-muted:    #777777;
  --white:         #FFFFFF;
  --light-bg:      #FFF9F0;
  --border:        #F0E6D3;
  --success:       #22C55E;
  --shadow-sm:     0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:     0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg:     0 8px 40px rgba(0,0,0,0.18);
  --radius:        14px;
  --radius-sm:     8px;
  --radius-pill:   100px;
  --transition:    0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ---------- Container ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
.announce-bar {
  background: var(--black);
  color: var(--white);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  font-weight: 500;
  gap: 16px;
  position: relative;
  z-index: 100;
}
.announce-bar__left { display: flex; align-items: center; gap: 8px; }
.announce-bar__right { display: flex; align-items: center; gap: 10px; }
.countdown { display: flex; align-items: center; gap: 4px; }
.cd-block {
  background: var(--primary);
  color: var(--black);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 2px 6px;
  border-radius: 4px;
  min-width: 26px;
  text-align: center;
}
.cd-sep { color: var(--primary); font-weight: 700; }

/* ============================================
   HEADER
   ============================================ */
.header {
  position: sticky;
  top: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  z-index: 200;
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: var(--shadow-md); }
.header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 10px; }
.logo__avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 2px 10px rgba(245,166,35,0.3);
}
.logo__avatar span { line-height: 1; }
.logo__text { display: flex; flex-direction: column; line-height: 1.1; }
.logo__name {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.5px;
}
.logo__sub {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--primary);
  text-transform: lowercase;
  letter-spacing: 1px;
}

/* Nav */
.nav { display: flex; align-items: center; gap: 4px; flex: 1; justify-content: center; }
.nav__link {
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  position: relative;
  white-space: nowrap;
}
.nav__link:hover, .nav__link.active { color: var(--primary); }
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px; right: 14px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav__link:hover::after, .nav__link.active::after { transform: scaleX(1); }
.nav__arrow { font-size: 0.7rem; }

/* Header Actions */
.header__actions { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.icon-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--dark);
  transition: all var(--transition);
  position: relative;
}
.icon-btn:hover { background: var(--light-bg); color: var(--primary); }
.cart-btn { position: relative; }
.cart-count {
  position: absolute;
  top: -2px; right: -2px;
  background: var(--primary);
  color: var(--black);
  font-size: 0.65rem;
  font-weight: 700;
  min-width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
  border: 2px solid var(--white);
  transform: scale(0);
  transition: transform var(--transition);
}
.cart-count.visible { transform: scale(1); }

/* Burger */
.burger {
  display: none;
  flex-direction: column; gap: 5px;
  padding: 8px;
}
.burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--transition);
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 12px 0;
}
.mobile-nav.open { display: flex; }
.mobile-nav__link {
  padding: 12px 20px;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}
.mobile-nav__link:hover { background: var(--light-bg); color: var(--primary); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.9rem;
  font-family: inherit;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}
.btn--primary {
  background: var(--primary);
  color: var(--black);
}
.btn--primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,166,35,0.4);
}
.btn-arrow { font-size: 1.2rem; transition: transform var(--transition); }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ============================================
   ABOUT HERO
   ============================================ */
.about-hero {
  background: var(--light-bg);
  padding: 60px 0 85px;
  position: relative;
  overflow: hidden;
}
.about-hero__bg {
  position: absolute;
  width: 650px; height: 650px;
  background: radial-gradient(circle, rgba(245,166,35,0.15) 0%, transparent 70%);
  top: -120px; right: -120px;
  border-radius: 50%;
  pointer-events: none;
}
.about-hero__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 50px;
}
.about-hero__tag {
  font-family: 'Pacifico', cursive;
  color: var(--primary-dark);
  font-size: 1.4rem;
  margin-bottom: 12px;
  display: inline-block;
}
.about-hero__title {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 900;
  color: var(--black);
  line-height: 1.15;
  margin-bottom: 16px;
}
.about-hero__desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 30px;
  line-height: 1.75;
}
.highlight {
  color: var(--primary);
  position: relative;
}

/* Hero Visual */
.about-hero__visual {
  display: flex;
  justify-content: center;
  position: relative;
}
.about-hero__mascot-wrap {
  position: relative;
  width: 380px;
  height: 380px;
}
.about-hero__blob {
  position: absolute;
  width: 330px; height: 330px;
  background: radial-gradient(circle at 40% 40%, var(--primary-light) 0%, var(--primary) 60%, var(--primary-dark) 100%);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  box-shadow: var(--shadow-md);
}

/* Mascot Wrapper */
.mascot-wrapper {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.mascot-avatar {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mascot-face {
  width: 120px; height: 130px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mascot-face__bg {
  width: 110px; height: 110px;
  background: linear-gradient(145deg, #FDBCAD, #F4956A);
  border-radius: 50%;
  position: absolute;
  top: 15px;
}
.mascot-hair {
  width: 112px; height: 55px;
  background: #1a1a1a;
  border-radius: 55px 55px 10px 10px;
  position: absolute;
  top: 5px; left: 4px;
  z-index: 2;
}
.mascot-beard {
  width: 90px; height: 40px;
  background: #1a1a1a;
  border-radius: 0 0 45px 45px;
  position: absolute;
  bottom: 6px;
  z-index: 2;
}
.mascot-glasses {
  width: 90px; height: 18px;
  border-top: 3px solid #1a1a1a;
  position: absolute;
  top: 54px;
  z-index: 3;
}
.mascot-glasses::before, .mascot-glasses::after {
  content: '';
  position: absolute;
  width: 32px; height: 22px;
  border: 3px solid #1a1a1a;
  border-radius: 6px;
  top: -3px;
  background: rgba(150, 220, 255, 0.3);
}
.mascot-glasses::before { left: 2px; }
.mascot-glasses::after { right: 2px; }
.mascot-eyes {
  position: absolute;
  top: 52px;
  display: flex; gap: 26px;
  z-index: 4;
}
.mascot-eye {
  width: 12px; height: 14px;
  background: #1a1a1a;
  border-radius: 50%;
}
.mascot-smile {
  width: 30px; height: 12px;
  border-bottom: 3px solid #c0553a;
  border-radius: 0 0 30px 30px;
  position: absolute;
  bottom: 22px;
  z-index: 4;
}
.mascot-body {
  position: relative;
  margin-top: -5px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mascot-shirt {
  width: 130px; height: 100px;
  background: linear-gradient(145deg, #FFD54F, #F5A623);
  border-radius: 20px 20px 10px 10px;
  display: flex; align-items: center; justify-content: center;
  z-index: 1;
}
.mascot-shirt__text { font-size: 1.4rem; font-weight: 900; color: var(--white); letter-spacing: 2px; }
.mascot-arms { position: absolute; width: 175px; top: 15px; display: flex; justify-content: space-between; }
.mascot-arm {
  width: 22px; height: 70px;
  background: linear-gradient(145deg, #FDBCAD, #F4956A);
  border-radius: 11px;
}

/* Floating food items */
.hero__food-float {
  position: absolute;
  font-size: 2.2rem;
  animation: floatFood 4s ease-in-out infinite;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.2));
  z-index: 3;
}
.hero__food-float--pizza  { top: 5%; left: 5%; animation-delay: 0s; }
.hero__food-float--burger { top: 5%; right: 5%; animation-delay: 1.1s; }
.hero__food-float--fries  { bottom: 15%; left: 3%; animation-delay: 2.2s; }
.hero__food-float--sandwich { bottom: 10%; right: 8%; animation-delay: 1.7s; }
@keyframes floatFood {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50%       { transform: translateY(-15px) rotate(5deg); }
}

/* ============================================
   STORY SECTION
   ============================================ */
.story-section {
  padding: 80px 0;
  background: var(--white);
}
.story__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.story__tag {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-dark);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  display: inline-block;
}
.story__title {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 900;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 20px;
}
.story__desc {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 28px;
}
.story__signature {
  display: flex;
  flex-direction: column;
}
.sig-name {
  font-family: 'Pacifico', cursive;
  font-size: 1.8rem;
  color: var(--black);
  margin-bottom: -5px;
}
.sig-title {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* Story Blackboard visual */
.story__visual {
  display: flex;
  justify-content: center;
}
.food-blackboard {
  width: 100%;
  max-width: 440px;
  background: var(--light-bg);
  border-radius: var(--radius);
  padding: 30px 24px;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.blackboard-frame {
  background: #5d4037;
  padding: 12px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  width: 100%;
}
.blackboard-board {
  background: #253328;
  color: #fff;
  border-radius: 4px;
  padding: 24px 16px;
  text-align: center;
  border: 2px dashed rgba(255,255,255,0.2);
}
.blackboard-title {
  font-family: 'Pacifico', cursive;
  font-size: 1.9rem;
  color: var(--primary-light);
  line-height: 1.3;
  margin-bottom: 12px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}
.blackboard-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: rgba(255,255,255,0.08);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  display: inline-flex;
}
.bb-avatar { font-size: 1.2rem; }
.bb-sub { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; }

.food-tray {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
  font-size: 2.2rem;
  background: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
}
.tray-item {
  transition: transform var(--transition);
  cursor: pointer;
}
.tray-item:hover {
  transform: translateY(-8px) scale(1.15);
}

/* ============================================
   CORE BADGES GRID
   ============================================ */
.core-badges-section {
  padding: 50px 0;
  background: var(--light-bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.badges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.badge-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.badge-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}
.badge-item__icon {
  font-size: 2.3rem;
  line-height: 1;
}
.badge-item__content h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 6px;
}
.badge-item__content p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============================================
   MISSION & STATS
   ============================================ */
.mission-section {
  padding: 85px 0;
  background: var(--white);
}
.mission__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.1fr;
  gap: 40px;
  align-items: center;
}
.mission__tag {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-dark);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  display: inline-block;
}
.mission__title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 900;
  color: var(--black);
  line-height: 1.25;
  margin-bottom: 18px;
}
.mission__desc {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 12px;
}
.doodle-line {
  width: 140px;
  height: 20px;
}

/* Stats list */
.mission__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.mission__stats .stat-card {
  background: var(--light-bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.mission__stats .stat-card:hover {
  transform: translateY(-2px);
  border-color: var(--primary);
}
.stat-card__icon {
  font-size: 2rem;
  line-height: 1;
}
.stat-card__info h3 {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--black);
  line-height: 1.2;
}
.stat-card__info p {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* Apron Mascot visual card */
.mission__visual {
  display: flex;
  justify-content: center;
}
.apron-mascot-card {
  width: 100%;
  max-width: 320px;
  background: var(--dark-bg);
  border-radius: var(--radius);
  padding: 40px 24px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1.5px solid rgba(255,255,255,0.08);
}
.apron-mascot {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}
.apron-face {
  width: 110px; height: 120px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.apron-face__bg {
  width: 100px; height: 100px;
  background: linear-gradient(145deg, #FDBCAD, #F4956A);
  border-radius: 50%;
  position: absolute;
  top: 15px;
}
.apron-hair {
  width: 102px; height: 50px;
  background: #1a1a1a;
  border-radius: 55px 55px 10px 10px;
  position: absolute;
  top: 5px; left: 4px;
  z-index: 2;
}
.apron-beard {
  width: 82px; height: 36px;
  background: #1a1a1a;
  border-radius: 0 0 45px 45px;
  position: absolute;
  bottom: 6px;
  z-index: 2;
}
.apron-glasses {
  width: 82px; height: 16px;
  border-top: 3px solid #1a1a1a;
  position: absolute;
  top: 52px;
  z-index: 3;
}
.apron-glasses::before, .apron-glasses::after {
  content: '';
  position: absolute;
  width: 29px; height: 20px;
  border: 3px solid #1a1a1a;
  border-radius: 6px;
  top: -3px;
  background: rgba(150, 220, 255, 0.3);
}
.apron-glasses::before { left: 2px; }
.apron-glasses::after { right: 2px; }
.apron-eyes {
  position: absolute;
  top: 50px;
  display: flex; gap: 24px;
  z-index: 4;
}
.apron-eye {
  width: 10px; height: 12px;
  background: #1a1a1a;
  border-radius: 50%;
}
.apron-smile {
  width: 26px; height: 10px;
  border-bottom: 3px solid #c0553a;
  border-radius: 0 0 30px 30px;
  position: absolute;
  bottom: 20px;
  z-index: 4;
}
.apron-body {
  position: relative;
  margin-top: -5px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.apron-apron {
  width: 120px; height: 95px;
  background: #2D2D2D;
  border: 2px solid var(--primary);
  border-radius: 12px 12px 4px 4px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  z-index: 1;
}
.apron-logo-text { font-size: 0.95rem; font-weight: 900; color: var(--white); }
.apron-logo-sub { font-size: 0.6rem; font-weight: 600; color: var(--primary); text-transform: lowercase; }
.apron-arms { position: absolute; width: 155px; top: 15px; display: flex; justify-content: space-between; }
.apron-arm {
  width: 20px; height: 60px;
  background: linear-gradient(145deg, #FDBCAD, #F4956A);
  border-radius: 10px;
}
.apron-bg-kitchen {
  position: absolute;
  width: 120%; height: 120%;
  background: radial-gradient(circle, rgba(0,0,0,0) 20%, rgba(0,0,0,0.6) 80%);
  top: 0; left: 0;
  pointer-events: none;
}

/* ============================================
   VALUES SECTION
   ============================================ */
.values-section {
  padding: 70px 0;
  background: var(--light-bg);
  border-top: 1px solid var(--border);
}
.values__title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--black);
  text-align: center;
  margin-bottom: 40px;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.value-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}
.value-card__icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
  display: inline-block;
}
.value-card h3 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 6px;
}
.value-card p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============================================
   BOTTOM CTA BANNER
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--black) 0%, #333 100%);
  padding: 40px 0;
  color: var(--white);
}
.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-banner__visual .visual-tray {
  display: flex;
  gap: 10px;
  font-size: 2.4rem;
  background: rgba(255,255,255,0.08);
  padding: 10px 20px;
  border-radius: var(--radius-pill);
}
.visual-item {
  animation: floatFood 3s ease-in-out infinite;
}
.visual-item:nth-child(2) { animation-delay: 1s; }
.visual-item:nth-child(3) { animation-delay: 2s; }

.cta-banner__content h2 {
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.3;
}
.cta-banner__content p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}
.cta-banner__actions .cta-btn {
  font-size: 0.88rem;
  padding: 12px 26px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark-bg);
  padding: 60px 0 0;
  color: rgba(255,255,255,0.7);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
}
.logo--light .logo__name { color: var(--white); }
.footer__brand p {
  margin-top: 16px;
  font-size: 0.85rem;
  line-height: 1.7;
  max-width: 240px;
}
.footer__socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  transition: all var(--transition);
}
.social-link:hover { background: var(--primary); color: var(--black); transform: translateY(-2px); }
.footer__col h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer__col a, .footer__col span {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
  transition: color var(--transition);
}
.footer__col a:hover { color: var(--primary); }
.app-store-btn {
  display: flex !important;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  font-size: 0.85rem;
  color: var(--white) !important;
  font-weight: 600;
  transition: all var(--transition);
  margin-bottom: 10px;
  cursor: pointer;
}
.app-store-btn:hover { background: var(--primary); border-color: var(--primary); color: var(--black) !important; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0;
}
.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
}
.footer__bottom-links { display: flex; gap: 20px; }
.footer__bottom-links a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer__bottom-links a:hover { color: var(--primary); }

/* ============================================
   CART SIDEBAR
   ============================================ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 300;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}
.cart-overlay.active { opacity: 1; visibility: visible; }
.cart-sidebar {
  position: fixed;
  top: 0; right: 0;
  width: 380px; height: 100vh;
  background: var(--white);
  z-index: 400;
  transform: translateX(100%);
  transition: transform var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
}
.cart-sidebar.open { transform: translateX(0); }
.cart-sidebar__header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-sidebar__header h3 { font-size: 1.1rem; font-weight: 800; color: var(--black); }
.cart-close-btn {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--light-bg);
  font-size: 0.9rem;
  color: var(--text);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
  font-family: inherit;
}
.cart-close-btn:hover { background: #ffdddd; color: #c00; }
.cart-sidebar__items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}
.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 10px;
  color: var(--text-muted);
  text-align: center;
  padding: 40px 0;
}
.cart-empty__icon { font-size: 3rem; }
.cart-empty p { font-weight: 600; color: var(--dark); }
.cart-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.cart-item__emoji { font-size: 1.8rem; }
.cart-item__info { flex: 1; }
.cart-item__info h4 { font-size: 0.85rem; font-weight: 700; color: var(--black); margin-bottom: 2px; }
.cart-item__info span { font-size: 0.8rem; color: var(--text-muted); }
.cart-item__price { font-weight: 800; color: var(--primary-dark); font-size: 0.9rem; }
.cart-item__remove {
  color: #ccc;
  font-size: 0.9rem;
  cursor: pointer;
  transition: color var(--transition);
  font-family: inherit;
}
.cart-item__remove:hover { color: #e00; }
.cart-sidebar__footer {
  padding: 16px 24px 24px;
  border-top: 1px solid var(--border);
}
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}
.cart-total strong { font-size: 1.2rem; color: var(--primary-dark); }

/* ============================================
   TOAST NOTIFICATION
   ============================================ */
.toast {
  position: fixed;
  bottom: 30px; left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--black);
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  z-index: 999;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top {
  position: fixed;
  bottom: 30px; right: 24px;
  width: 44px; height: 44px;
  background: var(--primary);
  color: var(--black);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(245,166,35,0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition);
  z-index: 100;
  font-family: inherit;
}
.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { background: var(--primary-dark); transform: translateY(-2px) !important; }

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1100px) {
  .badges-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(3, 1fr); }
  .footer__inner { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .about-hero__inner { grid-template-columns: 1fr; text-align: center; }
  .about-hero__visual { justify-content: center; margin-top: 30px; }
  .story__inner { grid-template-columns: 1fr; gap: 40px; }
  .story__content { text-align: center; }
  .mission__grid { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .doodle-line { margin: 0 auto; }
  .mission__stats { justify-content: center; }
  .footer__inner { grid-template-columns: repeat(2, 1fr); }
  .footer__bottom-inner { flex-direction: column; gap: 10px; text-align: center; }
  .nav { display: none; }
  .burger { display: flex; }
}
@media (max-width: 600px) {
  .announce-bar { flex-direction: column; text-align: center; }
  .about-hero__mascot-wrap { width: 280px; height: 280px; }
  .badges-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-banner__inner { flex-direction: column; text-align: center; }
  .footer__inner { grid-template-columns: 1fr; }
  .cart-sidebar { width: 100%; }
}
@media (max-width: 400px) {
  .values-grid { grid-template-columns: 1fr; }
  .mission__stats { grid-template-columns: 1fr; }
}
