:root {
  --red: #e31837;
  --red-dark: #b5102a;
  --red-light: #ff4d6a;
  --cream: #fff8f0;
  --warm-white: #fffdf9;
  --yellow: #ffd23f;
  --yellow-soft: #fff3c0;
  --teal: #00c2a8;
  --teal-soft: #e0faf7;
  --navy: #1a2340;
  --text: #2d2d2d;
  --text-muted: #777;
  --border: #f0e8e0;
  --radius: 16px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.14);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Nunito", sans-serif;
  background: var(--warm-white);
  color: var(--text);
  overflow-x: hidden;
}

/* ===== TOP BAR ===== */
.topbar {
  background: var(--red);
  color: #fff;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 7px 0;
  position: relative;
  z-index: 1050;
}
.topbar-marquee span {
  padding: 0 32px;
}
.topbar-marquee span::before {
  content: "★";
  margin-right: 10px;
  color: var(--yellow);
}
.topbar-actions a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s;
}
.topbar-actions a:hover {
  opacity: 0.75;
}
.topbar-actions .divider {
  opacity: 0.35;
  margin: 0 4px;
}

/* ===== NAVBAR ===== */
.navbar-main {
  background: #fff;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 1040;
  padding: 0;
}
.navbar-brand-logo {
  font-family: "Pacifico", cursive;
  font-size: 28px;
  color: var(--red) !important;
  text-decoration: none;
  letter-spacing: -0.5px;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 8px;
}
.navbar-brand-logo span {
  font-size: 32px;
}
.nav-main-links {
  display: flex;
  align-items: stretch;
  list-style: none;
  gap: 0;
  margin: 0;
  padding: 0;
}
.nav-main-links > li {
  position: static;
}
.nav-main-links > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 20px 16px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-main-links > li > a i {
  font-size: 10px;
  transition: transform 0.2s;
}
.nav-main-links > li:hover > a {
  color: var(--red);
}
.nav-main-links > li:hover > a i {
  transform: rotate(180deg);
}

/* Mega Menu Fix */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  padding: 28px 28px 20px;
  visibility: hidden;
  opacity: 0;
  border-top: 3px solid var(--red);
  transition: visibility 0.2s, opacity 0.2s;
  z-index: 2000;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
}
.nav-main-links > li:hover .mega-menu {
  visibility: visible;
  opacity: 1;
}
.mega-col h6 {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--red);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--yellow);
}
.mega-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mega-col ul li {
  margin-bottom: 7px;
}
.mega-col ul li a {
  font-size: 13px;
  font-weight: 600;
  color: #444;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: color 0.15s, gap 0.15s;
}
.mega-col ul li a:hover {
  color: var(--red);
  gap: 12px;
}
.mega-badge {
  display: inline-block;
  padding: 2px 7px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 800;
  background: var(--yellow);
  color: var(--text);
  margin-left: 4px;
}
.mega-badge.new {
  background: var(--teal);
  color: #fff;
}
.mega-badge.sale {
  background: var(--red);
  color: #fff;
}
.mega-badge.hot {
  background: #ff6b35;
  color: #fff;
}
.mega-banner {
  background: linear-gradient(135deg, var(--red) 0%, #ff6b8a 100%);
  border-radius: 12px;
  padding: 16px;
  color: #fff;
  text-align: center;
}
.mega-banner h5 {
  font-family: "Fredoka One", cursive;
  font-size: 18px;
  margin-bottom: 4px;
}
.mega-banner p {
  font-size: 12px;
  opacity: 0.85;
  margin-bottom: 10px;
}
.mega-banner a {
  background: #fff;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 20px;
  text-decoration: none;
  display: inline-block;
}

/* Search bar */
.navbar-search {
  position: relative;
}
.navbar-search input {
  border: 2px solid var(--border);
  border-radius: 50px;
  padding: 9px 20px 9px 42px;
  font-size: 13.5px;
  font-family: "Nunito", sans-serif;
  outline: none;
  width: 220px;
  background: var(--cream);
  transition: border-color 0.2s, width 0.3s;
}
.navbar-search input:focus {
  border-color: var(--red);
  width: 260px;
}
.navbar-search .search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 14px;
}
.search-results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  margin-top: 8px;
  z-index: 1000;
  display: none;
  max-height: 400px;
  overflow-y: auto;
}
.search-result-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 15px;
  text-decoration: none;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.search-result-item:hover {
  background: var(--cream);
}
.search-result-item img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 8px;
}

.navbar-icon-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-decoration: none;
  color: var(--text);
  font-size: 11px;
  font-weight: 700;
  padding: 8px 10px;
  border-radius: 10px;
  transition: background 0.2s, color 0.2s;
  position: relative;
}
.navbar-icon-btn i {
  font-size: 18px;
}
.navbar-icon-btn:hover {
  background: var(--cream);
  color: var(--red);
}
.navbar-icon-btn .badge-count {
  position: absolute;
  top: 4px;
  right: 4px;
  background: var(--red);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  min-width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

/* Mobile Nav */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  display: none;
}
.mobile-menu-drawer {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 300px;
  background: #fff;
  z-index: 2001;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  padding: 0;
}
.mobile-menu-drawer.open {
  transform: translateX(0);
}
.mobile-menu-header {
  background: var(--red);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-menu-header span {
  font-family: "Pacifico", cursive;
  font-size: 22px;
  color: #fff;
}
.mobile-nav-item {
  border-bottom: 1px solid var(--border);
  padding: 14px 20px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-sub {
  display: none;
  background: var(--cream);
  padding: 10px 20px;
}
.mobile-sub a {
  display: block;
  padding: 7px 0;
  font-size: 13px;
  color: #555;
  text-decoration: none;
  font-weight: 600;
}

/* ===== BANNER ===== */
.hero-swiper {
  width: 100%;
  overflow: hidden;
}
.hero-slide {
  position: relative;
  height: 520px;
  border-radius: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 6s ease;
}
.swiper-slide-active .hero-slide-bg {
  transform: scale(1);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.55) 0%, transparent 70%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 60px;
  max-width: 600px;
  color: #fff;
}
.hero-tag {
  display: inline-block;
  background: var(--yellow);
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.hero-title {
  font-family: "Fredoka One", cursive;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.1;
  margin-bottom: 14px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.hero-desc {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 24px;
  line-height: 1.6;
}
.btn-hero-primary {
  background: var(--yellow);
  color: var(--text);
  font-weight: 800;
  font-size: 14px;
  padding: 13px 30px;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}
.btn-hero-secondary {
  background: transparent;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.6);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
  margin-left: 12px;
}
.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
}
.hero-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  transition: width 0.3s, background 0.3s;
}
.hero-pagination .swiper-pagination-bullet-active {
  width: 24px;
  border-radius: 4px;
  background: #fff;
}
.hero-mini-cards {
  position: absolute;
  right: 32px;
  bottom: 32px;
  display: flex;
  gap: 12px;
  z-index: 5;
}
.hero-mini-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  transition: transform 0.2s;
}
.hero-mini-card:hover {
  transform: translateY(-3px);
}
.hero-mini-card .icon {
  font-size: 22px;
}
.hero-mini-card .label {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
}
.hero-mini-card .label span {
  display: block;
  font-weight: 400;
  font-size: 11px;
  color: var(--text-muted);
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
  color: var(--red) !important;
  background: #fff !important;
  width: 42px !important;
  height: 42px !important;
  border-radius: 50% !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12) !important;
}
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 14px !important;
  font-weight: 800 !important;
}

/* ===== PROMO STRIP ===== */
.promo-strip {
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.promo-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 20px;
  border-right: 1px solid var(--border);
}
.promo-item:last-child {
  border-right: none;
}
.promo-item i {
  font-size: 28px;
  color: var(--red);
  flex-shrink: 0;
}
.promo-item h6 {
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 2px;
}
.promo-item p {
  font-size: 11.5px;
  color: var(--text-muted);
  margin: 0;
}

/* ===== SECTION STYLES ===== */
.section-header {
  text-align: center;
  margin-bottom: 40px;
}
.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(227, 24, 55, 0.08);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.section-title {
  font-family: "Fredoka One", cursive;
  font-size: clamp(26px, 4vw, 38px);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 10px;
}
.section-underline {
  width: 60px;
  height: 4px;
  background: var(--yellow);
  border-radius: 2px;
  margin: 0 auto 10px;
}
.section-desc {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
}

/* ===== TRENDING / VIDEO CARDS ===== */
.section-trending {
  padding: 64px 0;
  background: var(--warm-white);
}
.video-swiper {
  padding: 8px 4px 24px !important;
  overflow: hidden;
}
.video-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 9/14;
  cursor: pointer;
  display: block;
  text-decoration: none;
}
.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.video-card:hover img {
  transform: scale(1.05);
}
.video-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.72) 30%, transparent 70%);
}
.video-card-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--red);
  transition: transform 0.2s, background 0.2s;
}
.video-card:hover .video-card-play {
  transform: translate(-50%, -50%) scale(1.12);
  background: #fff;
}
.video-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  color: #fff;
}
.video-card-info h5 {
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 4px;
}
.video-card-info span {
  font-size: 12px;
  opacity: 0.8;
}

/* ===== PRODUCT CARD ===== */
.product-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1.5px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  cursor: pointer;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: #fce;
}
.product-card-img {
  position: relative;
  background: var(--cream);
  aspect-ratio: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.product-card-img img {
  max-width: 100%;
  max-height: 180px;
  object-fit: contain;
  transition: transform 0.4s;
}
.product-card:hover .product-card-img img {
  transform: scale(1.08) rotate(-2deg);
}
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 10.5px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 20px;
  z-index: 2;
}
.badge-sale {
  background: var(--red);
  color: #fff;
}
.badge-new {
  background: var(--teal);
  color: #fff;
}
.badge-hot {
  background: var(--yellow);
  color: var(--text);
}
.product-card-actions {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.25s, transform 0.25s;
  z-index: 3;
}
.product-card:hover .product-card-actions {
  opacity: 1;
  transform: translateX(0);
}
.action-btn {
  width: 34px;
  height: 34px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--text);
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.action-btn:hover {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.product-card-body {
  padding: 14px 16px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-category {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
}
.product-name {
  font-size: 14px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 10px;
}
.stars {
  color: var(--yellow);
  font-size: 12px;
}
.rating-count {
  font-size: 12px;
  color: var(--text-muted);
}
.product-price {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.price-current {
  font-size: 18px;
  font-weight: 800;
  color: var(--red);
}
.price-original {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: line-through;
}
.price-off {
  font-size: 12px;
  font-weight: 800;
  color: var(--teal);
}
.btn-add-cart {
  width: 100%;
  background: var(--red);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  padding: 10px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  transition: background 0.2s, transform 0.15s;
  margin-top: auto;
}
.btn-add-cart:hover {
  background: var(--red-dark);
  transform: scale(1.02);
}

/* ===== BEST SELLERS ===== */
.section-bestsellers {
  padding: 64px 0;
  background: var(--cream);
}
#bestsellersSwiper {
  overflow: hidden;
  padding: 8px 4px 24px !important;
}

/* ===== NEW ARRIVALS ===== */
.section-newarrivals {
  padding: 64px 0;
  background: var(--warm-white);
}
.arrival-featured {
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, #ffd23f 0%, #ff9e3f 100%);
  padding: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  min-height: 380px;
}
.arrival-featured h3 {
  font-family: "Fredoka One", cursive;
  font-size: 32px;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 12px;
}
.arrival-featured p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  margin-bottom: 20px;
}
.arrival-featured .big-price {
  font-family: "Fredoka One", cursive;
  font-size: 40px;
  color: #fff;
}
.arrival-featured img {
  position: absolute;
  right: -20px;
  bottom: 0;
  width: 200px;
  transform: rotate(-10deg);
}
.btn-white {
  background: #fff;
  color: var(--text);
  font-weight: 800;
  font-size: 14px;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s;
  border: none;
  cursor: pointer;
}
.btn-white:hover {
  transform: translateY(-2px);
}

/* ===== SHOP BY CATEGORY ===== */
.section-categories {
  padding: 64px 0;
  background: var(--cream);
}
.category-card {
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  display: block;
  position: relative;
  aspect-ratio: 1;
  transition: transform 0.25s;
}
.category-card:hover {
  transform: translateY(-6px);
}
.category-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s;
}
.category-card:hover .category-card-bg {
  transform: scale(1.06);
}
.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.65) 40%, transparent 80%);
}
.category-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  color: #fff;
}
.category-card-icon {
  font-size: 28px;
  margin-bottom: 8px;
  display: block;
}
.category-card-name {
  font-family: "Fredoka One", cursive;
  font-size: 20px;
  margin-bottom: 4px;
}
.category-card-count {
  font-size: 12px;
  opacity: 0.8;
}
.category-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 50px;
  padding: 12px 20px;
  text-decoration: none;
  color: var(--text);
  border: 1.5px solid var(--border);
  font-weight: 700;
  font-size: 14px;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.category-pill:hover {
  background: var(--cream);
  border-color: var(--red);
  transform: scale(1.03);
  color: var(--red);
}
.category-pill .cat-emoji {
  font-size: 24px;
}

/* ===== SHOP BY BRAND ===== */
.section-brands {
  padding: 64px 0;
  background: var(--warm-white);
}
.brand-card {
  text-decoration: none;
  display: block;
  transition: transform 0.25s;
}
.brand-card:hover {
  transform: translateY(-5px);
}
.brand-card-inner {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  border: 1px solid var(--border);
  transition: box-shadow 0.25s, border-color 0.25s;
}
.brand-card:hover .brand-card-inner {
  box-shadow: var(--shadow);
  border-color: var(--red);
}
.brand-logo-img {
  width: 100px;
  height: 100px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-logo-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.brand-name {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-top: 8px;
}

/* ===== TESTIMONIALS ===== */
.section-testimonials {
  padding: 64px 0;
  background: linear-gradient(135deg, var(--red) 0%, #ff6b8a 100%);
}
.section-testimonials .section-title {
  color: #fff;
}
.section-testimonials .section-eyebrow {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}
.section-testimonials .section-desc {
  color: rgba(255, 255, 255, 0.8);
}
.testimonial-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 28px;
  color: #fff;
  transition: background 0.25s;
}
.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.2);
}
.testimonial-quote {
  font-size: 40px;
  font-family: Georgia, serif;
  line-height: 1;
  margin-bottom: 12px;
  opacity: 0.5;
}
.testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
  opacity: 0.92;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  flex-shrink: 0;
}
.testimonial-name {
  font-weight: 800;
  font-size: 14px;
}
.testimonial-meta {
  font-size: 12px;
  opacity: 0.7;
}
.testimonial-stars {
  color: var(--yellow);
  font-size: 13px;
  margin-bottom: 6px;
}
#testimonialsSwiper {
  overflow: hidden;
}

/* ===== SHOP BY AGE ===== */
.section-shop-age {
  padding: 64px 0;
  background: var(--warm-white);
}
.age-card {
  border-radius: 24px;
  text-align: center;
  padding: 32px 20px;
  text-decoration: none;
  display: block;
  transition: transform 0.25s, box-shadow 0.25s;
  color: var(--text);
  position: relative;
  overflow: hidden;
}
.age-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  color: var(--text);
}
.age-card-num {
  font-family: "Fredoka One", cursive;
  font-size: 48px;
  line-height: 1;
  margin-bottom: 4px;
}
.age-card-label {
  font-weight: 800;
  font-size: 13px;
  margin-bottom: 14px;
  opacity: 0.7;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.age-card-emoji {
  font-size: 38px;
  margin-bottom: 14px;
  display: block;
}
.age-card-desc {
  font-size: 13px;
  opacity: 0.75;
  line-height: 1.5;
}
.age-0 {
  background: #fff3cc;
  color: #b8860b;
}
.age-1 {
  background: #e0faf7;
  color: #007b6b;
}
.age-2 {
  background: #ffe4ec;
  color: #c0154a;
}
.age-3 {
  background: #eef0ff;
  color: #3d3fab;
}
.age-4 {
  background: #fff0e0;
  color: #c06000;
}
.age-5 {
  background: #ecffe8;
  color: #2a7a1a;
}

/* ===== NEWSLETTER ===== */
.section-newsletter {
  padding: 56px 0;
  background: var(--navy);
}
.newsletter-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.newsletter-inner h2 {
  font-family: "Fredoka One", cursive;
  font-size: 32px;
  color: #fff;
  margin-bottom: 10px;
}
.newsletter-inner p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  margin-bottom: 24px;
}
.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 480px;
  margin: 0 auto;
}
.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border-radius: 50px;
  border: none;
  font-size: 14px;
  font-family: "Nunito", sans-serif;
  outline: none;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.newsletter-form input:focus {
  border-color: var(--yellow);
}
.btn-newsletter {
  background: var(--yellow);
  color: var(--text);
  font-weight: 800;
  font-size: 14px;
  padding: 14px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.2s;
}
.btn-newsletter:hover {
  transform: scale(1.04);
}

/* ===== FOOTER ===== */
footer {
  background: #111820;
  color: rgba(255, 255, 255, 0.75);
  padding: 60px 0 0;
  font-size: 14px;
}
.footer-brand {
  font-family: "Pacifico", cursive;
  font-size: 30px;
  color: #fff;
  margin-bottom: 12px;
  display: block;
}
.footer-tagline {
  font-size: 13.5px;
  line-height: 1.6;
  margin-bottom: 20px;
  opacity: 0.7;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.social-btn:hover {
  background: var(--red);
  transform: scale(1.1);
  color: #fff;
}
.footer-title {
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 13.5px;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover {
  color: var(--yellow);
}
.footer-links a::before {
  content: "›";
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 40px;
  padding: 18px 0;
  text-align: center;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.4);
}
.footer-payments {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.pay-logo {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s, transform 0.3s;
  z-index: 999;
  border: none;
  box-shadow: 0 4px 16px rgba(227, 24, 55, 0.4);
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--red-dark);
}

/* ===== TOAST ===== */
#toast {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--navy);
  color: #fff;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  opacity: 0;
  transition: all 0.3s;
  z-index: 4000;
  pointer-events: none;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .nav-main-links,
  .navbar-search {
    display: none !important;
  }
  .hero-slide {
    height: 380px;
  }
  .hero-content {
    padding: 0 30px;
  }
  .hero-title {
    font-size: 30px;
  }
  .hero-mini-cards {
    display: none;
  }
  .promo-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .promo-item:last-child {
    border-bottom: none;
  }
  .age-card-num {
    font-size: 36px;
  }
  .mega-menu {
    display: none !important;
  }
  .brand-logo-img {
    width: 60px;
    height: 60px;
  }
  .brand-name {
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  .hero-slide {
    height: 300px;
  }
  .hero-content {
    padding: 0 20px;
  }
  .hero-title {
    font-size: 24px;
  }
  .hero-desc {
    font-size: 14px;
    display: none;
  }
  .btn-hero-secondary {
    display: none;
  }
  .newsletter-form {
    flex-direction: column;
  }
  .newsletter-form input,
  .btn-newsletter {
    border-radius: 12px;
    width: 100%;
  }
  .brand-card-inner {
    padding: 15px;
  }
  .brand-logo-img {
    width: 45px;
    height: 45px;
  }
}
@media (max-width: 576px) {
  .topbar .d-flex.gap-3 {
    display: none !important;
  }
  .brand-logo-img {
    width: 40px;
    height: 40px;
  }
  .brand-name {
    font-size: 11px;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-up {
  animation: fadeInUp 0.6s ease forwards;
}

.expected-delivery-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #e3f2fd;
    color: #0d47a1;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    margin-top: 5px;
}

/* ===== OFFERS CAROUSEL STYLES ===== */
.offers-carousel-wrapper {
    position: relative;
    padding: 0 40px;
}

.offers-swiper {
    overflow: hidden;
    padding: 10px 5px 40px 5px;
}

.offers-swiper-pagination {
    bottom: 0 !important;
}

.offers-swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--red);
    opacity: 0.3;
    transition: all 0.3s ease;
}

.offers-swiper-pagination .swiper-pagination-bullet-active {
    width: 24px;
    border-radius: 5px;
    background: var(--red);
    opacity: 1;
}

.offers-swiper-prev,
.offers-swiper-next {
    color: var(--red) !important;
    background: #fff !important;
    width: 42px !important;
    height: 42px !important;
    border-radius: 50% !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12) !important;
    transition: all 0.3s ease;
}

.offers-swiper-prev:hover,
.offers-swiper-next:hover {
    transform: scale(1.05);
    background: var(--red) !important;
    color: #fff !important;
}

.offers-swiper-prev::after,
.offers-swiper-next::after {
    font-size: 14px !important;
    font-weight: 800 !important;
}

/* Enhanced Offer Card Styles */
.offer-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(227, 24, 55, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.offer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(227, 24, 55, 0.15);
    border-color: var(--red);
}

.offer-card-img {
    position: relative;
    background: linear-gradient(135deg, #fff8f0 0%, #ffece6 100%);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    overflow: hidden;
}

.offer-card-img img {
    max-width: 100%;
    max-height: 160px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.offer-card:hover .offer-card-img img {
    transform: scale(1.08);
}

.offer-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff4757 100%);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 30px;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(255, 71, 87, 0.3);
    animation: pulse 2s infinite;
    letter-spacing: 0.5px;
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(255, 71, 87, 0.3);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(255, 71, 87, 0.5);
    }
}

.offer-card-body {
    padding: 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.offer-product-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 40px;
}

/* Responsive adjustments for offers carousel */
@media (max-width: 768px) {
    .offers-carousel-wrapper {
        padding: 0 20px;
    }
    
    .offers-swiper-prev,
    .offers-swiper-next {
        width: 34px !important;
        height: 34px !important;
    }
    
    .offer-card-img img {
        max-height: 120px;
    }
    
    .offer-product-name {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .offers-carousel-wrapper {
        padding: 0 10px;
    }
}

/* Improved rating stars */
.offer-product-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
}

.offer-product-rating .stars {
    color: #ffc107;
    font-size: 12px;
    letter-spacing: 2px;
}

.offer-product-rating .rating-count {
    font-size: 11px;
    color: #999;
}

/* Improved price display */
.offer-product-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.offer-price-current {
    font-size: 20px;
    font-weight: 800;
    color: var(--red);
}

.offer-price-original {
    font-size: 13px;
    color: #999;
    text-decoration: line-through;
}

.offer-discount {
    background: linear-gradient(135deg, #00c2a8 0%, #00a38c 100%);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 20px;
}

/* Button styling */
.btn-offer-cart {
    width: 100%;
    background: linear-gradient(135deg, var(--red) 0%, #ff6b8a 100%);
    color: #fff;
    font-weight: 800;
    font-size: 13px;
    padding: 12px;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    margin-top: auto;
}

.btn-offer-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(227, 24, 55, 0.4);
}

/* Video card interaction improvements */
.video-card {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
}