/* ==========================================================================
   Kids Paradise - Frontend Premium Design System
   ========================================================================== */

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

:root {
  --primary: #ff3366;
  --primary-dark: #e11d48;
  --primary-light: #fff1f2;
  --primary-gradient: linear-gradient(135deg, #ff3366 0%, #ff5e62 100%);
  --secondary: #1e1346;
  --accent-yellow: #fbbf24;
  --accent-blue: #0284c7;
  --accent-green: #10b981;
  --text-main: #1e293b;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --bg-light: #f8fafc;
  --bg-card: #ffffff;
  --border-color: #f1f5f9;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.07), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 30px -10px rgba(255, 51, 102, 0.15);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-main);
  background-color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .heading-font {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--text-main);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1560px;
  width: 100%;
  margin: 0 auto;
  padding: 0 28px;
}

/* ==========================================================================
   Top Announcement Bar
   ========================================================================== */
.top-bar {
  background: var(--primary);
  color: #ffffff;
  padding: 8px 0;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-align: center;
  position: relative;
  z-index: 100;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar a {
  color: #ffffff;
  text-decoration: underline;
  margin-left: 8px;
}

.top-bar-contact {
  display: flex;
  gap: 20px;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header-wrapper {
  position: relative;
  width: 100%;
  background: #ffffff;
  z-index: 1000;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.top-bar {
  background: #0f172a;
  color: #e2e8f0;
  font-size: 0.8rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.top-bar-announcement {
  display: flex;
  align-items: center;
  font-weight: 600;
  color: #f8fafc;
}

.top-bar-link {
  color: #fde047;
  text-decoration: underline;
  margin-left: 8px;
  font-weight: 700;
}

.top-bar-contact {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #94a3b8;
}

.top-bar-contact span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-bar-contact i {
  color: var(--primary);
}

/* Header Main */
.header-main {
  background: #ffffff;
  padding: 16px 0;
  border-bottom: 1px solid #f1f5f9;
  position: relative;
  z-index: 1000;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: #0f172a;
  flex-shrink: 0;
}

.logo-wrap span {
  color: var(--primary);
}

.logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

/* Header Nav + Divider + Actions Wrapper (Right-Aligned) */
.header-nav-and-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

/* Site Navigation */
.site-nav {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #1e293b;
  text-decoration: none;
  padding: 8px 0;
  position: relative;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary); /* #ff3366 */
}

.nav-dropdown-arrow {
  font-size: 0.65rem;
  transition: transform 0.2s ease;
  margin-left: 2px;
}

.nav-item-dropdown {
  position: relative;
}

.nav-item-dropdown:hover > .nav-link {
  color: var(--primary);
}

.nav-item-dropdown:hover > .nav-link .nav-dropdown-arrow {
  transform: rotate(180deg);
}

/* Hover bridge between nav link and dropdown menu */
.nav-item-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 18px;
  z-index: 10001;
}

/* Vertical Separator Divider (Matching Reference Screenshot 1) */
.header-divider-line {
  width: 1px;
  height: 20px;
  background: #cbd5e1;
  flex-shrink: 0;
}

/* ==========================================================================
   CASCADING FLYOUT MULTI-LEVEL DROPDOWN MENU (Matching Reference Screenshot 2)
   ========================================================================== */
.cascading-dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: #ffffff;
  min-width: 240px;
  list-style: none;
  margin: 0;
  padding: 8px 0;
  border-radius: 8px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12), 0 4px 10px rgba(0, 0, 0, 0.04);
  border: 1px solid #f1f5f9;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 99999;
}

.nav-item-dropdown:hover > .cascading-dropdown-menu,
.cascading-dropdown-menu:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Cascading Item */
.cascading-item {
  position: relative;
  list-style: none;
}

.cascading-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  color: #475569;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.15s ease;
  white-space: nowrap;
}

.cascading-title {
  flex: 1;
  margin-right: 14px;
}

.cascading-icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  flex-shrink: 0;
  color: var(--primary);
}

.cascading-icon img,
.cat-custom-icon {
  max-width: 18px;
  max-height: 18px;
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
}

.cascading-arrow {
  font-size: 0.72rem;
  color: #94a3b8;
  transition: transform 0.15s ease, color 0.15s ease;
}

/* Active / Hover State on Item (Turns Red/Pink with soft highlight) */
.cascading-item:hover > .cascading-link {
  color: var(--primary);
  background: #fdf2f4;
}

.cascading-item:hover > .cascading-link .cascading-arrow {
  color: var(--primary);
  transform: translateX(3px);
}

/* Level 2 & Level 3: Nested Flyout Submenu (Opens directly to the right!) */
.cascading-submenu {
  position: absolute;
  top: -8px;
  left: 100%;
  background: #ffffff;
  min-width: 240px;
  list-style: none;
  margin: 0;
  padding: 8px 0;
  border-radius: 8px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.14), 0 4px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid #f1f5f9;
  opacity: 0;
  visibility: hidden;
  transform: translateX(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 100000;
}

/* Invisible bridge between parent item and sub-flyout so cursor doesn't fall off */
.cascading-item.has-sub::after {
  content: '';
  position: absolute;
  top: 0;
  right: -10px;
  width: 14px;
  height: 100%;
  z-index: 100001;
}

.cascading-item:hover > .cascading-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* ==========================================================================
   4 Action Icons (Search, User, Wishlist, Cart - Matching Screenshot 1)
   ========================================================================== */
.header-action-icons {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
}

.action-icon-link {
  background: none;
  border: none;
  outline: none;
  color: #0f172a;
  font-size: 1.25rem;
  cursor: pointer;
  padding: 6px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  text-decoration: none;
  position: relative;
  line-height: 1;
}

.action-icon-link:hover {
  color: var(--primary);
}

.header-account-wrap {
  display: flex;
  align-items: center;
  gap: 4px;
}

.logout-btn {
  font-size: 1rem;
  color: #64748b;
}

.logout-btn:hover {
  color: #ef4444;
}

/* Badge Count for Wishlist & Cart */
.badge-count {
  position: absolute;
  top: -2px;
  right: -4px;
  background: var(--primary);
  color: #ffffff;
  font-size: 0.62rem;
  font-weight: 800;
  min-width: 17px;
  height: 17px;
  line-height: 17px;
  border-radius: 999px;
  text-align: center;
  padding: 0 4px;
  box-shadow: 0 2px 6px rgba(255, 51, 102, 0.4);
  pointer-events: none;
}

/* Search Popup */
.header-search-wrap {
  position: relative;
}

.header-search-popup {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  width: 320px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
  border: 1px solid #e2e8f0;
  padding: 8px 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s ease;
  z-index: 99999;
}

.header-search-popup.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.search-popup-form {
  display: flex;
  align-items: center;
  gap: 8px;
}

.search-popup-form input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  font-size: 0.92rem;
  color: #1e293b;
  padding: 6px 0;
}

.search-popup-form button {
  background: none;
  border: none;
  outline: none;
  color: var(--primary);
  font-size: 1.05rem;
  cursor: pointer;
  padding: 4px;
}

/* ==========================================================================
   Hero Banner / Full-Width Video Slider
   ========================================================================== */
.hero-slider-section {
  position: relative;
  background: #0f172a;
  overflow: hidden;
  margin: 0;
  padding: 0;
  width: 100%;
}

.hero-slide {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  padding-top: 140px;
  padding-bottom: 60px;
}

.hero-slide .container {
  width: 100%;
  position: relative;
  z-index: 10;
  pointer-events: auto;
}

.hero-video-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none !important;
  user-select: none;
  z-index: 1;
  overflow: hidden;
}

.hero-video-wrap iframe,
.hero-video-wrap video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw; /* 16:9 ratio */
  min-height: 100%;
  min-width: 177.77vh; /* 16:9 ratio */
  transform: translate(-50%, -50%) scale(1.4);
  border: none;
  pointer-events: none !important;
  user-select: none;
  object-fit: cover;
}

.hero-video-click-blocker {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: transparent;
  pointer-events: auto !important;
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0.35) 45%, rgba(255,255,255,0.08) 100%);
  z-index: 3;
  pointer-events: auto !important;
}

.hero-slide.is-video-slide .hero-slide-overlay {
  background: linear-gradient(90deg, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0.25) 50%, rgba(255,255,255,0.05) 100%);
}

.hero-slide-content {
  position: relative;
  z-index: 10;
  max-width: 760px;
  padding: 30px 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-left: 0;
  margin-right: auto;
}

.hero-tag {
  display: inline-block;
  background: var(--primary);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  letter-spacing: 1px;
  text-align: left;
  align-self: flex-start;
  box-shadow: 0 4px 12px rgba(255, 51, 102, 0.3);
}

.hero-title {
  font-size: 3.2rem;
  line-height: 1.12;
  font-weight: 900;
  margin-bottom: 16px;
  color: #0f172a;
  text-align: left;
  text-shadow: 0 2px 8px rgba(255, 255, 255, 0.4);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: #334155;
  margin-bottom: 28px;
  text-align: left;
  line-height: 1.6;
  max-width: 520px;
}

.hero-slide-content .btn-primary {
  align-self: flex-start;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--primary);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 15px 25px -5px rgba(255, 51, 102, 0.35);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: var(--transition);
}

.btn-outline:hover {
  background: var(--primary);
  color: #ffffff;
}

/* ==========================================================================
   "How To Order" 4-Step Process Section
   ========================================================================== */
.how-to-order-section {
  padding: 50px 0 40px;
  background: #ffffff;
  text-align: center;
}

.section-tag {
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 4px;
}

.section-title {
  font-size: 2rem;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 35px;
  position: relative;
  display: inline-block;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step-card {
  background: #ffffff;
  padding: 24px 18px;
  border-radius: var(--radius-md);
  text-align: center;
  transition: var(--transition);
}

.step-card:hover {
  transform: translateY(-5px);
}

.step-icon-wrap {
  width: 72px;
  height: 72px;
  background: var(--primary-light);
  border: 2px solid #fecdd3;
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 16px;
  transition: var(--transition);
}

.step-card:hover .step-icon-wrap {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(255, 51, 102, 0.25);
}

.step-title {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: #1e293b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.step-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   2-Column Promotional Banners (Toys & Furniture)
   ========================================================================== */
/* ==========================================================================
   PROMOTIONAL BANNERS
   ========================================================================== */
.promo-banners-section {
  padding: 24px 0 44px;
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.promo-card {
  position: relative;
  min-height: 250px;
  border-radius: var(--radius-lg, 14px);
  overflow: hidden;
  padding: 36px 40px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.promo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.promo-card.dark-card {
  background-color: #1e1346;
  color: #ffffff;
}

.promo-card.light-card {
  background-color: #e2f1f8;
  color: #0f172a;
}

.promo-card-content {
  position: relative;
  z-index: 2;
  max-width: 60%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.promo-subtitle {
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: 0.2px;
  display: inline-block;
}

.promo-card.dark-card .promo-subtitle {
  color: #ffffff;
  opacity: 0.95;
}

.promo-card.light-card .promo-subtitle {
  color: #475569;
}

.promo-title {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 20px;
  font-family: 'Outfit', 'Inter', var(--font-heading), sans-serif;
}

.promo-card.dark-card .promo-title {
  color: #ffffff;
}

.promo-card.light-card .promo-title {
  color: #0f172a;
}

.promo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: var(--primary, #ef233c);
  color: #ffffff !important;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(239, 35, 60, 0.35);
  transition: all 0.2s ease;
  cursor: pointer;
}

.promo-btn:hover {
  background: var(--primary-hover, #d90429);
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(239, 35, 60, 0.45);
}

@media (max-width: 991px) {
  .promo-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .promo-card {
    min-height: 220px;
    padding: 28px 28px;
  }
  .promo-card-content {
    max-width: 60%;
  }
}

@media (max-width: 576px) {
  .promo-card {
    min-height: 200px;
    padding: 24px 20px;
  }
  .promo-card-content {
    max-width: 65%;
  }
  .promo-title {
    font-size: 1.4rem;
    margin-bottom: 14px;
  }
  .promo-subtitle {
    font-size: 0.85rem;
  }
  .promo-btn {
    padding: 8px 18px;
    font-size: 0.75rem;
  }
}


/* ==========================================================================
   Product Grid & Product Cards
   ========================================================================== */
.products-section {
  padding: 40px 0 50px;
}

.section-header {
  text-align: center;
  margin-bottom: 35px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.product-card:hover {
  border-color: #fecdd3;
  box-shadow: 0 10px 25px rgba(255, 51, 102, 0.12);
  transform: translateY(-4px);
}

/* 1:1 PERFECT SQUARE PRODUCT THUMBNAIL */
.product-thumb {
  position: relative;
  background: #f8fafc;
  width: 100%;
  aspect-ratio: 1 / 1 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 16px;
  border-bottom: 1px solid #f1f5f9;
}

.product-thumb a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.product-thumb img {
  max-width: 95%;
  max-height: 95%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.product-card:hover .product-thumb img {
  transform: scale(1.04);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  color: #ffffff;
  z-index: 2;
}

.product-badge.sale { background: #ef4444; }
.product-badge.new { background: #10b981; }
.product-badge.hot { background: #f59e0b; }
.product-badge.featured { background: #8b5cf6; }

.product-info {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: left;
}

.product-rating-stars {
  display: flex;
  align-items: center;
  gap: 3px;
  color: #f59e0b;
  font-size: 0.78rem;
  margin-bottom: 6px;
}

.product-rating-stars .rating-count {
  font-size: 0.72rem;
  color: #64748b;
  font-weight: 700;
  margin-left: 2px;
}

.product-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 4px;
  line-height: 1.35;
  height: 2.7em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-decoration: none;
  transition: color 0.2s;
}

.product-name:hover {
  color: var(--primary);
}

.product-sku-text {
  font-size: 0.74rem;
  color: #64748b;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 0.2px;
}

.product-card-bottom {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-top: 4px;
}

.product-pricing {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}

.price-regular {
  font-size: 0.82rem;
  color: #94a3b8;
  text-decoration: line-through;
  font-weight: 500;
}

.price-sale {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f172a;
}

/* Circular Add to Cart Button (Matching Reference Image) */
.circle-cart-btn {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  background: var(--primary, #ff3366);
  color: #ffffff;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(255, 51, 102, 0.3);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  outline: none;
}

.circle-cart-btn:hover {
  transform: scale(1.1);
  background: var(--primary-dark, #e11d48);
  box-shadow: 0 6px 16px rgba(255, 51, 102, 0.45);
  color: #ffffff;
}

.circle-cart-btn:active {
  transform: scale(0.94);
}

/* ==========================================================================
   Product Slider (Manual 4-Column Track & Prev/Next Arrows)
   ========================================================================== */
.product-slider-wrapper {
  position: relative;
  width: 100%;
}

.product-slider-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px 4px 16px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.product-slider-track::-webkit-scrollbar {
  display: none;
}

.product-slider-item {
  flex: 0 0 calc((100% - (20px * 3)) / 4);
  max-width: calc((100% - (20px * 3)) / 4);
  min-width: calc((100% - (20px * 3)) / 4);
  scroll-snap-align: start;
  display: flex;
}

.product-slider-item > .product-card {
  width: 100%;
}

/* Slider Navigation Arrows */
.slider-arrow {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--primary, #ff3366);
  border: 1.5px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  outline: none;
}

.slider-arrow:hover {
  background: var(--primary, #ff3366);
  color: #ffffff;
  border-color: var(--primary, #ff3366);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 20px rgba(255, 51, 102, 0.35);
}

.slider-arrow:active {
  transform: translateY(-50%) scale(0.95);
}

.slider-arrow.slider-prev {
  left: -22px;
}

.slider-arrow.slider-next {
  right: -22px;
}

.slider-arrow.is-disabled,
.slider-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
  background: #f8fafc;
  color: #94a3b8;
  border-color: #e2e8f0;
  box-shadow: none;
}

/* ==========================================================================
   Product Section Banner Layouts (1-Row with Banner & 2-Rows with Banner)
   ========================================================================== */
.product-section-banner-layout {
  display: grid;
  gap: 24px;
  align-items: stretch;
}

.product-section-banner-layout.layout-1-row {
  grid-template-columns: 340px 1fr;
}

.product-section-banner-layout.layout-2-rows {
  grid-template-columns: 340px 1fr;
}

.product-section-banner-layout.banner-right {
  grid-template-columns: 1fr 340px;
}

.product-section-banner-layout.banner-right .section-side-banner {
  order: 2;
}

.product-section-banner-layout.banner-right .section-banner-products {
  order: 1;
}

/* Side Banner Card */
.side-banner-card {
  height: 100%;
  min-height: 420px;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.side-banner-card.tall-card {
  min-height: 780px;
}

.side-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.1) 0%, rgba(15, 23, 42, 0.85) 100%);
  z-index: 1;
}

.side-banner-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
}

.side-banner-badge {
  display: inline-block;
  background: var(--primary, #ff3366);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.side-banner-title {
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 10px;
  color: #ffffff;
}

.side-banner-sub {
  font-size: 0.9rem;
  color: #e2e8f0;
  margin-bottom: 20px;
  line-height: 1.5;
}

.side-banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: #0f172a;
  font-size: 0.85rem;
  font-weight: 800;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.side-banner-btn:hover {
  background: var(--primary, #ff3366);
  color: #ffffff;
  transform: translateX(4px);
}

/* 3-Column Items in Banner Layout */
.product-slider-item.with-banner-item {
  flex: 0 0 calc((100% - (20px * 2)) / 3);
  max-width: calc((100% - (20px * 2)) / 3);
  min-width: calc((100% - (20px * 2)) / 3);
}

.product-grid.product-grid-3-cols {
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.product-grid.product-grid-4-cols {
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Responsive Breakpoints */
@media (max-width: 1200px) {
  .product-section-banner-layout.layout-1-row,
  .product-section-banner-layout.layout-2-rows {
    grid-template-columns: 280px 1fr;
  }
  .side-banner-card.tall-card {
    min-height: 720px;
  }
}

@media (max-width: 1024px) {
  .product-slider-item {
    flex: 0 0 calc((100% - (20px * 2)) / 3);
    max-width: calc((100% - (20px * 2)) / 3);
    min-width: calc((100% - (20px * 2)) / 3);
  }
  .product-section-banner-layout.layout-1-row,
  .product-section-banner-layout.layout-2-rows,
  .product-section-banner-layout.banner-right {
    grid-template-columns: 1fr;
  }
  .product-section-banner-layout.banner-right .section-side-banner,
  .product-section-banner-layout.banner-right .section-banner-products {
    order: initial;
  }
  .side-banner-card,
  .side-banner-card.tall-card {
    min-height: 320px;
  }
  .product-grid.product-grid-3-cols {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .product-slider-item,
  .product-slider-item.with-banner-item {
    flex: 0 0 calc((100% - 16px) / 2);
    max-width: calc((100% - 16px) / 2);
    min-width: calc((100% - 16px) / 2);
  }
  .slider-arrow.slider-prev {
    left: 4px;
  }
  .slider-arrow.slider-next {
    right: 4px;
  }
  .product-grid.product-grid-3-cols,
  .product-grid.product-grid-4-cols {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .product-slider-item,
  .product-slider-item.with-banner-item {
    flex: 0 0 calc(100% - 40px);
    max-width: calc(100% - 40px);
    min-width: calc(100% - 40px);
  }
}

/* Fallback full-width button for legacy templates */
.add-cart-btn {
  width: 100%;
  padding: 10px 0;
  background: var(--primary-light);
  color: var(--primary);
  border: 1.5px solid #fecdd3;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  transition: var(--transition);
}

.add-cart-btn:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(255, 51, 102, 0.25);
}

/* ==========================================================================
   Store Showcase ("All Under One Roof")
   ========================================================================== */
.store-showcase-section {
  padding: 50px 0;
  background: #f8fafc;
}

.store-showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.store-image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.store-features-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 25px;
}

.store-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #ffffff;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

.feature-icon-circle {
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.feature-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 4px;
}

.feature-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Kids Playground Fun Zone Section
   ========================================================================== */
.playground-section {
  padding: 40px 0;
}

.playground-banner-card {
  position: relative;
  background: linear-gradient(135deg, #fef3c7 0%, #fed7aa 50%, #fce7f3 100%);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  text-align: center;
  overflow: hidden;
  border: 2px dashed #fbbf24;
}

.playground-heading {
  font-size: 2.5rem;
  font-weight: 900;
  color: #1e293b;
  margin-bottom: 8px;
}

.playground-sub {
  font-size: 1.1rem;
  font-weight: 600;
  color: #e11d48;
  margin-bottom: 24px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer-main {
  position: relative;
  background: #0f172a;
  color: #cbd5e1;
  padding: 65px 0 24px;
  margin-top: 170px; /* Generous white space above for tall pop-out character */
  overflow: visible; /* Allows character to pop out into white space above */
  z-index: 5;
}

/* 1. Father & Son Pop-out Backdrop Layer (Lowest layer: bottom of footer to high into white space) */
.footer-popout-layer {
  position: absolute;
  right: max(10px, calc((100% - 1200px) / 2 - 25px));
  bottom: 0;
  height: 590px; /* Full span: from footer bottom all the way up into white space */
  z-index: 1; /* Sits UNDER footer text, UNDER big text, UNDER ssl icon */
  pointer-events: none;
  user-select: none;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.footer-popout-photo {
  height: 590px;
  width: auto;
  max-width: none;
  object-fit: contain;
  object-position: bottom right;
  display: block;
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.35));
}

/* 2. Background Brand Typography (Layer 2: sits on top of image, clipped to footer) */
.footer-text-backdrop {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
  z-index: 2; /* Sits ON TOP of father-son image */
}

.footer-art-text {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  font-family: 'Outfit', sans-serif;
  font-size: clamp(4.5rem, 12vw, 11.5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -2px;
  line-height: 0.85;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.05);
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.09);
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.03);
  z-index: 2;
}

/* 3. Foreground Container (Top layer: columns, text, links, and SSL icon) */
.footer-content-container {
  position: relative;
  z-index: 10; /* Highest z-index: sits ON TOP of everything */
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr 1.6fr;
  gap: 36px;
  margin-bottom: 40px;
}

.footer-col {
  position: relative;
  z-index: 2;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: 0.3px;
  text-shadow: 0 2px 10px rgba(15, 23, 42, 0.98), 0 0 6px rgba(0, 0, 0, 0.9);
}

.footer-col p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: #ffffff;
  font-weight: 500;
  margin-bottom: 16px;
  text-shadow: 0 2px 8px rgba(15, 23, 42, 0.98), 0 0 5px rgba(0, 0, 0, 0.9);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ffffff;
  font-size: 0.93rem;
  font-weight: 500;
  display: inline-block;
  text-shadow: 0 2px 8px rgba(15, 23, 42, 0.98), 0 0 6px rgba(0, 0, 0, 0.9);
  transition: all 0.2s ease;
}

.footer-links a:hover {
  color: #ff6584;
  padding-left: 5px;
  text-shadow: 0 2px 12px rgba(255, 51, 102, 0.6);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.92rem;
  font-weight: 500;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(15, 23, 42, 0.98), 0 0 6px rgba(0, 0, 0, 0.9);
}

.footer-contact-item i {
  color: #ff3366;
  margin-top: 4px;
  font-size: 1rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.8));
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  color: #ffffff;
}

.footer-copyright-text {
  color: #f1f5f9;
  font-weight: 500;
  text-shadow: 0 2px 6px rgba(15, 23, 42, 0.9);
}

.footer-copyright-text a {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.2s ease;
}

.footer-copyright-text a:hover {
  color: #ffffff;
}

.footer-payment-methods {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  max-width: 680px;
}

.footer-payment-methods a {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  border-radius: 6px;
  background: #ffffff;
  padding: 4px 10px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-payment-methods a:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.sslcommerz-banner-img {
  max-width: 100%;
  height: auto;
  max-height: 28px;
  object-fit: contain;
  display: block;
}

/* ==========================================================================
   Toast Notification & Cart Live Alerts
   ========================================================================== */
.toast-msg {
  position: fixed;
  bottom: 80px;
  right: 24px;
  background: rgba(15, 23, 42, 0.95);
  color: #ffffff;
  padding: 12px 22px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  z-index: 99999999 !important;
  transform: translateY(60px);
  opacity: 0;
  pointer-events: none;
  font-family: 'Outfit', 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.25s ease;
}

.toast-msg.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 768px) {
  .toast-msg {
    left: 16px;
    right: 16px;
    bottom: 74px;
    justify-content: center;
    text-align: center;
    padding: 11px 18px;
    font-size: 0.88rem;
  }
}

/* ==========================================================================
   Playground Parallax / Fixed Background Section (Elementor Style)
   ========================================================================== */
.playground-parallax-section {
  position: relative;
  width: 100%;
  min-height: 500px;
  padding: 120px 0 140px;
  background-attachment: fixed;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 30px 0;
}

.playground-content-wrap {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 20px;
}

.playground-tag {
  display: inline-block;
  font-size: 1.15rem;
  font-weight: 600;
  color: #16a34a;
  margin-bottom: 12px;
  letter-spacing: 0.3px;
}

.playground-title {
  font-size: 2.85rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.2;
  margin-bottom: 18px;
  font-family: 'Outfit', 'Inter', var(--font-heading), serif;
  letter-spacing: -0.5px;
}

.playground-sub {
  font-size: 1.18rem;
  font-weight: 600;
  color: #ef4444;
  line-height: 1.7;
  letter-spacing: 0.2px;
}

.playground-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: #0284c7;
  color: #ffffff !important;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(2, 132, 199, 0.35);
  transition: all 0.3s ease;
}

.playground-btn:hover {
  background: #0369a1;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(2, 132, 199, 0.45);
}

@media (max-width: 991px) {
  .playground-parallax-section {
    min-height: 420px;
    padding: 90px 0;
    background-attachment: scroll; /* Mobile smooth fallback */
  }
  .playground-title {
    font-size: 2.2rem;
  }
  .playground-sub {
    font-size: 1.05rem;
  }
}

@media (max-width: 576px) {
  .playground-parallax-section {
    min-height: 360px;
    padding: 70px 0;
  }
  .playground-title {
    font-size: 1.75rem;
  }
  .playground-sub {
    font-size: 0.95rem;
  }
}

/* ==========================================================================
   Comprehensive Mobile & Tablet Responsive System
   ========================================================================== */

@media (max-width: 1400px) {
  .container {
    max-width: 100%;
    padding: 0 24px;
  }
}

@media (max-width: 1200px) {
  .container {
    padding: 0 20px;
  }
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 28px;
  }
}

@media (max-width: 991px) {
  .container {
    padding: 0 16px;
  }
  .hero-slide {
    min-height: 520px;
    padding: 120px 0 45px;
  }
  .hero-title {
    font-size: 2.4rem;
  }
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 22px;
  }
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .store-showcase-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .footer-main {
    margin-top: 40px;
    padding: 45px 0 20px;
  }
}

@media (max-width: 768px) {
  body {
    padding-bottom: 64px !important;
  }
  .container {
    padding: 0 14px;
  }
  .hero-slider-section {
    width: 100%;
  }
  .hero-slide {
    min-height: 440px;
    padding: 95px 0 35px;
  }
  .hero-title {
    font-size: 1.85rem;
    margin-bottom: 12px;
  }
  .hero-subtitle {
    font-size: 0.92rem;
    margin-bottom: 18px;
    line-height: 1.5;
  }
  .hero-tag {
    font-size: 0.72rem;
    padding: 4px 12px;
    margin-bottom: 12px;
  }
  .section-header {
    margin-bottom: 24px;
  }
  .section-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  .section-tag {
    font-size: 0.78rem;
  }
  .products-section {
    padding: 30px 0 35px;
  }
  .how-to-order-section {
    padding: 35px 0 25px;
  }
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .step-card {
    padding: 16px 10px;
    border-radius: 12px;
    border: 1px solid #f1f5f9;
  }
  .step-icon-wrap {
    width: 54px;
    height: 54px;
    font-size: 1.3rem;
    margin-bottom: 12px;
  }
  .step-title {
    font-size: 0.85rem;
    margin-bottom: 4px;
  }
  .step-desc {
    font-size: 0.75rem;
    line-height: 1.4;
  }

  /* 2-Column Product Grid for Mobile */
  .product-grid,
  .shop-products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
  .product-card {
    border-radius: 12px;
  }
  .product-thumb {
    padding: 12px;
  }
  .product-info {
    padding: 10px 12px 14px;
  }
  .product-name {
    font-size: 0.86rem;
    height: 2.7em;
    margin-bottom: 4px;
    line-height: 1.35;
  }
  .product-category {
    font-size: 0.68rem;
  }
  .product-pricing {
    margin-bottom: 8px;
    gap: 6px;
  }
  .price-regular {
    font-size: 0.75rem;
  }
  .price-sale {
    font-size: 1rem;
  }
  .add-cart-btn {
    padding: 8px 0;
    font-size: 0.78rem;
    border-radius: 8px;
    gap: 4px;
  }
  .product-badge {
    top: 8px;
    left: 8px;
    font-size: 0.62rem;
    padding: 3px 8px;
  }

  /* Promo Banners */
  .promo-banners-section {
    padding: 20px 0 30px;
  }
  .promo-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .promo-card {
    min-height: 190px;
    padding: 24px 20px;
    border-radius: 12px;
  }
  .promo-card-content {
    max-width: 65%;
  }
  .promo-title {
    font-size: 1.35rem;
    margin-bottom: 14px;
  }
  .promo-subtitle {
    font-size: 0.82rem;
  }
  .promo-btn {
    padding: 8px 18px;
    font-size: 0.75rem;
  }

  /* Store Showcase & Playground */
  .store-showcase-section {
    padding: 35px 0;
  }
  .store-showcase-grid {
    gap: 24px;
  }
  .store-features-list {
    gap: 14px;
    margin-top: 18px;
  }
  .store-feature-item {
    padding: 12px 14px;
    border-radius: 10px;
  }
  .feature-icon-circle {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  .feature-title {
    font-size: 0.88rem;
  }
  .feature-desc {
    font-size: 0.78rem;
  }
  .playground-banner-card {
    padding: 32px 18px;
    border-radius: 14px;
  }
  .playground-heading {
    font-size: 1.7rem;
  }
  .playground-sub {
    font-size: 0.95rem;
    margin-bottom: 18px;
  }
  .playground-btn {
    padding: 10px 22px;
    font-size: 0.82rem;
  }

@media (max-width: 1024px) {
  .footer-main {
    margin-top: 130px;
  }
  .footer-popout-layer {
    right: 0;
    height: 480px;
    opacity: 0.65;
  }
  .footer-popout-photo {
    height: 480px;
  }
}

  /* Footer */
  .footer-main {
    margin-top: 90px;
    padding: 45px 0 16px;
  }
  .footer-art-text {
    font-size: clamp(3rem, 13vw, 5rem);
    bottom: 90px;
    opacity: 0.8;
  }
  .footer-popout-layer {
    right: 0;
    height: 320px;
    opacity: 0.25;
  }
  .footer-popout-photo {
    height: 320px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-bottom: 28px;
  }
  .footer-col h4 {
    margin-bottom: 12px;
    font-size: 1rem;
  }
  .footer-bottom {
    flex-direction: column-reverse;
    gap: 16px;
    text-align: center;
    padding-top: 18px;
  }
  .footer-payment-methods {
    justify-content: center;
    max-width: 100%;
    width: 100%;
  }
  .footer-payment-methods a {
    width: 100%;
    max-width: 550px;
    justify-content: center;
    padding: 6px 8px;
  }
  .sslcommerz-banner-img {
    width: 100%;
    max-height: 32px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }
  .hero-slide {
    min-height: 400px;
    padding: 85px 0 30px;
  }
  .hero-title {
    font-size: 1.6rem;
  }
  .hero-subtitle {
    font-size: 0.85rem;
  }
  .hero-slide-content .btn-primary {
    padding: 10px 20px;
    font-size: 0.82rem;
  }
  .product-grid,
  .shop-products-grid {
    gap: 8px;
  }
  .product-thumb {
    padding: 8px;
  }
  .product-info {
    padding: 8px 8px 12px;
  }
  .product-name {
    font-size: 0.82rem;
  }
  .price-sale {
    font-size: 0.95rem;
  }
  .add-cart-btn {
    font-size: 0.75rem;
    padding: 7px 0;
  }
  .steps-grid {
    gap: 8px;
  }
  .step-card {
    padding: 12px 6px;
  }
  .step-icon-wrap {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
    margin-bottom: 8px;
  }
  .step-title {
    font-size: 0.78rem;
  }
  .step-desc {
    font-size: 0.68rem;
  }
}

/* ==========================================================================
   Responsive Utilities for Cart, Checkout, and Tables
   ========================================================================== */
@media (max-width: 991px) {
  .cart-grid-wrap,
  .checkout-grid-wrap {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
}

@media (max-width: 768px) {
  .table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 16px;
  }
}

@media (max-width: 576px) {
  .checkout-form-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ==========================================================================
   Kids Paradise Simple Compact Toast Notification (Clean Floating Pill)
   ========================================================================== */
#kp-toast,
.toast-msg {
  position: fixed !important;
  bottom: 30px !important;
  left: 50% !important;
  right: auto !important;
  top: auto !important;
  transform: translate(-50%, 15px) !important;
  z-index: 99999999 !important;
  background: rgba(15, 23, 42, 0.92) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  color: #ffffff !important;
  padding: 8px 18px !important;
  border-radius: 999px !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22), 0 0 0 1px rgba(255, 255, 255, 0.1) !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  font-family: 'Inter', -apple-system, sans-serif !important;
  white-space: nowrap !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transition: opacity 0.22s ease, transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.22s ease !important;
  pointer-events: none !important;
  max-width: 90vw !important;
}

#kp-toast.show,
.toast-msg.show {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translate(-50%, 0) !important;
  pointer-events: auto !important;
}

#kp-toast .toast-icon,
.toast-msg i {
  font-size: 0.92rem !important;
  flex-shrink: 0 !important;
}

#kp-toast span,
.toast-msg span {
  display: inline-block !important;
}

@media (max-width: 640px) {
  #kp-toast,
  .toast-msg {
    bottom: 74px !important; /* Positioned right above mobile bottom nav */
    padding: 7px 15px !important;
    font-size: 0.8rem !important;
  }
}

/* Badge Bounce on Cart increment */
@keyframes badgeBump {
  0% { transform: scale(1); }
  35% { transform: scale(1.45); }
  65% { transform: scale(0.9); }
  100% { transform: scale(1); }
}
.badge-bump {
  animation: badgeBump 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

/* ==========================================================================
   Mini Cart Offcanvas Drawer (Matching Reference Screenshot 2)
   ========================================================================== */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 999998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s ease;
}

.cart-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 380px;
  max-width: 90vw;
  height: 100vh;
  background: #ffffff;
  z-index: 999999;
  box-shadow: -5px 0 35px rgba(0, 0, 0, 0.16);
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.cart-drawer.active {
  transform: translateX(0);
}

/* Header */
.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  flex-shrink: 0;
}

.cart-drawer-title {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  color: #1e293b;
  text-transform: uppercase;
  font-family: 'Outfit', 'Inter', sans-serif;
}

.cart-drawer-close {
  background: transparent;
  border: none;
  font-size: 1.25rem;
  color: #64748b;
  cursor: pointer;
  padding: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  line-height: 1;
}

.cart-drawer-close:hover {
  color: #0f172a;
  transform: scale(1.15);
}

/* Body & Items List */
.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 20px;
  -webkit-overflow-scrolling: touch;
}

.cart-drawer-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cart-drawer-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #f1f5f9;
  position: relative;
  transition: background 0.2s ease, opacity 0.25s ease, transform 0.25s ease;
}

.cart-drawer-item.removing {
  opacity: 0;
  transform: translateX(30px);
}

.cart-drawer-item-thumb {
  width: 62px;
  height: 62px;
  min-width: 62px;
  border-radius: 8px;
  border: 1px solid #f1f5f9;
  background: #f8fafc;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}

.cart-drawer-item-thumb a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-drawer-item-thumb img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.cart-drawer-item-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.cart-drawer-item-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: #1e293b;
  text-decoration: none;
  line-height: 1.35;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: color 0.15s;
}

.cart-drawer-item-name:hover {
  color: var(--primary, #ff3366);
}

.cart-drawer-item-attr {
  font-size: 0.74rem;
  color: #64748b;
  font-weight: 500;
}

.cart-drawer-item-price-qty {
  font-size: 0.88rem;
  font-weight: 600;
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-top: 2px;
}

.cart-drawer-item-price-qty .qty-num {
  color: #475569;
  font-size: 0.84rem;
  font-weight: 500;
}

.cart-drawer-item-price-qty .price-val {
  color: var(--primary, #ff3366);
  font-weight: 800;
  font-size: 0.95rem;
}

.cart-drawer-remove-btn {
  background: none;
  border: none;
  color: #ef4444;
  font-size: 0.95rem;
  cursor: pointer;
  padding: 6px;
  align-self: flex-start;
  margin-left: auto;
  transition: transform 0.2s, color 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.cart-drawer-remove-btn:hover {
  transform: scale(1.25);
  color: #dc2626;
}

/* Empty State */
.cart-drawer-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 16px;
  height: 100%;
}

.cart-drawer-empty .empty-icon-wrap {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #fff1f2;
  color: #ff3366;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.cart-drawer-empty .empty-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 6px;
}

.cart-drawer-empty .empty-subtitle {
  font-size: 0.84rem;
  color: #64748b;
  margin-bottom: 20px;
  max-width: 240px;
  line-height: 1.4;
}

.cart-drawer-empty .btn-drawer-shop {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--primary, #ff3366);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 4px 12px rgba(255, 51, 102, 0.25);
}

.cart-drawer-empty .btn-drawer-shop:hover {
  background: var(--primary-hover, #e11d48);
  transform: translateY(-2px);
}

/* Footer (Matching Reference Screenshot 2) */
.cart-drawer-footer {
  padding: 18px 20px 24px;
  border-top: 1px solid #e2e8f0;
  background: #ffffff;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.04);
}

.cart-drawer-subtotal-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-drawer-subtotal-row .subtotal-label {
  font-size: 1.15rem;
  font-weight: 700;
  color: #334155;
  font-family: 'Outfit', 'Inter', sans-serif;
}

.cart-drawer-subtotal-row .subtotal-amount {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--primary, #ff3366);
  font-family: 'Outfit', 'Inter', sans-serif;
}

.cart-drawer-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.btn-drawer-view-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0f172a;
  color: #ffffff !important;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 12px 14px;
  border-radius: 8px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
  text-align: center;
}

.btn-drawer-view-cart:hover {
  background: #1e293b;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.2);
}

.btn-drawer-checkout {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary, #ff3366);
  color: #ffffff !important;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 12px 14px;
  border-radius: 8px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
  text-align: center;
  box-shadow: 0 4px 14px rgba(255, 51, 102, 0.3);
}

.btn-drawer-checkout:hover {
  background: var(--primary-hover, #e11d48);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255, 51, 102, 0.45);
}

@media (max-width: 480px) {
  .cart-drawer {
    width: 100vw;
    max-width: 100vw;
  }
}

/* ==========================================================================
   Homepage Product Sliders & Dynamic Layouts
   ========================================================================== */

.product-slider-wrapper {
  position: relative;
  width: 100%;
}

.product-slider-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 10px 4px 16px;
  -webkit-overflow-scrolling: touch;
}

.product-slider-track::-webkit-scrollbar {
  display: none;
}

/* 4 Columns per row on Desktop (Max 10 items) */
.product-slider-item {
  flex: 0 0 calc((100% - (3 * 20px)) / 4);
  max-width: calc((100% - (3 * 20px)) / 4);
  min-width: 0;
  box-sizing: border-box;
}

.product-slider-item.with-banner-item {
  flex: 0 0 calc((100% - (2 * 16px)) / 3);
  max-width: calc((100% - (2 * 16px)) / 3);
}

.product-slider-item .product-card {
  height: 100%;
  margin: 0;
}

/* Slider Manual Navigation Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  color: #1e293b;
  border: 1px solid #e2e8f0;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  z-index: 10;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.slider-arrow:hover {
  background: var(--primary, #ff3366);
  color: #ffffff;
  border-color: var(--primary, #ff3366);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 24px rgba(255, 51, 102, 0.35);
}

.slider-arrow.slider-prev {
  left: -22px;
}

.slider-arrow.slider-next {
  right: -22px;
}

.slider-arrow.is-disabled {
  opacity: 0.25;
  cursor: not-allowed;
  pointer-events: none;
  transform: translateY(-50%) scale(0.95);
  box-shadow: none;
}

/* ==========================================================================
   Product Section Multi-Layout with Side Banners
   ========================================================================== */

.product-section-banner-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 24px;
  align-items: stretch;
}

.product-section-banner-layout.banner-right {
  grid-template-columns: 1fr 340px;
}

.product-section-banner-layout.banner-right .section-side-banner {
  order: 2;
}

.product-section-banner-layout.banner-right .section-banner-products {
  order: 1;
}

.section-side-banner {
  height: 100%;
}

.side-banner-card {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border-radius: 16px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px 24px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}

.side-banner-card.tall-card {
  min-height: 680px;
}

.side-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.1) 0%, rgba(15, 23, 42, 0.85) 100%);
  z-index: 1;
}

.side-banner-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
}

.side-banner-badge {
  display: inline-block;
  background: var(--primary, #ff3366);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.side-banner-title {
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 10px;
  color: #ffffff;
  font-family: 'Outfit', 'Inter', sans-serif;
}

.side-banner-sub {
  font-size: 0.86rem;
  color: #f1f5f9;
  line-height: 1.45;
  margin-bottom: 20px;
  opacity: 0.95;
}

.side-banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: #0f172a !important;
  font-weight: 800;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 11px 22px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.25s ease;
  width: fit-content;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.side-banner-btn:hover {
  background: var(--primary, #ff3366);
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(255, 51, 102, 0.4);
}

.product-grid-4-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-grid-3-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* ==========================================================================
   Responsive Breakpoints for Sliders & Layouts
   ========================================================================== */

@media (max-width: 1200px) {
  .product-section-banner-layout {
    grid-template-columns: 280px 1fr;
    gap: 18px;
  }
  .product-section-banner-layout.banner-right {
    grid-template-columns: 1fr 280px;
  }
  .side-banner-card {
    min-height: 380px;
    padding: 24px 18px;
  }
  .side-banner-card.tall-card {
    min-height: 600px;
  }
  .side-banner-title {
    font-size: 1.35rem;
  }
}

@media (max-width: 991px) {
  .product-slider-item {
    flex: 0 0 calc((100% - (2 * 16px)) / 3);
    max-width: calc((100% - (2 * 16px)) / 3);
  }
  .product-slider-item.with-banner-item {
    flex: 0 0 calc((100% - 16px) / 2);
    max-width: calc((100% - 16px) / 2);
  }
  .product-section-banner-layout,
  .product-section-banner-layout.banner-right {
    grid-template-columns: 1fr;
  }
  .product-section-banner-layout.banner-right .section-side-banner {
    order: 1;
  }
  .product-section-banner-layout.banner-right .section-banner-products {
    order: 2;
  }
  .side-banner-card,
  .side-banner-card.tall-card {
    min-height: 240px;
    padding: 28px 22px;
  }
  .product-grid-4-cols {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .product-grid-3-cols {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .slider-arrow.slider-prev {
    left: -8px;
  }
  .slider-arrow.slider-next {
    right: -8px;
  }
}

@media (max-width: 640px) {
  .product-slider-track {
    gap: 12px;
    padding: 6px 2px 12px;
  }
  .product-slider-item,
  .product-slider-item.with-banner-item {
    flex: 0 0 calc((100% - 12px) / 2);
    max-width: calc((100% - 12px) / 2);
  }
  .product-grid-4-cols,
  .product-grid-3-cols {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .slider-arrow {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
  }
  .slider-arrow.slider-prev {
    left: -6px;
  }
  .slider-arrow.slider-next {
    right: -6px;
  }
}

/* =========================================================================
   GLOBAL FORM CONTROLS & INPUT SYSTEM (STOREFRONT)
   ========================================================================= */
.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-bottom: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
  width: 100%;
  box-sizing: border-box;
}

.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 8px;
  line-height: 1.3;
}

.form-control {
  width: 100% !important;
  height: 48px;
  box-sizing: border-box !important;
  padding: 12px 16px;
  font-size: 0.95rem;
  font-family: inherit;
  color: #0f172a;
  background-color: #ffffff;
  border: 1.5px solid #cbd5e1;
  border-radius: 10px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  display: block;
}

textarea.form-control {
  height: auto !important;
  min-height: 85px;
  resize: vertical;
  line-height: 1.5;
}

select.form-control {
  appearance: auto;
  cursor: pointer;
}

.form-control:focus {
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 3.5px rgba(225, 29, 72, 0.12) !important;
  background-color: #ffffff;
}

.form-control::placeholder {
  color: #94a3b8;
  font-size: 0.88rem;
}

.form-control:disabled,
.form-control[readonly] {
  background-color: #f8fafc !important;
  color: #64748b !important;
  border-color: #e2e8f0 !important;
  cursor: not-allowed;
}

/* =========================================================================
   WISHLIST BUTTONS (PRODUCT CARD & PRODUCT DETAILS)
   ========================================================================= */
.btn-wishlist-toggle {
  position: absolute !important;
  top: 10px !important;
  right: 10px !important;
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.94) !important;
  border: 1px solid #e2e8f0 !important;
  color: #64748b !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1rem !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
  z-index: 10 !important;
  pointer-events: auto !important;
}

.btn-wishlist-toggle i,
.btn-wishlist-single i {
  pointer-events: none !important;
}

.btn-wishlist-toggle:hover {
  background: #ffffff !important;
  color: #e11d48 !important;
  transform: scale(1.12) !important;
  box-shadow: 0 4px 14px rgba(225, 29, 72, 0.25) !important;
}

.btn-wishlist-toggle.in-wishlist {
  color: #e11d48 !important;
  background: #ffffff !important;
  border-color: #fecdd3 !important;
  box-shadow: 0 2px 10px rgba(225, 29, 72, 0.18) !important;
}

.btn-wishlist-single {
  height: 50px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  border-radius: 12px;
  color: #334155;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-wishlist-single:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: #fff1f2;
}

.btn-wishlist-single.in-wishlist {
  border-color: #fecdd3;
  background: #fff1f2;
  color: #e11d48;
}


