/* ============================================================
   TOYSTORE — MASTER STYLESHEET
   Organized: Variables → Reset → Base → Layout → Components
   ============================================================ */

/* ── 1. CSS CUSTOM PROPERTIES ──────────────────────────────── */
:root {
  /* Brand Colors */
  --coral:    #FF6B6B;
  --sky:      #4ECDC4;
  --mint:     #6BCB77;
  --sun:      #FFD93D;
  --lav:      #C77DFF;
  --pink:     #FF6EB4;
  --navy:     #1A1A2E;
  --purple:   #8E7CFF;
  --yellow:   #FFD200;

  /* Neutrals */
  --cream:    #FFFDF7;
  --muted:    #F5F3ED;
  --text:     #2C2C3E;
  --sub:      #888;

  /* Semantic Aliases */
  --primary-color:  var(--coral);
  --dark-color:     #333;
  --light-bg:       var(--muted);

  /* Border Radii */
  --r-sm:     20px;
  --r-md:     30px;
  --r-lg:     40px;
  --r-pill:   50px;
  --r-circle: 50%;
  --card-r:   26px;

  /* Shadows */
  --shadow-sm:     0 8px 25px rgba(0, 0, 0, .02);
  --shadow-md:     0 10px 30px rgba(0, 0, 0, .03);
  --shadow-lg:     0 20px 40px rgba(0, 0, 0, .1);
  --shadow-coral:  0 5px 15px rgba(255, 107, 107, .4);
  --shadow-yellow: 0 8px 20px rgba(255, 217, 61, .4);
  --shadow-yellow-hover: 0 12px 28px rgba(255, 217, 61, .6);
  --shadow-toast:  0 10px 32px rgba(0, 0, 0, .25);

  /* Typography */
  --font-primary: 'Cairo', 'Nunito', sans-serif;
  --font-display: 'Baloo 2', cursive;
  --font-nav:     'Outfit', sans-serif;

  /* Sizing Tokens */
  --stat-icon-size:     50px;
  --avatar-sm:          42px;
  --avatar-md:          50px;
  --ctrl-btn-size:      44px;
  --cart-btn-size:      44px;
  --cat-circle-size:    200px;
  --cat-circle-radius:  30px;
  --hero-height:        55vh;
  --card-visual-height: 200px;

  /* Positioning */
  --toast-bottom:    26px;
  --toast-right:     26px;
  --navbar-padding:  20px 8%;
  --section-padding: 0 30px;
  --footer-padding:  60px 8% 30px;

  /* Animation */
  --ease:       cubic-bezier(.22, 1, .36, 1);
  --transition: .3s;
}


/* ── 2. RESET & BASE ────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-primary);
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
  min-height: 100vh;
}


/* ── 3. CUSTOM CURSOR ───────────────────────────────────────── */
#cur {
  position: fixed;
  top: 0; left: 0;
  width: 16px; height: 16px;
  border-radius: var(--r-circle);
  background: var(--coral);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform .12s, background .2s, width .2s, height .2s;
  mix-blend-mode: multiply;
}

#curR {
  position: fixed;
  top: 0; left: 0;
  width: 42px; height: 42px;
  border-radius: var(--r-circle);
  border: 2px solid var(--lav);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform .32s var(--ease), border-color .2s;
}


/* ── 4. BACKGROUND DECORATIONS ──────────────────────────────── */

/* Blobs */
.blobs,
.bg-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: var(--r-circle);
  filter: blur(85px);
  opacity: .06;
  animation: blobDrift 18s ease-in-out infinite;
}

.blob:nth-child(1) { width: 600px; height: 600px; background: var(--lav);   top: -150px; right: -100px; }
.blob:nth-child(2) { width: 400px; height: 400px; background: var(--sky);   bottom: 5%;  left: -80px;  animation-delay: -7s; }
.blob:nth-child(3) { width: 260px; height: 260px; background: var(--coral); top: 50%;    right: 15%;   animation-delay: -13s; }

@keyframes blobDrift {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-26px) scale(1.05); }
}

/* Spinning Rings */
.bg-ring {
  position: absolute;
  border-radius: var(--r-circle);
  border: 2px solid;
  opacity: .06;
  animation: spin linear infinite;
}

.bg-ring:nth-child(1) { width: 700px; height: 700px; border-color: var(--coral); top: -200px;  right: -200px; animation-duration: 40s; }
.bg-ring:nth-child(2) { width: 500px; height: 500px; border-color: var(--lav);   bottom: -100px; left: -150px; animation-duration: 30s; animation-direction: reverse; }
.bg-ring:nth-child(3) { width: 300px; height: 300px; border-color: var(--sky);   top: 40%;     left: 20%;     animation-duration: 25s; }

/* Floating Dots */
.bg-dot {
  position: absolute;
  border-radius: var(--r-circle);
  opacity: .06;
  animation: dotFloat ease-in-out infinite;
}

.bg-dot:nth-child(4) { width: 320px; height: 320px; background: var(--sun);   top: -60px;  left: 10%;  animation-duration: 16s; }
.bg-dot:nth-child(5) { width: 200px; height: 200px; background: var(--mint);  bottom: 20%; right: 5%;  animation-duration: 12s; animation-delay: -5s; }
.bg-dot:nth-child(6) { width: 150px; height: 150px; background: var(--pink);  top: 50%;    right: 30%; animation-duration: 18s; animation-delay: -9s; }

/* Confetti */
.confetti { position: fixed; inset: 0; pointer-events: none; z-index: 0; }

.cp {
  position: absolute;
  opacity: .1;
  color: var(--coral);
  font-size: 1rem;
  animation: cpDrift linear infinite;
}

@keyframes spin       { from { transform: rotate(0deg); }   to { transform: rotate(360deg); } }
@keyframes dotFloat   { 0%, 100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-30px) scale(1.06); } }
@keyframes cpDrift    { 0% { transform: translateY(-10px) rotate(0deg); opacity: .08; } 100% { transform: translateY(110vh) rotate(360deg); opacity: 0; } }


/* ── 5. UTILITY ─────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* ── 6. TOAST NOTIFICATION ──────────────────────────────────── */
.toast-notif {
  position: fixed;
  bottom: var(--toast-bottom);
  right: var(--toast-right);
  z-index: 700;
  background: var(--navy);
  color: #fff;
  border-radius: 18px;
  padding: 14px 22px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .92rem;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-toast);
  transform: translateY(20px);
  opacity: 0;
  transition: all .35s var(--ease);
  pointer-events: none;
  min-width: 220px;
}

.toast-notif.show { transform: translateY(0); opacity: 1; }

.toast-icon {
  width: 32px; height: 32px;
  border-radius: var(--r-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.toast-bar {
  height: 3px;
  background: var(--coral);
  border-radius: 2px;
  width: 100%;
  margin-top: 8px;
  animation: toastBar 2.8s linear forwards;
}

@keyframes toastBar { from { width: 100%; } to { width: 0; } }

/* Floating Toast (product page variant) */
.toast {
  position: fixed;
  bottom: 100px;
  right: 28px;
  z-index: 600;
  background: var(--navy);
  color: #fff;
  border-radius: 16px;
  padding: 13px 20px;
  font-weight: 700;
  font-size: .9rem;
  display: flex;
  align-items: center;
  gap: 9px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, .25);
  transform: translateY(16px);
  opacity: 0;
  transition: all .35s var(--ease);
  pointer-events: none;
}

.toast.show { transform: translateY(0); opacity: 1; }


/* ── 7. TOPBAR ──────────────────────────────────────────────── */
.top-bar {
  background: var(--sun);
  color: var(--navy);
  text-align: center;
  padding: 8px;
  font-weight: 700;
  font-size: 14px;
  position: relative;
  z-index: 5;
}


/* ── 8. NAVBAR ──────────────────────────────────────────────── */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--navbar-padding);
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-size: 28px;
  font-weight: 800;
  color: #7B61FF;
  font-family: var(--font-nav);
  text-decoration: none;
}

/* Brand gradient variant */
.brand {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.85rem;
  background: linear-gradient(135deg, var(--coral), var(--lav));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 28px;
}

.nav-links a,
.nl {
  text-decoration: none;
  color: #444;
  font-weight: 700;
  font-size: .95rem;
  font-family: var(--font-primary);
  padding: 6px 14px;
  position: relative;
  display: inline-block;
  transition: color .2s;
}

.nav-links a::after,
.nl::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 14px;
  height: 3px;
  width: 0;
  border-radius: 8px;
  background: var(--coral);
  transition: width .3s;
}

.nav-links a:hover,
.nav-links a.active,
.nl:hover { color: var(--purple); }

.nav-links a:hover::after,
.nl:hover::after { width: calc(100% - 28px); }

.nav-links a.active::after { width: calc(100% - 28px); }

/* Cart Button in Nav */
.ncart {
  background: var(--coral);
  color: #fff !important;
  border-radius: 50px;
  padding: 7px 20px !important;
  box-shadow: 0 4px 14px rgba(255, 107, 107, .4);
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.ncart:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(255, 107, 107, .55);
}

.cb {
  background: var(--sun);
  color: var(--navy);
  font-size: .65rem;
  font-weight: 900;
  padding: 2px 7px;
  border-radius: 20px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* Search Bar */
.search-bar {
  border: 1.5px solid #e8e8e8;
  border-radius: 22px;
  padding: 7px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: border-color .2s;
}

.search-bar:focus-within { border-color: var(--purple); }

.search-bar input {
  border: none;
  outline: none;
  font-size: 14px;
  width: 130px;
  font-family: var(--font-nav);
  color: #333;
}

.search-bar i { color: #aaa; font-size: 15px; }

/* Cart Icon Button */
.cart-btn {
  width: 40px; height: 40px;
  border-radius: var(--r-circle);
  background: var(--muted);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  transition: background .2s;
  position: relative;
}

.cart-btn:hover { background: #ede9ff; }

.cart-count {
  position: absolute;
  top: -4px; right: -4px;
  background: var(--coral);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  width: 18px; height: 18px;
  border-radius: var(--r-circle);
  display: flex;
  align-items: center;
  justify-content: center;
}

.action-btn {
  position: relative;
  color: var(--dark-color);
  font-size: 22px;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.action-btn .badge {
  position: absolute;
  top: -5px; right: -10px;
  background: var(--primary-color);
  color: #fff;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 50px;
  font-weight: bold;
}

/* Search Overlay */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
      background: white;
}

.search-overlay.active { display: flex; }

.search-overlay .close-search {
  position: absolute;
  top: 30px; right: 40px;
  font-size: 35px;
  cursor: pointer;
  color: var(--dark-color);
}

.search-form-full { width: 100%; max-width: 700px; text-align: center; }

.search-form-full input {
  width: 100%;
  border: none;
  border-bottom: 3px solid var(--primary-color);
  background: transparent;
  padding: 15px;
  font-size: 30px;
  outline: none;
  text-align: center;
}

.lang-country-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  border-left: 1px solid #eee;
  padding-left: 15px;
}

.menu-toggle { display: none; font-size: 28px; cursor: pointer; }


/* ── 9. BREADCRUMB ──────────────────────────────────────────── */
.bc-wrap { padding: 18px 0 0; position: relative; z-index: 1; }

.bc { background: none; margin: 0; padding: 0; }

.bc .breadcrumb-item a {
  color: var(--coral);
  text-decoration: none;
  font-weight: 700;
  font-size: .88rem;
}

.bc .breadcrumb-item.active { color: var(--sub); font-size: .88rem; }

.bc .breadcrumb-item + .breadcrumb-item::before { color: #ccc; }


/* ── 10. TRUST BAR ──────────────────────────────────────────── */
.trust-bar {
  display: flex;
  justify-content: space-around;
  background: var(--muted);
  padding: 15px 0;
  border-radius: 60px;
  width: 100%;
  margin: 20px  0;
  flex-wrap: wrap;
  gap: 15px;
  position: relative;
  z-index: 5;

}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}

.trust-item i { color: var(--coral); font-size: 18px; }


/* ── 11. HERO BANNER ────────────────────────────────────────── */
.hero-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(145deg, #FFE8E8, #FFF8D0);
  border-radius: var(--r-lg);
  padding: 40px 50px;
  margin: 20px 30px 40px;
  position: relative;
  z-index: 5;
  overflow: hidden;
  height: var(--hero-height);
  background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.hero-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(255, 107, 107, .1), transparent 60%);
  pointer-events: none;
}

.banner-left { flex: 1; position: relative; z-index: 2; }

.banner-tag {
  background: var(--sun);
  color: var(--navy);
  padding: 5px 15px;
  border-radius: var(--r-pill);
  display: inline-block;
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 20px;
}

.banner-left h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 3rem;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 20px;
}

.banner-left h1 span { color: var(--coral); }

.banner-left p {
  color: var(--text);
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 500px;
}

.banner-actions { display: flex; gap: 20px; align-items: center; }

/* CTA Buttons */
.btn-yellow {
  background: var(--sun);
  color: var(--navy);
  font-weight: 900;
  padding: 12px 32px;
  border-radius: var(--r-pill);
  text-decoration: none;
  display: inline-block;
  box-shadow: var(--shadow-yellow);
  transition: all var(--transition);
}

.btn-yellow:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-yellow-hover);
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  font-weight: 700;
  padding: 12px 20px;
  border-radius: var(--r-pill);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--navy);
  transition: all var(--transition);
}

.btn-ghost:hover { background: var(--navy); color: #fff; }

/* Stats (hero right) */
.banner-right {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.stat-card {
  background: rgba(255, 255, 255, .7);
  backdrop-filter: blur(10px);
  padding: 20px 18px;
  border-radius: var(--r-md);
  text-align: center;
  min-width: 120px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
}

.stat-icon {
  width: var(--stat-icon-size);
  height: var(--stat-icon-size);
  border-radius: var(--r-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  font-size: 24px;
}

.icon-yellow { background: var(--sun);  color: var(--navy); }
.icon-purple { background: var(--lav);  color: #fff; }
.icon-green  { background: var(--mint); color: #fff; }

.stat-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 24px;
  color: var(--navy);
}

.stat-label { font-size: 12px; font-weight: 700; color: var(--sub); }


/* ── 12. SECTION LAYOUT ─────────────────────────────────────── */
.section-wrapper {
  max-width: 1400px;
  margin: 0 auto 50px;
  padding: var(--section-padding);
  position: relative;
  z-index: 5;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--navy);
}

.slider-controls { display: flex; gap: 10px; }

.ctrl-btn {
  width: var(--ctrl-btn-size);
  height: var(--ctrl-btn-size);
  border-radius: var(--r-circle);
  border: none;
  background: var(--muted);
  color: var(--navy);
  font-size: 20px;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ctrl-btn:hover { background: var(--coral); color: #fff; }

/* Page Body */
.page-body { position: relative; z-index: 1; padding: 20px 0 80px; }


/* ── 13. CATEGORIES ─────────────────────────────────────────── */
.categories-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
}

.category-item {
  text-align: center;
  text-decoration: none;
  color: var(--navy);
  transition: transform var(--transition);
}

.category-item:hover { transform: translateY(-5px); }

.cat-circle {
  width: var(--cat-circle-size);
  height: var(--cat-circle-size);
  border-radius: var(--cat-circle-radius);
  background: var(--muted);
  margin: 0 auto 10px;

  transition: border-color var(--transition);
  background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
        border: 1px solid #8e7cff ; 
        margin-bottom: 2vh !important;
}

.category-item.active-category .cat-circle { border-color: var(--coral); }

.cat-name { font-weight: 700; font-size: 14px; }

/* Category Chips (shop page) */
.cat-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 10px 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.cat-scroll::-webkit-scrollbar { display: none; }

.cat-chip {
  padding: 10px 20px;
  border-radius: var(--r-pill);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  border: 2px solid transparent;
  transition: .3s;
}

.cc-default { background: #fff; color: var(--navy); border-color: #eee; }
.cc-active  { background: var(--coral); color: #fff; }


/* ── 14. PRODUCT CARDS ──────────────────────────────────────── */
.products-grid,
#productsGrid {
  display: grid;
  gap: 10px;
  margin-bottom: 40px;
}

.products-grid            { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
#productsGrid.list        { grid-template-columns: 1fr; }

.toy-card {
  background: #fff;
  border-radius: var(--r-md);
  overflow: hidden;

  transition: all .35s var(--ease);

  height: 100%;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  position: relative;
}

.toy-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 107, 107, .2);
  box-shadow: var(--shadow-lg);
}

/* Card Visual Area */
.card-visual {
  height: var(--card-visual-height);

  position: relative;
  border-radius: 20px !important;
  margin: 10px;
  padding: 28px 18px 10px;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
        background-size: contain !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
  


}

/* Visual Gradient Variants */
.vis-1 { background: linear-gradient(145deg, #FFE8E8, #FFD0D0); }
.vis-2 { background: linear-gradient(145deg, #E0F7FF, #C6F0FF); }
.vis-3 { background: linear-gradient(145deg, #E0FFE8, #C6F8D0); }

/* Card Image */
.card-img-container {
  width: 80%;
  transition: transform var(--ease);
  z-index: 1;
  cursor: pointer;
}

.card-img-container img {
  width: 100%;
  height: 160px;
  object-fit: contain;
}

/* Badges */
.card-badge {
  position: absolute;
  top: 13px; left: 14px;
  font-weight: 800;
  font-size: .74rem;
  padding: 4px 12px;
  border-radius: var(--r-pill);
  color: #fff;
  z-index: 2;
  text-transform: uppercase;
}

.badge-discount {
  position: absolute;
  top: 13px; left: 14px;
  background: var(--sun);
  color: var(--navy);
  font-weight: 900;
  padding: 4px 10px;
  border-radius: 10px;
  z-index: 2;
  font-size: .8rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .1);
}

.b-sale { background: var(--sun); color: var(--navy); }
.b-hot  { background: var(--coral); }
.b-love { background: var(--lav); }

/* Wishlist Button on Card */
.wish-btn,
.img-wish {
  position: absolute;
  top: 13px; right: 14px;
  border: none;
  background: rgba(255, 255, 255, .85);
  width: 35px; height: 35px;
  border-radius: var(--r-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ddd;
  font-size: 1rem;
  cursor: pointer;
  transition: all .25s;
  z-index: 3;
  box-shadow: 0 3px 14px rgba(0, 0, 0, .1);
}

.wish-btn.active,
.wish-btn:hover,
.img-wish.on,
.img-wish:hover {
  color: var(--coral);
  background: #fff;
  box-shadow: 0 4px 10px rgba(255, 107, 107, .3);
  transform: scale(1.2);
}

/* Card Info */
.card-info {
  padding: 16px 18px 18px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.age-chip {
  background: var(--muted);
  color: var(--navy);
  font-weight: 800;
  font-size: 11px;
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 8px;
}

.toy-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.toy-desc {
  color: var(--sub);
  font-size: .86rem;
  margin-bottom: 12px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 2.8em;
}

.card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

/* Pricing */
.price-wrap { display: flex; align-items: center; gap: 8px; }

.price {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--navy);
}

.price-old,
.old-price {
  color: #bbb;
  font-weight: 700;
  font-size: .85rem;
  text-decoration: line-through;
  margin-right: 5px;
}

/* Add-to-Cart Round Button */
.cart-btn-round {
  width: var(--cart-btn-size);
  height: var(--cart-btn-size);
  border-radius: var(--r-circle);
  border: none;
  background: var(--navy);
  color: #fff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: var(--shadow-coral);
}

.cart-btn-round:hover {
  background: var(--lav);
  transform: scale(1.1) rotate(10deg);
}

/* View All */
.view-all-wrapper { text-align: center; margin-top: 20px; }

.view-all-btn {
  background: transparent;
  color: var(--navy);
  font-weight: 900;
  padding: 14px 40px;
  border-radius: var(--r-pill);
  text-decoration: none;
  display: inline-block;
  border: 2.5px solid var(--navy);
  transition: all var(--transition);
}

.view-all-btn:hover { background: var(--navy); color: #fff; }


/* ── 15. PROMO SECTION ──────────────────────────────────────── */
.promo-section { margin: 40px 0 60px; }

.promo-card {
  border-radius: var(--r-lg);

  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.promo-circle {
  position: absolute;
  border-radius: var(--r-circle);
  background: rgba(255, 255, 255, .1);
}

.promo-circle.circle-1 { width: 400px; height: 400px; top: -150px; right: -80px; }
.promo-circle.circle-2 { width: 250px; height: 250px; bottom: -80px; left: -50px; }
.promo-circle.circle-3 { width: 180px; height: 180px; top: 30%; left: 20%; }

.promo-content { position: relative; z-index: 2; max-width: 60%; }

.promo-content h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2rem;
  color: #fff;
  margin-bottom: 15px;
}

.promo-content p { color: rgba(255, 255, 255, .9); margin-bottom: 20px; }

.promo-btn {
  background: #fff;
  color: var(--navy);
  font-weight: 900;
  padding: 12px 30px;
  border-radius: var(--r-pill);
  text-decoration: none;
  display: inline-block;
  transition: all var(--transition);
}

.promo-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, .1);
}

.promo-toy-emoji {
  font-size: 10rem;
  position: relative;
  z-index: 2;
  opacity: .8;
}


/* ── 16. PRODUCT PAGE ───────────────────────────────────────── */
.product-section { padding: 40px 0 60px; position: relative; z-index: 1; }

/* Gallery */
.gallery-wrap { position: sticky; top: 90px; }

.main-img-box {
  background: linear-gradient(145deg, #FFE8E8, #FFD0D0);
  border-radius: 28px;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(255, 107, 107, .18);
  transition: background .4s;
}

.main-img-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 65% 25%, rgba(255, 255, 255, .7), transparent 55%);
  pointer-events: none;
}

.main-img-el {
  max-width: 80%;
  max-height: 400px;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, .14));
  animation: mainFloat 4s ease-in-out infinite;
  position: relative;
  z-index: 1;
  transition: all .3s;
  object-fit: contain;
}

@keyframes mainFloat {
  0%, 100% { transform: scale(1) rotate(-4deg); }
  50%       { transform: scale(1.06) rotate(4deg) translateY(-12px); }
}

.img-badge {
  position: absolute;
  top: 18px; left: 18px;
  z-index: 2;
  font-weight: 800;
  font-size: .82rem;
  padding: 6px 16px;
  border-radius: 50px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .15);
}

.zoom-hint {
  position: absolute;
  bottom: 16px; right: 18px;
  background: rgba(26, 26, 46, .75);
  color: #fff;
  font-weight: 700;
  font-size: .78rem;
  padding: 7px 14px;
  border-radius: 50px;
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Thumbnails */
.thumbs { display: flex; gap: 12px; margin-top: 16px; flex-wrap: wrap; }

.thumb {
  width: 72px; height: 72px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 2.5px solid transparent;
  transition: all .25s;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .09);
  overflow: hidden;
}

.thumb img { width: 100%; height: 100%; object-fit: cover; }

.thumb:hover { transform: translateY(-3px) scale(1.08); box-shadow: 0 8px 22px rgba(0, 0, 0, .15); }
.thumb.active { border-color: var(--coral); box-shadow: 0 0 0 4px rgba(255, 107, 107, .2); }

.img-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  flex-wrap: wrap;
  gap: 8px;
}

.view-count { font-weight: 700; font-size: .88rem; color: var(--sub); display: flex; align-items: center; gap: 6px; }

.share-btns { display: flex; gap: 8px; }

.share-btn {
  width: 34px; height: 34px;
  border-radius: var(--r-circle);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .88rem;
  cursor: pointer;
  transition: all .22s;
  color: #fff;
}

/* Product Info Panel */
.prod-info { padding-right: 8px; }

.prod-cat-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #FFE8E8;
  color: var(--coral);
  font-weight: 800;
  font-size: .85rem;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.prod-title {
  font-weight: 900;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 12px;
}

/* Rating */
.rating-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 18px; }

.stars-big { color: var(--sun); font-size: 1.2rem; letter-spacing: 2px; }

.rating-num { font-weight: 900; font-size: 1.1rem; color: var(--navy); }

.rev-link { color: var(--coral); font-weight: 700; font-size: .9rem; text-decoration: none; }
.rev-link:hover { text-decoration: underline; }

.sold-badge { background: #E8FFE8; color: var(--mint); font-weight: 800; font-size: .82rem; padding: 4px 12px; border-radius: 20px; }

/* Price Box */
.price-box {
  background: var(--muted);
  border-radius: 20px;
  padding: 18px 22px;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.price-main { font-weight: 900; font-size: 2.5rem; color: var(--navy); }

.save-chip {
  background: var(--coral);
  color: #fff;
  font-weight: 800;
  font-size: .88rem;
  padding: 5px 14px;
  border-radius: 50px;
}

/* Stock Bar */
.stock-bar-wrap { margin-bottom: 22px; }

.stock-label {
  font-weight: 800;
  font-size: .9rem;
  color: var(--navy);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stock-bar { height: 8px; background: #eee; border-radius: 10px; overflow: hidden; }

.stock-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--mint), var(--sky));
  border-radius: 10px;
  animation: stockPulse 2s ease-in-out infinite;
}

@keyframes stockPulse { 0%, 100% { opacity: 1; } 50% { opacity: .75; } }

.stock-note { font-size: .82rem; color: var(--coral); font-weight: 800; margin-top: 6px; }

/* Color & Size Options */
.option-label { font-weight: 800; font-size: .95rem; color: var(--navy); margin-bottom: 10px; }

.color-opts { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 20px; }

.col-opt {
  width: 38px; height: 38px;
  border-radius: var(--r-circle);
  cursor: pointer;
  border: 3px solid transparent;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .14);
  transition: all .25s;
  position: relative;
}

.col-opt:hover { transform: scale(1.18); }
.col-opt.active { border-color: var(--navy); box-shadow: 0 0 0 5px rgba(26, 26, 46, .15); }
.col-opt.active::after { content: '✓'; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: #fff; font-size: .75rem; font-weight: 900; }

.size-opts { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 22px; }

.size-opt {
  padding: 9px 18px;
  border-radius: 12px;
  border: 2.5px solid #e8e8e8;
  font-weight: 800;
  font-size: .88rem;
  color: var(--sub);
  cursor: pointer;
  transition: all .22s;
  background: #fff;
}

.size-opt:hover { border-color: var(--navy); color: var(--navy); }
.size-opt.active { background: var(--navy); color: #fff; border-color: var(--navy); }

/* Qty + CTA Row */
.qty-cta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 22px; }

.qty-box {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 50px;
  overflow: hidden;
}

.qty-btn {
  width: 44px; height: 48px;
  border: none;
  background: transparent;
  font-size: 1.3rem;
  cursor: pointer;
  color: var(--navy);
  font-weight: 800;
  transition: background .2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-btn:hover { background: var(--muted); }

.qty-num { font-weight: 900; font-size: 1.15rem; color: var(--navy); min-width: 44px; text-align: center; }

.btn-cart-main {
  flex: 1;
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-weight: 900;
  font-size: 1.08rem;
  padding: 15px 28px;
  cursor: pointer;
  transition: all .25s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 180px;
}


.btn-wish-main {
  width: 52px; height: 52px;
  border-radius: var(--r-circle);
  background: #fff;
  border: 2.5px solid #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all .25s;
  box-shadow: 0 3px 12px rgba(0, 0, 0, .07);
  flex-shrink: 0;
}

.btn-wish-main:hover,
.btn-wish-main.on { color: var(--coral); border-color: var(--coral); transform: scale(1.14); }

.btn-buy-now {
  width: 100%;
  background: linear-gradient(135deg, var(--coral), #FF4040);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-weight: 900;
  font-size: 1.08rem;
  padding: 15px;
  cursor: pointer;
  transition: all .25s;
  box-shadow: 0 6px 22px rgba(255, 107, 107, .4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 18px;
}

.btn-buy-now:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 34px rgba(255, 107, 107, .55);
}

/* Divider */
.sect-divider { height: 1px; background: linear-gradient(90deg, transparent, #eee, transparent); margin: 22px 0; }


/* ── 17. PRODUCT TABS ───────────────────────────────────────── */
.tabs-wrap { position: relative; z-index: 1; padding: 0 0 60px; }

.tab-nav {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 30px;
  border-bottom: 2px solid #eee;
  padding-bottom: 0;
}

.tab-btn {
  font-weight: 800;
  font-size: 1rem;
  color: var(--sub);
  background: none;
  border: none;
  padding: 14px 22px;
  cursor: pointer;
  position: relative;
  transition: color .25s;
  border-radius: 12px 12px 0 0;
  font-family: var(--font-primary);
}

.tab-btn::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 3px;
  background: var(--coral);
  border-radius: 4px;
  transform: scaleX(0);
  transition: transform .3s var(--ease);
}

.tab-btn.active { color: var(--navy); }
.tab-btn.active::after { transform: scaleX(1); }

.tab-panel { display: none; animation: fadeIn .4s ease; }
.tab-panel.active { display: block; }

/* Specs Table */
.desc-text { font-size: 1rem; color: #555; line-height: 1.85; margin-bottom: 20px; }

.specs-table { width: 100%; border-collapse: separate; border-spacing: 0 8px; }

.specs-table tr td {
  padding: 14px 18px;
  background: #fff;
  font-size: .93rem;
}

.specs-table tr td:first-child {
  font-weight: 800;
  color: var(--navy);
  border-radius: 0 14px 14px 0;
  width: 38%;
  text-align: right;
}

.specs-table tr td:last-child {
  color: var(--sub);
  border-radius: 14px 0 0 14px;
  font-weight: 700;
  text-align: left;
}

.specs-table tr:hover td { background: var(--muted); }


/* ── 18. FLOATING CART BUTTON ───────────────────────────────── */
.fl-cart {
  position: fixed;
  bottom: 30px; right: 30px;
  z-index: 500;
  width: 60px; height: 60px;
  border-radius: var(--r-circle);
  background: linear-gradient(135deg, var(--coral), #FF4040);
  color: #fff;
  border: none;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(255, 107, 107, .55);
  cursor: pointer;
  text-decoration: none;
  animation: fcFloat 3.5s ease-in-out infinite;
  transition: transform .25s, box-shadow .25s;
}

@keyframes fcFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

.fl-cart:hover {
  transform: translateY(-4px) scale(1.1) !important;
  box-shadow: 0 14px 38px rgba(255, 107, 107, .65);
  color: #fff;
}

.fl-count {
  position: absolute;
  top: -4px; right: -4px;
  width: 22px; height: 22px;
  border-radius: var(--r-circle);
  background: var(--sun);
  color: var(--navy);
  font-size: .68rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .18);
}

/* Sticky Bottom Bar (mobile) */
.sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(255, 253, 247, .96);
  backdrop-filter: blur(20px);
  border-top: 1.5px solid #f0f0f0;
  padding: 12px 20px;
  display: none;
  align-items: center;
  gap: 12px;
  z-index: 400;
  box-shadow: 0 -8px 28px rgba(0, 0, 0, .1);
}

.sticky-price { font-weight: 900; font-size: 1.4rem; color: var(--navy); }

.sticky-cart {
  flex: 1;
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-weight: 900;
  font-size: 1rem;
  padding: 14px;
  cursor: pointer;
  transition: all .25s;
  font-family: var(--font-primary);
}

.sticky-cart:hover { background: var(--coral); }


/* ── 19. SHOP SIDEBAR & FILTERS ─────────────────────────────── */
.sidebar { position: sticky; top: 90px; }

.filter-card {
  background: #fff;
  border-radius: 22px;
  padding: 26px 22px;
  margin-bottom: 20px;
  border: 1.5px solid rgba(0, 0, 0, .04);
}

.filter-title {
  font-weight: 900;
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.filter-item { display: flex; align-items: center; gap: 10px; padding: 9px 12px; border-radius: 12px; cursor: pointer; }

.filter-item input[type=checkbox] { width: 18px; height: 18px; accent-color: var(--coral); }

.filter-item label { font-weight: 600; font-size: .92rem; flex: 1; cursor: pointer; }

input[type=range] { width: 100%; accent-color: var(--coral); height: 5px; }

.clear-btn {
  background: none;
  border: 2px solid var(--coral);
  color: var(--coral);
  font-weight: 800;
  padding: 8px 20px;
  border-radius: 50px;
  width: 100%;
  text-decoration: none;
  display: block;
  text-align: center;
  transition: .3s;
}

.clear-btn:hover { background: var(--coral); color: #fff; }

/* Toolbar */
.toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 28px;
}

.results-count { font-weight: 600; font-size: 1rem; color: var(--navy); }
.results-count span { color: var(--coral); }

.view-toggle { display: flex; gap: 6px; }

.view-btn {
  width: 38px; height: 38px;
  border-radius: 10px;
  border: 2px solid #eee;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sub);
  cursor: pointer;
  transition: all .22s;
}

.view-btn.active,
.view-btn:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

/* Pagination */
.pag-btn {
  width: 40px; height: 40px;
  border-radius: 12px;
  border: 2px solid #eee;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--sub);
  text-decoration: none;
}

.pag-btn.active,
.pag-btn:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

/* Mobile Filter Button & Offcanvas */
.mobile-filter-btn {
  display: none;
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 18px;
  padding: 14px 24px;
  font-weight: 800;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  justify-content: space-between;
  box-shadow: 0 8px 20px rgba(26, 26, 46, .15);
}

.offcanvas { border-radius: 30px 0 0 30px; background: var(--cream); border-left: none; width: 320px !important; }

.offcanvas-header { padding: 25px 25px 10px; }

.offcanvas-title { font-weight: 900; color: var(--navy); font-size: 1.4rem; }


/* ── 20. TESTIMONIALS ───────────────────────────────────────── */
.testimonials-section {
  background: var(--muted);
  padding: 60px 0;
  margin: 40px 0;
  position: relative;
  z-index: 5;
}

.testimonials-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--section-padding);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.review-card {
  background: #fff;
  border-radius: var(--r-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--ease), box-shadow var(--ease);
}

.review-card:hover { transform: translateY(-6px); box-shadow: 0 16px 36px rgba(0, 0, 0, .07); }

.review-stars { color: var(--sun); margin-bottom: 15px; display: flex; gap: 4px; }
.review-stars i { font-size: 16px; }

.review-text { font-size: 15px; line-height: 1.6; color: var(--text); margin-bottom: 20px; font-style: italic; }

.reviewer { display: flex; align-items: center; gap: 15px; }

.reviewer-avatar {
  width: var(--avatar-md);
  height: var(--avatar-md);
  border-radius: var(--r-circle);
  background-size: cover;
  background-position: center;
}

.reviewer-name { font-weight: 900; color: var(--navy); font-size: 14px; }
.reviewer-role { font-size: 12px; color: var(--sub); }


/* ── 21. NEWSLETTER ─────────────────────────────────────────── */
.newsletter-section {
  background: linear-gradient(135deg, var(--navy), #2D1B69);
  border-radius: var(--r-lg);
  padding: 50px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin: 40px 0;
}

.newsletter-left h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2rem;
  color: #fff;
  margin-bottom: 10px;
}

.newsletter-left p { color: rgba(255, 255, 255, .8); }

.newsletter-form { display: flex; gap: 10px; flex-wrap: wrap; }

.newsletter-form input {
  padding: 15px 20px;
  border: none;
  border-radius: var(--r-pill);
  width: 250px;
  font-family: var(--font-primary);
  font-weight: 700;
}

.newsletter-form button {
  background: var(--sun);
  border: none;
  border-radius: var(--r-pill);
  padding: 15px 35px;
  font-weight: 900;
  color: var(--navy);
  cursor: pointer;
  transition: all var(--transition);
}

.newsletter-form button:hover { background: var(--coral); color: #fff; }


/* ── 22. FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, .7);
  padding: var(--footer-padding);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .logo { color: #fff; margin-bottom: 16px; display: block; }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 260px; margin-bottom: 24px; }

.social-links { display: flex; gap: 10px; }

.social-btn {
  width: 38px; height: 38px;
  border-radius: var(--r-circle);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .7);
  font-size: 16px;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
}

.social-btn:hover { background: var(--purple); color: #fff; border-color: var(--purple); }

.footer-col h4 { font-family: var(--font-nav); font-size: 16px; font-weight: 800; color: #fff; margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { text-decoration: none; color: rgba(255, 255, 255, .6); font-size: 14px; transition: color .2s; }
.footer-col ul li a:hover { color: var(--yellow); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.payment-icons { display: flex; gap: 8px; }

.pay-icon {
  background: rgba(255, 255, 255, .1);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, .7);
}


/* ── 23. RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1100px) {
  .products-grid           { grid-template-columns: repeat(2, 1fr); }
  .categories-grid         { grid-template-columns: repeat(3, 1fr); }
  .footer-grid             { grid-template-columns: 1fr 1fr; }
  .testimonials-grid       { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
  .menu-toggle { display: block; }

  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    padding: 80px 30px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, .1);
    transition: .4s;
    z-index: 1500;
  }

  .nav-links.active { right: 0; }

  .lang-country-wrap { border: none; padding: 0; }

  .hero-banner { flex-direction: column; text-align: center; padding: 30px 20px; }
  .banner-left p { margin-left: auto; margin-right: auto; }
  .banner-actions { justify-content: center; }

  .promo-card { flex-direction: column; text-align: center; padding: 30px 20px; }
  .promo-content { max-width: 100%; }
  .promo-toy-emoji { font-size: 5rem; margin-top: 20px; }

  .newsletter-section { flex-direction: column; text-align: center; }

  .sidebar-desktop { display: none; }
  .mobile-filter-btn { display: flex; }


  /* Product page */
  .prod-info { padding-right: 0; margin-top: 10px; }
  .gallery-wrap { position: static; }
  .sticky-bar { display: flex; }
  body { padding-bottom: 80px; }

  /* Disable custom cursor on touch */
  body { cursor: default; }
  #cur, #curR { display: none; }

  .page-body { padding-top: 10px; }
}

@media (max-width: 768px) {
  nav.navbar { flex-direction: row; }

  .hero-banner { height: auto; min-height: 30vh; padding: 20px 10px; margin: 5px; }
  .cat-circle {         width: 95px;
        height: 95px;
       }

  .newsletter-left h2 { font-size: 1.2rem; text-align: center; }
  .trust-bar { display: none; }

  h2.section-title { font-size: larger; margin: 20px 0; }
  a.logo.notranslate { display: none; }

  .toy-card { border-radius: 18px; }
  .card-img-container img { height: 110px; }
  .toy-name { font-size: .95rem; margin-bottom: 4px; }
  .toy-desc { font-size: .75rem; height: 2.2em; margin-bottom: 8px; }
  .price { font-size: 1.1rem; }
  .card-info { padding: 10px 12px 14px; }
  .cart-btn-round { width: 34px; height: 34px; font-size: .8rem; }
  .card-badge,
  .badge-discount { font-size: .65rem; padding: 3px 8px; top: 8px; left: 8px; }
  .wish-btn { width: 30px; height: 30px; top: 8px; right: 8px; font-size: .8rem; }
}

@media (max-width: 640px) {
  .products-grid           { grid-template-columns: 1fr; }
  .categories-grid         { grid-template-columns: repeat(2, 1fr); }
  .banner-left h1          { font-size: 40px; }
  .navbar                  { flex-direction: column; gap: 14px; }
  .nav-links               { flex-wrap: wrap; justify-content: center; gap: 14px; }
  .footer-grid             { grid-template-columns: 1fr; }
  .testimonials-grid       { grid-template-columns: 1fr; }
  .newsletter-form         { flex-direction: column; }
  .promo-toy-emoji         { display: none; }
}

@media (max-width: 575px) {
  .trust-bar               { flex-direction: column; align-items: center; }
  .banner-right            { flex-direction: column; width: 100%; }
  .stat-card               { width: 100%; }
  .products-grid           { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .cat-scroll             { padding: 10px 15px; margin: 0 -15px; }
}

@media (max-width: 575px) {
  .main-img-box           { min-height: 320px; }
  .main-img-el            { max-height: 240px; }
  .price-main             { font-size: 2rem; }
}



    :root {
      --coral:   #FF6B6B;
      --sky:     #4ECDC4;
      --mint:    #6BCB77;
      --sun:     #FFD93D;
      --lav:     #C77DFF;
      --pink:    #FF6EB4;
      --navy:    #1A1A2E;
      --cream:   #FFFDF7;
      --muted:   #F5F3ED;
      --text:    #2C2C3E;
      --sub:     #999;
      --ease:    cubic-bezier(.22,1,.36,1);
    }


    .bg-canvas{position:fixed;inset:0;z-index:0;pointer-events:none;overflow:hidden}
    .bg-ring{position:absolute;border-radius:50%;border:2px solid;opacity:.06;animation:spin linear infinite}
    .bg-ring:nth-child(1){width:700px;height:700px;border-color:var(--coral);top:-200px;right:-200px;animation-duration:40s}
    .bg-ring:nth-child(2){width:500px;height:500px;border-color:var(--lav);bottom:-100px;left:-150px;animation-duration:30s;animation-direction:reverse}
    .bg-ring:nth-child(3){width:300px;height:300px;border-color:var(--sky);top:40%;left:20%;animation-duration:25s}
    @keyframes spin{from{transform:rotate(0deg)}to{transform:rotate(360deg)}}

    .bg-dot{position:absolute;border-radius:50%;opacity:.06;animation:dotFloat ease-in-out infinite}
    .bg-dot:nth-child(4){width:320px;height:320px;background:var(--sun);top:-60px;left:10%;animation-duration:16s}
    .bg-dot:nth-child(5){width:200px;height:200px;background:var(--mint);bottom:20%;right:5%;animation-duration:12s;animation-delay:-5s}
    .bg-dot:nth-child(6){width:150px;height:150px;background:var(--pink);top:50%;right:30%;animation-duration:18s;animation-delay:-9s}
    @keyframes dotFloat{0%,100%{transform:translateY(0) scale(1)}50%{transform:translateY(-30px) scale(1.06)}}

    .confetti{position:fixed;inset:0;pointer-events:none;z-index:0}
    .cp{position:absolute;opacity:.1;animation:cpDrift linear infinite;color:var(--coral);font-size:1rem}
    @keyframes cpDrift{0%{transform:translateY(-10px) rotate(0deg);opacity:.08}100%{transform:translateY(110vh) rotate(360deg);opacity:0}}





    .cart-main{position:relative;z-index:1;padding:40px 0 100px}
    .cart-col-title{font-family:'Baloo 2',cursive;font-weight:900;font-size:1.4rem;color:var(--navy);margin-bottom:20px;display:flex;align-items:center;gap:10px}

    .cart-item{background:#fff;border-radius:24px;padding:0;overflow:hidden;margin-bottom:18px;border:2px solid transparent;transition:all .35s var(--ease)}
    .cart-item:hover{border-color:rgba(255,107,107,.2);box-shadow:0 14px 44px rgba(0,0,0,.13);transform:translateY(-3px)}
    .cart-item.removing{transform:translateX(100%) rotate(8deg) scale(.8);opacity:0;margin-bottom:0;max-height:0;padding:0}

    .item-inner{display:flex;align-items:stretch}

    .item-visual{width:130px;flex-shrink:0;display:flex;align-items:center;justify-content:center;padding:20px 10px;min-height:140px;background:var(--muted)}
    .item-visual img{width:100%;height:100%;object-fit:contain;max-height:110px;transition:transform .35s var(--ease)}
    .cart-item:hover .item-visual img{transform:scale(1.1) rotate(-4deg) translateY(-4px)}

    .item-img-placeholder{width:80px;height:80px;border-radius:16px;display:flex;align-items:center;justify-content:center;background:rgba(255,255,255,.7)}
    .item-img-placeholder i{font-size:2.5rem;color:var(--coral)}

    .item-details{flex:1;padding:18px 16px 18px 8px;display:flex;flex-direction:column;justify-content:space-between}
    .item-top{display:flex;align-items:flex-start;justify-content:space-between;gap:8px}
    .item-name{font-family:'Baloo 2',cursive;font-weight:900;font-size:1.1rem;color:var(--navy);line-height:1.2}
    .item-meta{display:flex;gap:8px;flex-wrap:wrap;margin-top:6px;align-items:center}
    .meta-tag{font-size:.76rem;font-weight:800;padding:3px 10px;border-radius:20px;background:#FFE8E8;color:var(--coral)}
    .item-price-unit{color:var(--sub);font-size:.85rem;font-weight:700;margin-top:4px}
    .item-bottom{display:flex;align-items:center;justify-content:space-between;gap:12px;flex-wrap:wrap;margin-top:12px}

    .qty-stepper{display:flex;align-items:center;background:var(--muted);border-radius:50px;overflow:hidden;height:40px}
    .qs-btn{width:40px;height:40px;border:none;background:transparent;font-size:1.1rem;font-weight:900;cursor:pointer;color:var(--navy);transition:background .2s,transform .15s;display:flex;align-items:center;justify-content:center}
    .qs-btn:hover{background:rgba(0,0,0,.06);transform:scale(1.12)}
    .qs-num{font-family:'Baloo 2',cursive;font-weight:900;font-size:1rem;color:var(--navy);min-width:36px;text-align:center;transition:transform .25s,color .25s}
    .item-price-total{font-family:'Baloo 2',cursive;font-weight:900;font-size:1.35rem;color:var(--navy)}

    .remove-btn{width:36px;height:36px;border-radius:50%;border:none;background:#FFE8E8;color:var(--coral);font-size:.9rem;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:all .25s;flex-shrink:0}
    .remove-btn:hover{background:var(--coral);color:#fff;transform:scale(1.16) rotate(10deg)}

    .save-later-btn{background:none;border:none;color:var(--sub);font-family:'Baloo 2',cursive;font-weight:700;font-size:.8rem;cursor:pointer;transition:color .2s;display:flex;align-items:center;gap:5px;padding:0}
    .save-later-btn:hover{color:var(--coral)}

    .promo-card{background: #fff;
    border-radius: var(--r-lg);

    margin-bottom: 18px;
    border: 2px solid transparent;
    transition: border-color .25s;
    position: relative;
    height: 55vh;
}
    
    
    
    .promo-card:focus-within{border-color:var(--coral)}
    .promo-input{border:none;outline:none;flex:1;font-family:'Cairo','Nunito',sans-serif;font-weight:800;font-size:.97rem;color:var(--navy);background:var(--muted);border-radius:50px;padding:12px 20px}
    .promo-input::placeholder{color:#bbb;font-weight:600}
    .promo-btn{background:var(--navy);color:#fff;border:none;border-radius:50px;padding:12px 22px;font-family:'Baloo 2',cursive;font-weight:800;font-size:.9rem;cursor:pointer;transition:all .25s;white-space:nowrap}
    .promo-btn:hover{background:var(--coral);transform:scale(1.04)}
    .promo-success{display:none;color:var(--mint);font-family:'Baloo 2',cursive;font-weight:800;font-size:.9rem;align-items:center;gap:6px;margin-top:10px}
    .promo-success.show{display:flex}
    .coupon-ribbon{display:none;position:absolute;top:-2px;right:16px;background:var(--mint);color:#fff;font-family:'Baloo 2',cursive;font-weight:900;font-size:.75rem;padding:4px 12px;border-radius:0 0 12px 12px}
    .promo-card.has-coupon .coupon-ribbon{display:block}

    .summary-card{background:#fff;border-radius:28px;overflow:hidden;position:sticky;top:90px;border:2px solid rgba(255,107,107,.08)}
    .summary-header{background:linear-gradient(135deg,var(--navy),#2D1B69);padding:24px 28px;position:relative;overflow:hidden}
    .summary-header::before{content:'';position:absolute;inset:0;background:radial-gradient(circle at 80% 50%,rgba(199,125,255,.2),transparent 60%)}
    .summary-title{font-family:'Baloo 2',cursive;font-weight:900;font-size:1.4rem;color:#fff;position:relative;z-index:1}
    .summary-icon{font-size:2rem;position:relative;z-index:1;color:var(--sun);animation:basketRock 3s ease-in-out infinite}
    @keyframes basketRock{0%,100%{transform:rotate(-6deg) scale(1)}50%{transform:rotate(6deg) scale(1.06) translateY(-8px)}}

    .summary-body{padding:24px 26px}
    .sum-row{display:flex;align-items:center;justify-content:space-between;margin-bottom:14px;font-size:.95rem}
    .sum-label{color:var(--sub);font-weight:700;display:flex;align-items:center;gap:6px}
    .sum-val{font-family:'Baloo 2',cursive;font-weight:800;color:var(--navy)}
    .sum-divider{height:1px;background:linear-gradient(90deg,transparent,#eee,transparent);margin:16px 0}
    .sum-discount-row{display:flex;align-items:center;justify-content:space-between;margin-bottom:14px;font-size:.95rem}
    .sum-discount-label{color:var(--mint);font-weight:800;display:flex;align-items:center;gap:6px}
    .sum-discount-val{font-family:'Baloo 2',cursive;font-weight:800;color:var(--mint)}
    .sum-total-row{background:linear-gradient(135deg,#FFF8D0,#FFE8E8);border-radius:16px;padding:16px 18px;margin:18px 0;display:flex;align-items:center;justify-content:space-between}
    .sum-total-label{font-family:'Baloo 2',cursive;font-weight:900;font-size:1.05rem;color:var(--navy);display:flex;align-items:center;gap:8px}
    .sum-total-val{font-family:'Baloo 2',cursive;font-weight:900;font-size:1.7rem;color:var(--navy)}

    .savings-banner{background:linear-gradient(135deg,var(--mint),var(--sky));border-radius:14px;padding:12px 16px;text-align:center;margin-bottom:18px;display:none}
    .savings-banner span{font-family:'Baloo 2',cursive;font-weight:900;font-size:.95rem;color:#fff}

    .btn-checkout{width:100%;background:linear-gradient(135deg,var(--coral),#FF3A3A);color:#fff;border:none;border-radius:50px;font-family:'Baloo 2',cursive;font-weight:900;font-size:1.15rem;padding:18px;cursor:pointer;transition:all .3s;box-shadow:0 8px 28px rgba(255,107,107,.5);display:flex;align-items:center;justify-content:center;gap:10px;position:relative;overflow:hidden;text-decoration:none}
    .btn-checkout::before{content:'';position:absolute;inset:0;background:linear-gradient(135deg,rgba(255,255,255,.15),transparent);opacity:0;transition:opacity .3s}
    .btn-checkout:hover{transform:translateY(-4px) scale(1.02);box-shadow:0 16px 42px rgba(255,107,107,.6);color:#fff}
    .btn-checkout:hover::before{opacity:1}
    .btn-checkout .arrow{transition:transform .3s}
    .btn-checkout:hover .arrow{transform:translateX(4px)}

    .btn-continue{width:100%;background:transparent;color:var(--navy);border:2.5px solid var(--navy);border-radius:50px;font-family:'Baloo 2',cursive;font-weight:900;font-size:1rem;padding:13px;cursor:pointer;transition:all .25s;display:flex;align-items:center;justify-content:center;gap:8px;margin-top:10px;text-decoration:none}
    .btn-continue:hover{background:var(--navy);color:#fff;transform:translateY(-2px)}

    .empty-state{text-align:center;padding:80px 30px;display:none}
    .empty-state.show{display:block}
    .empty-icon-wrap{width:120px;height:120px;border-radius:50%;background:linear-gradient(135deg,#FFE8E8,#FFD0D0);display:flex;align-items:center;justify-content:center;margin:0 auto 24px;animation:emptyFloat 3s ease-in-out infinite}
    .empty-icon-wrap i{font-size:3.5rem;color:var(--coral)}
    @keyframes emptyFloat{0%,100%{transform:translateY(0) rotate(-5deg)}50%{transform:translateY(-16px) rotate(5deg)}}
    .empty-title{font-family:'Baloo 2',cursive;font-weight:900;font-size:2rem;color:var(--navy);margin-bottom:10px}
    .empty-sub{color:var(--sub);font-size:1rem;margin-bottom:28px}
    .btn-shop-now{background:linear-gradient(135deg,var(--coral),var(--lav));color:#fff;border:none;border-radius:50px;font-family:'Baloo 2',cursive;font-weight:900;font-size:1.05rem;padding:15px 36px;box-shadow:0 6px 24px rgba(255,107,107,.45);transition:all .25s;text-decoration:none;display:inline-flex;align-items:center;gap:10px}
    .btn-shop-now:hover{transform:translateY(-4px) scale(1.04);color:#fff}

    .toast-notif{position:fixed;bottom:26px;right:26px;z-index:700;background:var(--navy);color:#fff;border-radius:18px;padding:14px 22px;font-family:'Baloo 2',cursive;font-weight:700;font-size:.92rem;display:flex;align-items:center;gap:10px;box-shadow:0 10px 32px rgba(0,0,0,.25);transform:translateY(20px);opacity:0;transition:all .35s var(--ease);pointer-events:none;min-width:220px}
    .toast-notif.show{transform:translateY(0);opacity:1}
    .toast-icon{width:32px;height:32px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:1rem;flex-shrink:0}
    .toast-bar{height:3px;background:var(--coral);border-radius:2px;width:100%;margin-top:8px;animation:toastBar 2.8s linear forwards}
    @keyframes toastBar{from{width:100%}to{width:0}}

    .delivery-box{background:var(--muted);border-radius:14px;padding:12px 16px;margin-bottom:18px;display:flex;align-items:center;gap:12px}
    .delivery-icon{width:42px;height:42px;border-radius:12px;background:linear-gradient(135deg,var(--coral),var(--lav));display:flex;align-items:center;justify-content:center;flex-shrink:0}
    .delivery-icon i{font-size:1.2rem;color:#fff}

    .reveal{opacity:0;transform:translateY(22px);transition:opacity .6s var(--ease),transform .6s var(--ease)}
    .reveal.in{opacity:1;transform:translateY(0)}

    .item-visual{border-radius:20px !important;margin:10px;background:white !important}

    @media(max-width:991px){
      .item-visual{width:100px}
      .summary-card{position:static}
      .step-line{width:36px}
    }
    @media(max-width:575px){
      .item-inner{flex-wrap:wrap}
      .item-visual{width:100%;min-height:100px}
      .item-details{padding:12px 16px}
    }
    
    
    /**/
    
      <style>


    .wh-card {
      background: var(--card); border-radius: 26px;
      padding: 30px 28px; margin-bottom: 22px;
      border: 2px solid transparent;
      box-shadow: 0 4px 24px rgba(0,0,0,.05);
      transition: border-color .3s var(--ease), box-shadow .3s var(--ease), transform .3s var(--ease);
    }
    .wh-card:focus-within {
      border-color: rgba(255,107,107,.25);
      box-shadow: 0 8px 40px rgba(255,107,107,.1);
      transform: translateY(-2px);
    }

    .sec-head {
      display: flex; align-items: center; gap: 12px;
      margin: 25px 0;
    }
    
    .checkout-wrap {
    margin: 5vh 0;
}

    .sec-num {
      width: 36px; height: 36px; border-radius: 12px;
      background: linear-gradient(135deg, var(--coral), var(--lav));
      color: #fff; display: flex; align-items: center; justify-content: center;
      font-family: 'Cairo', sans-serif; font-weight: 900; font-size: .95rem;
      flex-shrink: 0; box-shadow: 0 4px 14px rgba(255,107,107,.35);
    }
    .sec-title {
      font-family: 'Cairo', sans-serif; font-weight: 900; font-size: 1.1rem;
      color: var(--navy); line-height: 1;
    }

    .wh-label {
      display: block; font-family: 'Cairo', sans-serif;
      font-weight: 700; font-size: .8rem;
      color: var(--sub); margin-bottom: 7px; letter-spacing: .02em;
    }
    .wh-field {
      width: 100%; padding: 13px 16px;
      background: var(--muted);
      border: 2px solid transparent; border-radius: 14px;
      color: var(--navy); font-family: 'Cairo', sans-serif;
      font-weight: 700; font-size: .95rem;
      transition: all .25s; outline: none;
      direction: rtl;
    }
    .wh-field::placeholder { color: #bbb; font-weight: 600; }
    .wh-field:focus {
      border-color: var(--coral);
      background: #fff;
      box-shadow: 0 0 0 4px rgba(255,107,107,.1);
    }
    .wh-field option { background: #fff; color: var(--navy); }

    .pay-opt {
      border-radius: 18px; padding: 18px 20px; margin-bottom: 12px;
      border: 2.5px solid #eee; background: var(--muted);
      cursor: pointer; transition: all .3s var(--ease);
      position: relative; overflow: hidden;
    }
    .pay-opt::after {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(135deg,rgba(255,107,107,.06),rgba(199,125,255,.05));
      opacity: 0; transition: opacity .3s;
    }
    .pay-opt:hover { border-color: rgba(255,107,107,.35); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.08); }
    .pay-opt.active { border-color: var(--coral); background: #fff; box-shadow: 0 8px 28px rgba(255,107,107,.18); }
    .pay-opt.active::after { opacity: 1; }

    .pay-opt-inner { display: flex; align-items: center; gap: 14px; position: relative; z-index: 1; }
    .pay-radio-ring {
      width: 22px; height: 22px; border-radius: 50%;
      border: 2.5px solid #ddd; background: #fff;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; transition: all .25s;
    }
    .pay-opt.active .pay-radio-ring { border-color: var(--coral); background: var(--coral); }
    .pay-radio-dot {
      width: 8px; height: 8px; border-radius: 50%; background: #fff;
      opacity: 0; transform: scale(0); transition: all .25s;
    }
    .pay-opt.active .pay-radio-dot { opacity: 1; transform: scale(1); }

    .pay-name {
      font-family: 'Cairo', sans-serif; font-weight: 900; font-size: 1rem;
      color: var(--navy); flex: 1;
    }
    .pay-badge {
      background: linear-gradient(135deg, var(--sun), #ffb700);
      color: var(--navy); font-family: 'Cairo', sans-serif;
      font-weight: 900; font-size: .72rem; padding: 4px 12px;
      border-radius: 20px; white-space: nowrap;
      box-shadow: 0 2px 8px rgba(255,183,0,.35);
    }
    .pay-detail {
      font-size: .8rem; color: var(--sub); font-weight: 700;
      margin-top: 10px; padding-right: 36px;
      display: flex; align-items: center; gap: 6px;
    }

    .summary-outer {
      background: var(--card); border-radius: 28px; overflow: hidden;
      position: sticky; top: 88px;
   
    }
    .summary-hd {
      background: linear-gradient(135deg, var(--navy) 0%, #2D1B69 100%);
      padding: 26px 28px; position: relative; overflow: hidden;
    }
    .summary-hd::before {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(circle at 80% 40%, rgba(199,125,255,.22), transparent 55%);
    }
    .summary-hd-row {
      display: flex; align-items: center; gap: 12px;
      position: relative; z-index: 1;
    }
    .summary-hd-icon {
      font-size: 2rem; color: var(--sun);
      animation: sicon 3s ease-in-out infinite;
    }
    @keyframes sicon { 0%,100%{transform:rotate(-7deg) scale(1)} 50%{transform:rotate(7deg) scale(1.08) translateY(-6px)} }
    .summary-hd-title {
      font-family: 'Cairo', sans-serif; font-weight: 900; font-size: 1.3rem; color: #fff;
    }
    .summary-hd-count {
      margin-right: auto;
      background: rgba(255,255,255,.15); color: #fff;
      font-family: 'Cairo', sans-serif; font-weight: 800; font-size: .75rem;
      padding: 4px 12px; border-radius: 20px;
    }

    .summary-body { padding: 24px 26px; }

    .order-item {
      display: flex; align-items: center; gap: 14px;
      padding: 12px 0; border-bottom: 1px solid #f3f3f3;
    }
    .order-item:last-of-type { border-bottom: none; }

    .oi-img {
      width: 62px; height: 62px; border-radius: 14px;
      background: var(--muted); flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      position: relative; overflow: visible;
    }
    .oi-img img { width: 100%; height: 100%; object-fit: contain; padding: 6px; border-radius: 14px; }
    .oi-qty {
      position: absolute; top: -8px; right: -8px;
      width: 22px; height: 22px; border-radius: 50%;
      background: var(--coral); color: #fff;
      font-family: 'Cairo', sans-serif; font-weight: 900; font-size: .68rem;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 2px 8px rgba(255,107,107,.4);
    }
    .oi-name {
      flex: 1; font-family: 'Cairo', sans-serif;
      font-weight: 800; font-size: .88rem; color: var(--navy); line-height: 1.35;
    }
    .oi-price {
      font-family: 'Cairo', sans-serif; font-weight: 900; font-size: .95rem;
      color: var(--navy); white-space: nowrap;
    }

    .sdivider { height: 1px; background: linear-gradient(90deg,transparent,#eee,transparent); margin: 16px 0; }

    .srow {
      display: flex; align-items: center; justify-content: space-between;
      margin-bottom: 11px; font-size: .9rem;
    }
    .srow-lbl { color: var(--sub); font-weight: 700; display: flex; align-items: center; gap: 7px; }
    .srow-val { font-family: 'Cairo', sans-serif; font-weight: 900; color: var(--navy); }

    .stotal {
      background: linear-gradient(135deg, #FFF8D0, #FFE8E8);
      border-radius: 18px; padding: 18px 20px; margin: 18px 0;
      display: flex; align-items: center; justify-content: space-between;
      border: 1.5px solid rgba(255,107,107,.12);
    }
    .stotal-lbl {
      font-family: 'Cairo', sans-serif; font-weight: 900; font-size: 1rem;
      color: var(--navy); display: flex; align-items: center; gap: 8px;
    }
    .stotal-val {
      font-family: 'Cairo', sans-serif; font-weight: 900; font-size: 1.65rem; color: var(--navy);
    }

    .btn-pay {
      width: 100%; padding: 17px 24px;
      background: linear-gradient(135deg, var(--coral), #FF3A3A);
      color: #fff; border: none; border-radius: 50px;
      font-family: 'Cairo', sans-serif; font-weight: 900; font-size: 1.1rem;
      cursor: pointer; transition: all .3s var(--ease);
      box-shadow: 0 8px 28px rgba(255,107,107,.5);
      display: flex; align-items: center; justify-content: center; gap: 10px;
      position: relative; overflow: hidden; text-decoration: none;
    }

  
    .secure-row {
      display: flex; align-items: center; justify-content: center;
      gap: 7px; margin-top: 14px;
      font-family: 'Cairo', sans-serif; font-weight: 700; font-size: .8rem; color: var(--sub);
    }

    .wh-toast {
      position: fixed; bottom: 26px; left: 26px; z-index: 900;
      background: var(--navy); color: #fff; border-radius: 18px;
      padding: 14px 22px; font-family: 'Cairo', sans-serif;
      font-weight: 800; font-size: .9rem;
      display: flex; align-items: center; gap: 10px;
      box-shadow: 0 10px 32px rgba(0,0,0,.25);
      transform: translateY(20px); opacity: 0;
      transition: all .35s var(--ease); pointer-events: none; min-width: 230px;
    }
    .wh-toast.show { transform: translateY(0); opacity: 1; }
    .toast-ico {
      width: 32px; height: 32px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .toast-bar {
      height: 3px; background: var(--coral); border-radius: 2px;
      width: 100%; margin-top: 8px;
      animation: tbar 2.8s linear forwards;
    }
    @keyframes tbar { from{width:100%} to{width:0} }

    .reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
    .reveal.in { opacity: 1; transform: translateY(0); }

    @media (max-width: 991px) {
      .summary-outer { position: static; margin-top: 10px; }
      .sline { width: 38px; }
    }
    @media (max-width: 575px) {
      .wh-card { padding: 20px 16px; }
      .summary-hd { padding: 20px 20px; }
      .summary-body { padding: 18px 18px; }
    }
  </style>
  
    <style>
    .search-main { padding: 60px 0 100px; position: relative; z-index: 1; }

    .search-hero { text-align: center; margin-bottom: 48px; }

    .search-hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: linear-gradient(135deg, rgba(255,107,107,.15), rgba(199,125,255,.15));
      border: 1.5px solid rgba(255,107,107,.25); border-radius: 50px;
      padding: 8px 22px; font-family: 'Baloo 2', cursive; font-weight: 800;
      font-size: .88rem; color: var(--coral); margin-bottom: 18px;
    }

    .search-hero-title {
      font-family: 'Baloo 2', cursive; font-weight: 900;
      font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--navy);
      margin-bottom: 10px; line-height: 1.2;
    }

    .search-hero-title span {
      background: linear-gradient(135deg, var(--coral), var(--lav));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    }

    .search-hero-count { font-family: 'Cairo', sans-serif; font-size: .95rem; color: var(--sub); font-weight: 700; }

    .search-bar-wrap { max-width: 680px; margin: 24px auto 0; position: relative; }

    .search-bar-input {
      width: 100%; background: #fff; border: 2px solid rgba(199,125,255,.2);
      border-radius: 20px; padding: 16px 24px 16px 64px;
      font-family: 'Cairo', sans-serif; font-size: 1rem; font-weight: 700;
      color: var(--navy); outline: none;
      box-shadow: 0 8px 32px rgba(80,40,120,.08);
      transition: border-color .25s, box-shadow .25s;
    }

    .search-bar-input:focus { border-color: var(--lav); box-shadow: 0 8px 32px rgba(199,125,255,.18); }
    .search-bar-input::placeholder { color: #bbb; font-weight: 500; }

    .search-bar-btn {
      position: absolute; left: 10px; top: 50%; transform: translateY(-50%);
      width: 44px; height: 44px;
      background: linear-gradient(135deg, var(--coral), #ff4f6d);
      border: none; border-radius: 14px; color: #fff; font-size: 1.1rem;
      cursor: pointer; display: flex; align-items: center; justify-content: center;
      transition: box-shadow .2s;
    }

    .search-bar-btn:hover { box-shadow: 0 6px 20px rgba(255,107,107,.35); }

    .search-idle-state { text-align: center; padding: 60px 20px; }

    .idle-icon-wrap {
      width: 130px; height: 130px;
      background: linear-gradient(135deg, rgba(255,107,107,.1), rgba(199,125,255,.1));
      border-radius: 50%; display: flex; align-items: center; justify-content: center;
      font-size: 3.5rem; margin: 0 auto 24px;
      animation: idlePulse 3s ease-in-out infinite;
    }

    @keyframes idlePulse {
      0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(199,125,255,.2); }
      50% { transform: scale(1.05); box-shadow: 0 0 0 16px rgba(199,125,255,0); }
    }

    .idle-title { font-family: 'Baloo 2', cursive; font-weight: 900; font-size: 1.5rem; color: var(--navy); margin-bottom: 10px; }

    .idle-sub { font-family: 'Cairo', sans-serif; color: var(--sub); font-weight: 600; font-size: .95rem; max-width: 360px; margin: 0 auto 28px; }

    .idle-suggestions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

    .idle-tag {
      display: inline-flex; align-items: center; gap: 6px;
      background: rgba(199,125,255,.1); border: 1.5px solid rgba(199,125,255,.22);
      border-radius: 50px; padding: 7px 16px; font-family: 'Baloo 2', cursive;
      font-weight: 800; font-size: .82rem; color: var(--navy); text-decoration: none;
      transition: background .2s, transform .2s;
    }

    .idle-tag:hover { background: rgba(199,125,255,.2); transform: translateY(-2px); color: var(--navy); }

    .filters-bar {
      background: #fff; border-radius: 20px; padding: 20px 24px;
      box-shadow: 0 4px 24px rgba(80,40,120,.07);
      border: 1.5px solid rgba(199,125,255,.12);
      margin-bottom: 32px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
    }

    .filter-label { font-family: 'Baloo 2', cursive; font-weight: 800; font-size: .85rem; color: var(--navy); display: flex; align-items: center; gap: 6px; white-space: nowrap; }

    .filter-select {
      background: #f8f6ff; border: 2px solid rgba(199,125,255,.18); border-radius: 12px;
      padding: 9px 14px; font-family: 'Cairo', sans-serif; font-size: .88rem;
      font-weight: 700; color: var(--navy); outline: none; cursor: pointer; transition: border-color .2s;
    }

    .filter-select:focus { border-color: var(--lav); }

    .filter-price-wrap { display: flex; align-items: center; gap: 8px; margin-right: auto; }

    .price-input {
      width: 90px; background: #f8f6ff; border: 2px solid rgba(199,125,255,.18);
      border-radius: 12px; padding: 9px 12px; font-family: 'Cairo', sans-serif;
      font-size: .85rem; font-weight: 700; color: var(--navy); outline: none; transition: border-color .2s;
    }

    .price-input:focus { border-color: var(--lav); }

    .filter-apply-btn {
      background: linear-gradient(135deg, var(--lav), #9b59b6); color: #fff; border: none;
      border-radius: 12px; padding: 9px 20px; font-family: 'Baloo 2', cursive;
      font-weight: 800; font-size: .85rem; cursor: pointer; transition: transform .2s, box-shadow .2s; white-space: nowrap;
    }

    .filter-apply-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(199,125,255,.35); }

    .grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
        .grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
    @media (max-width: 1200px) { .grid-4 { grid-template-columns: repeat(4,1fr); } }
    @media (max-width: 900px)  { .grid-4 { grid-template-columns: repeat(2,1fr); } }
    @media (max-width: 560px)  { .grid-4 { grid-template-columns: 1fr 1fr; } }

    .toy-card {
      background: #fff; border-radius: 24px; overflow: hidden;
  

      display: flex; flex-direction: column;
      transition: transform .3s cubic-bezier(.175,.885,.32,1.275), box-shadow .3s;
    }


    .wish-btn:hover { transform: scale(1.15); background: #fff; }
    .wish-btn.active { color: var(--coral); }

    .sale-badge {
      position: absolute; top: 12px; left: 12px;
      background: linear-gradient(135deg, var(--coral), #ff4f6d);
      color: #fff; border-radius: 10px; padding: 4px 10px;
      font-family: 'Baloo 2', cursive; font-weight: 900; font-size: .72rem; z-index: 2;
    }

    .card-info { padding: 16px 18px 18px; display: flex; flex-direction: column; flex: 1; }

    .toy-name {
      font-family: 'Baloo 2', cursive; font-weight: 800; font-size: .95rem;
      color: var(--navy); margin: 4px 0 6px;
      overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
    }

    .toy-desc {
      font-family: 'Cairo', sans-serif; font-size: .78rem; color: var(--sub);
      font-weight: 600; line-height: 1.5;
      display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
      overflow: hidden; margin-bottom: 8px; flex: 1;
    }

    .price-wrapper { display: flex; align-items: baseline; gap: 6px; }

    .price { font-family: 'Baloo 2', cursive; font-weight: 900; font-size: 1.1rem; color: var(--coral); }

    .old-price { font-family: 'Cairo', sans-serif; font-size: .8rem; color: #bbb; font-weight: 700; text-decoration: line-through; }

    .cart-btn-round {
      width: 38px; height: 38px; border-radius: 12px;
      background: linear-gradient(135deg, var(--coral), #ff4f6d);
      border: none; color: #fff; font-size: 1rem;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; transition: transform .2s, box-shadow .2s; flex-shrink: 0;
    }

    .cart-btn-round:hover { transform: scale(1.12) rotate(-5deg); box-shadow: 0 6px 18px rgba(255,107,107,.35); }

    .empty-search { grid-column: 1 / -1; text-align: center; padding: 80px 20px; }

    .empty-search-icon {
      width: 110px; height: 110px;
      background: linear-gradient(135deg, rgba(255,107,107,.1), rgba(199,125,255,.1));
      border-radius: 50%; display: flex; align-items: center; justify-content: center;
      font-size: 3rem; margin: 0 auto 20px;
    }

    .empty-search-title { font-family: 'Baloo 2', cursive; font-weight: 900; font-size: 1.6rem; color: var(--navy); margin-bottom: 10px; }

    .empty-search-sub { font-family: 'Cairo', sans-serif; color: var(--sub); font-weight: 600; font-size: .95rem; max-width: 380px; margin: 0 auto 28px; }

    .btn-back-shop {
      display: inline-flex; align-items: center; gap: 8px;
      background: linear-gradient(135deg, var(--coral), #ff4f6d);
      color: #fff; border-radius: 16px; padding: 13px 28px;
      font-family: 'Baloo 2', cursive; font-weight: 900; font-size: .95rem;
      text-decoration: none; transition: transform .2s, box-shadow .2s;
    }

    .btn-back-shop:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,107,107,.35); color: #fff; }

    .active-filters { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }

    .active-filter-tag {
      display: inline-flex; align-items: center; gap: 6px;
      background: rgba(199,125,255,.12); border: 1.5px solid rgba(199,125,255,.25);
      border-radius: 50px; padding: 5px 14px; font-family: 'Baloo 2', cursive;
      font-weight: 800; font-size: .78rem; color: var(--navy);
    }

    .active-filter-tag a { color: var(--coral); text-decoration: none; margin-right: 2px; font-size: .85rem; }

    .section-divider { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }

    .section-divider-line { flex: 1; height: 2px; background: linear-gradient(to left, transparent, rgba(199,125,255,.2)); border-radius: 4px; }
    .section-divider-line.right { background: linear-gradient(to right, transparent, rgba(199,125,255,.2)); }

    .section-divider-text { font-family: 'Baloo 2', cursive; font-weight: 900; font-size: 1rem; color: var(--navy); display: flex; align-items: center; gap: 8px; white-space: nowrap; }
  </style>
  
    <style>
    .cats-hero {
      padding: 80px 0 60px;
      text-align: center;
      position: relative;
      z-index: 1;
    }

    .cats-hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: linear-gradient(135deg, rgba(255,107,107,.15), rgba(199,125,255,.15));
      border: 1.5px solid rgba(255,107,107,.25);
      border-radius: 50px;
      padding: 8px 22px;
      font-family: 'Baloo 2', cursive;
      font-weight: 800;
      font-size: .88rem;
      color: var(--coral);
      margin-bottom: 20px;
    }

    .cats-hero-title {
      font-family: 'Baloo 2', cursive;
      font-weight: 900;
      font-size: clamp(2.2rem, 5.5vw, 3.5rem);
      color: var(--navy);
      line-height: 1.15;
      margin-bottom: 14px;
    }

    .cats-hero-title span {
      background: linear-gradient(135deg, var(--coral), var(--lav));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .cats-hero-sub {
      font-family: 'Cairo', sans-serif;
      font-size: 1.05rem;
      color: var(--sub);
      font-weight: 600;
   
      margin: 0 auto 40px;
    }

    .cats-stats {
      display: inline-flex;
      gap: 32px;
      padding: 18px 36px;
      flex-wrap: wrap;
      justify-content: center;
    }
    
    .cats-hero {
    margin: 10vh 0;
}


    .stat-item {
      text-align: center;
    }

    .stat-num {
      font-family: 'Baloo 2', cursive;
      font-weight: 900;
      font-size: 1.6rem;
      color: var(--coral);
      display: block;
      line-height: 1;
    }

    .stat-lbl {
      font-family: 'Cairo', sans-serif;
      font-size: .78rem;
      color: var(--sub);
      font-weight: 700;
    }

    .stat-div {
      width: 1.5px;
      background: rgba(199,125,255,.2);
      border-radius: 4px;
    }

    .cats-section {
      padding: 20px 0 100px;
      position: relative;
      z-index: 1;
    }

    .cats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
      gap: 28px;
    }

    @media (max-width: 768px) {
      .cats-grid { grid-template-columns: 1fr; }
    }

    .cat-card {
      border-radius: 28px;
      overflow: hidden;
      position: relative;
      height: 30vh;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      text-decoration: none;
      transition: transform .35s cubic-bezier(.175,.885,.32,1.275), box-shadow .35s;
      box-shadow: 0 10px 40px rgba(0,0,0,.1);
   
    }

    .cat-card:hover {
      transform: translateY(-10px) scale(1.02);
      box-shadow: 0 24px 60px rgba(0,0,0,.18);
    }

    .cat-card-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
    }

    .cat-card-blob {
      position: absolute;
      top: -40px;
      left: -40px;
      width: 220px;
      height: 220px;
      background: rgba(255,255,255,.13);
      border-radius: 40% 60% 70% 30% / 40% 50% 60% 70%;
      z-index: 1;
    }

    .cat-card-blob2 {
      position: absolute;
      bottom: -30px;
      right: -30px;
      width: 160px;
      height: 160px;
      background: rgba(255,255,255,.08);
      border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
      z-index: 1;
    }

    .cat-card-img {
position: absolute;
    top: 16px;
    left: 16px;
    width: 120px;
    height: 120px;
    object-fit: contain;
    z-index: 2;
    filter: drop-shadow(0 16px 28px rgba(0, 0, 0, .2));
    transition: transform .4s cubic-bezier(.175, .885, .32, 1.275);
    border-radius: 50%;
      
    }

    .cat-card:hover .cat-card-img {
      transform: rotate(6deg) scale(1.1) translateY(-6px);
    }

    .cat-card-img-placeholder {
      position: absolute;
      top: 16px;
      left: 16px;
      width: 55%;
      height: 220px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 5rem;
      z-index: 2;
      transition: transform .4s cubic-bezier(.175,.885,.32,1.275);
    }

    .cat-card:hover .cat-card-img-placeholder {
      transform: rotate(6deg) scale(1.1) translateY(-6px);
    }

    .cat-card-content {
      position: relative;
      z-index: 3;
      padding: 28px;
    }

    .cat-card-name {
      font-family: 'Baloo 2', cursive;
      font-weight: 900;
      font-size: 1.6rem;
      color: #fff;
      line-height: 1.15;
      margin-bottom: 10px;
      text-shadow: 0 2px 12px rgba(0,0,0,.2);
    }

    .cat-card-count {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(255,255,255,.22);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(255,255,255,.3);
      border-radius: 50px;
      padding: 6px 16px;
      font-family: 'Baloo 2', cursive;
      font-weight: 800;
      font-size: .82rem;
      color: #fff;
    }

    .cat-card-arrow {
      position: absolute;
      top: 24px;
      right: 24px;
      width: 42px;
      height: 42px;
      background: rgba(255,255,255,.22);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(255,255,255,.3);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 1rem;
      z-index: 3;
      transition: background .25s, transform .25s;
    }

    .cat-card:hover .cat-card-arrow {
      background: rgba(255,255,255,.38);
      transform: scale(1.1) rotate(-8deg);
    }

    .cat-card-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,.45) 0%, transparent 55%);
      z-index: 2;
    }

    .empty-cats {
      grid-column: 1 / -1;
      text-align: center;
      padding: 80px 20px;
    }

    .empty-cats-icon {
      width: 100px;
      height: 100px;
      background: linear-gradient(135deg, rgba(255,107,107,.12), rgba(199,125,255,.12));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2.8rem;
      margin: 0 auto 20px;
    }

    .empty-cats-title {
      font-family: 'Baloo 2', cursive;
      font-weight: 900;
      font-size: 1.5rem;
      color: var(--navy);
      margin-bottom: 10px;
    }

    .empty-cats-sub {
      font-family: 'Cairo', sans-serif;
      color: var(--sub);
      font-weight: 600;
      font-size: .95rem;
    }

    .section-label {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 32px;
    }

    .section-label-line {
      flex: 1;
      height: 2px;
      background: linear-gradient(to left, transparent, rgba(199,125,255,.2));
      border-radius: 4px;
    }

    .section-label-line.right {
      background: linear-gradient(to right, transparent, rgba(199,125,255,.2));
    }

    .section-label-text {
      font-family: 'Baloo 2', cursive;
      font-weight: 900;
      font-size: 1.1rem;
      color: var(--navy);
      display: flex;
      align-items: center;
      gap: 8px;
      white-space: nowrap;
    }
  </style>
  
    <style>
    .search-main { padding: 60px 0 100px; position: relative; z-index: 1; }

    .search-hero { text-align: center; margin-bottom: 48px; }

    .search-hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: linear-gradient(135deg, rgba(255,107,107,.15), rgba(199,125,255,.15));
      border: 1.5px solid rgba(255,107,107,.25); border-radius: 50px;
      padding: 8px 22px; font-family: 'Baloo 2', cursive; font-weight: 800;
      font-size: .88rem; color: var(--coral); margin-bottom: 18px;
    }

    .search-hero-title {
      font-family: 'Baloo 2', cursive; font-weight: 900;
      font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--navy);
      margin-bottom: 10px; line-height: 1.2;
    }

    .search-hero-title span {
      background: linear-gradient(135deg, var(--coral), var(--lav));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    }

    .search-hero-count { font-family: 'Cairo', sans-serif; font-size: .95rem; color: var(--sub); font-weight: 700; }

    .search-bar-wrap { max-width: 680px; margin: 24px auto 0; position: relative; }

    .search-bar-input {
      width: 100%; background: #fff; border: 2px solid rgba(199,125,255,.2);
      border-radius: 20px; padding: 16px 24px 16px 64px;
      font-family: 'Cairo', sans-serif; font-size: 1rem; font-weight: 700;
      color: var(--navy); outline: none;
      box-shadow: 0 8px 32px rgba(80,40,120,.08);
      transition: border-color .25s, box-shadow .25s;
    }

    .search-bar-input:focus { border-color: var(--lav); box-shadow: 0 8px 32px rgba(199,125,255,.18); }
    .search-bar-input::placeholder { color: #bbb; font-weight: 500; }

    .search-bar-btn {
      position: absolute; left: 10px; top: 50%; transform: translateY(-50%);
      width: 44px; height: 44px;
      background: linear-gradient(135deg, var(--coral), #ff4f6d);
      border: none; border-radius: 14px; color: #fff; font-size: 1.1rem;
      cursor: pointer; display: flex; align-items: center; justify-content: center;
      transition: box-shadow .2s;
    }

    .search-bar-btn:hover { box-shadow: 0 6px 20px rgba(255,107,107,.35); }

    .search-idle-state { text-align: center; padding: 60px 20px; }

    .idle-icon-wrap {
      width: 130px; height: 130px;
      background: linear-gradient(135deg, rgba(255,107,107,.1), rgba(199,125,255,.1));
      border-radius: 50%; display: flex; align-items: center; justify-content: center;
      font-size: 3.5rem; margin: 0 auto 24px;
      animation: idlePulse 3s ease-in-out infinite;
    }

    @keyframes idlePulse {
      0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(199,125,255,.2); }
      50% { transform: scale(1.05); box-shadow: 0 0 0 16px rgba(199,125,255,0); }
    }

    .idle-title { font-family: 'Baloo 2', cursive; font-weight: 900; font-size: 1.5rem; color: var(--navy); margin-bottom: 10px; }

    .idle-sub { font-family: 'Cairo', sans-serif; color: var(--sub); font-weight: 600; font-size: .95rem; max-width: 360px; margin: 0 auto 28px; }

    .idle-suggestions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

    .idle-tag {
      display: inline-flex; align-items: center; gap: 6px;
      background: rgba(199,125,255,.1); border: 1.5px solid rgba(199,125,255,.22);
      border-radius: 50px; padding: 7px 16px; font-family: 'Baloo 2', cursive;
      font-weight: 800; font-size: .82rem; color: var(--navy); text-decoration: none;
      transition: background .2s, transform .2s;
    }

    .idle-tag:hover { background: rgba(199,125,255,.2); transform: translateY(-2px); color: var(--navy); }

    .filters-bar {
      background: #fff; border-radius: 20px; padding: 20px 24px;
      box-shadow: 0 4px 24px rgba(80,40,120,.07);
      border: 1.5px solid rgba(199,125,255,.12);
      margin-bottom: 32px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
    }

    .filter-label { font-family: 'Baloo 2', cursive; font-weight: 800; font-size: .85rem; color: var(--navy); display: flex; align-items: center; gap: 6px; white-space: nowrap; }

    .filter-select {
      background: #f8f6ff; border: 2px solid rgba(199,125,255,.18); border-radius: 12px;
      padding: 9px 14px; font-family: 'Cairo', sans-serif; font-size: .88rem;
      font-weight: 700; color: var(--navy); outline: none; cursor: pointer; transition: border-color .2s;
    }

    .filter-select:focus { border-color: var(--lav); }

    .filter-price-wrap { display: flex; align-items: center; gap: 8px; margin-right: auto; }

    .price-input {
      width: 90px; background: #f8f6ff; border: 2px solid rgba(199,125,255,.18);
      border-radius: 12px; padding: 9px 12px; font-family: 'Cairo', sans-serif;
      font-size: .85rem; font-weight: 700; color: var(--navy); outline: none; transition: border-color .2s;
    }

    .price-input:focus { border-color: var(--lav); }

    .filter-apply-btn {
      background: linear-gradient(135deg, var(--lav), #9b59b6); color: #fff; border: none;
      border-radius: 12px; padding: 9px 20px; font-family: 'Baloo 2', cursive;
      font-weight: 800; font-size: .85rem; cursor: pointer; transition: transform .2s, box-shadow .2s; white-space: nowrap;
    }

    .filter-apply-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(199,125,255,.35); }

    .toy-card:hover { transform: translateY(-8px); box-shadow: 0 16px 48px rgba(80,40,120,.14); }

    .vis-1 { background: linear-gradient(145deg,#FFE8E8,#FFD0D0); }
    .vis-2 { background: linear-gradient(145deg,#F0E0FF,#E0C8FF); }
    .vis-3 { background: linear-gradient(145deg,#E0FFE8,#C6F8D0); }
    .vis-4 { background: linear-gradient(145deg,#E0FFFC,#C0F7F4); }
    .vis-5 { background: linear-gradient(145deg,#FFF8D0,#FDEEBB); }

    .card-img-container { display: block; width: 100%; height: 100%; }
    .card-img-container img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
    .toy-card:hover .card-img-container img { transform: scale(1.07); }

    .wish-btn {
      position: absolute; top: 12px; right: 12px; width: 36px; height: 36px;
      border-radius: 50%; background: rgba(255,255,255,.9); border: none;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; z-index: 2; color: #ddd; font-size: .95rem;
      transition: color .2s, transform .2s, background .2s;
      box-shadow: 0 2px 10px rgba(0,0,0,.08);
    }

    .wish-btn:hover { transform: scale(1.15); background: #fff; }
    .wish-btn.active { color: var(--coral); }

    .sale-badge {
      position: absolute; top: 12px; left: 12px;
      background: linear-gradient(135deg, var(--coral), #ff4f6d);
      color: #fff; border-radius: 10px; padding: 4px 10px;
      font-family: 'Baloo 2', cursive; font-weight: 900; font-size: .72rem; z-index: 2;
    }

    .card-info { padding: 16px 18px 18px; display: flex; flex-direction: column; flex: 1; }

    .toy-name {
      font-family: 'Baloo 2', cursive; font-weight: 800; font-size: .95rem;
      color: var(--navy); margin: 4px 0 6px;
      overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
    }

    .toy-desc {
      font-family: 'Cairo', sans-serif; font-size: .78rem; color: var(--sub);
      font-weight: 600; line-height: 1.5;
      display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
      overflow: hidden; margin-bottom: 8px; flex: 1;
    }

    .price-wrapper { display: flex; align-items: baseline; gap: 6px; }

    .price { font-family: 'Baloo 2', cursive; font-weight: 900; font-size: 1.1rem; color: var(--coral); }

    .old-price { font-family: 'Cairo', sans-serif; font-size: .8rem; color: #bbb; font-weight: 700; text-decoration: line-through; }

    .cart-btn-round {
      width: 38px; height: 38px; border-radius: 12px;
      background: linear-gradient(135deg, var(--coral), #ff4f6d);
      border: none; color: #fff; font-size: 1rem;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; transition: transform .2s, box-shadow .2s; flex-shrink: 0;
    }

    .cart-btn-round:hover { transform: scale(1.12) rotate(-5deg); box-shadow: 0 6px 18px rgba(255,107,107,.35); }

    .empty-search { grid-column: 1 / -1; text-align: center; padding: 80px 20px; }

    .empty-search-icon {
      width: 110px; height: 110px;
      background: linear-gradient(135deg, rgba(255,107,107,.1), rgba(199,125,255,.1));
      border-radius: 50%; display: flex; align-items: center; justify-content: center;
      font-size: 3rem; margin: 0 auto 20px;
    }

    .empty-search-title { font-family: 'Baloo 2', cursive; font-weight: 900; font-size: 1.6rem; color: var(--navy); margin-bottom: 10px; }

    .empty-search-sub { font-family: 'Cairo', sans-serif; color: var(--sub); font-weight: 600; font-size: .95rem; max-width: 380px; margin: 0 auto 28px; }

    .btn-back-shop {
      display: inline-flex; align-items: center; gap: 8px;
      background: linear-gradient(135deg, var(--coral), #ff4f6d);
      color: #fff; border-radius: 16px; padding: 13px 28px;
      font-family: 'Baloo 2', cursive; font-weight: 900; font-size: .95rem;
      text-decoration: none; transition: transform .2s, box-shadow .2s;
    }

    .btn-back-shop:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,107,107,.35); color: #fff; }

    .active-filters { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }

    .active-filter-tag {
      display: inline-flex; align-items: center; gap: 6px;
      background: rgba(199,125,255,.12); border: 1.5px solid rgba(199,125,255,.25);
      border-radius: 50px; padding: 5px 14px; font-family: 'Baloo 2', cursive;
      font-weight: 800; font-size: .78rem; color: var(--navy);
    }

    .active-filter-tag a { color: var(--coral); text-decoration: none; margin-right: 2px; font-size: .85rem; }

    .section-divider { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }

    .section-divider-line { flex: 1; height: 2px; background: linear-gradient(to left, transparent, rgba(199,125,255,.2)); border-radius: 4px; }
    .section-divider-line.right { background: linear-gradient(to right, transparent, rgba(199,125,255,.2)); }

    .section-divider-text { font-family: 'Baloo 2', cursive; font-weight: 900; font-size: 1rem; color: var(--navy); display: flex; align-items: center; gap: 8px; white-space: nowrap; }
  </style>

.owl-theme .owl-dots .owl-dot span {
    background: #7b61ff85 !important;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: #7b61ff !important;
}


.owl-theme .owl-dots .owl-dot span {
    background: #7b61ff69 !important;
}


.owl-stage-outer {
    margin-bottom: 0 !IMPORTANT;
    padding-bottom: 0;
}

.owl-dots {
    margin-top: 0 !IMPORTANT;
}


.results-count.reveal.in {
    margin: 20px 0;
}

ol.breadcrumb.bc {
    display: flex;
    align-items: center;
    gap: 10px;
}


    @media screen and (max-width: 992px) {
        
        
        div#productsGrid {
    grid-template-columns: 1fr 1fr;
}

        .cats-hero-title {
    font-size: larger;
}

.cats-stats {
    font-size: x-large;
}

.cats-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    padding: 0;
    justify-content: space-between;
}

.stat-div {
    display: none;
}

.cat-card-name {
    font-size: large;
}

        h1.prod-title {
    font-size: x-large;
}

span.price-main {
    font-size: x-large;
}

.price-box {
    background: #ffe8e8;
}

span.price-main {
    color: white;
}

button.btn-cart-main {
    padding: revert;
    height: 48px;
}

button#mainWishBtn {
    display: none;
}
        
.filter-card {
  background: none;
  border-radius: 0 !important;
  padding: 0 !important;
  margin-bottom: 20px;
  border:none;
}


        a.cat-chip.cc-active {
    background: none;
    color: black;
    font-weight: 600;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

button.mobile-filter-btn {
    background: no-repeat;
    color: black;
    padding: 0;

    box-shadow: none;
    background: #f75050;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin: 0;
}

        img.hero-banner-img {
    height: 30vh !important;
    margin-top: 2vh;
    border-radius: 10px;
}


main#main-content {padding: 15px; !important}

a.view-all-link {
    font-size: small !important;
}

h2.section-title {
    font-size: small !important;
}


      section.section-wrapper.category-section {/* padding: 10px !important; */}

article.toy-card.reveal.in {
    padding: 0 !important;
    margin: 5px !important;
}




h3.toy-name , .toy-name.text-truncate {
    font-size: x-small;
}

span.price {
    font-size: small;
}

/*.card-visual {*/
/*    height: 23vh !important;*/
/*}*/

button.cart-btn-round.add-to-cart , button.cart-btn-round {
    width: 20px;
    height: 20px;
}

.toy-desc  {
    font-size: x-small;
}



.promo-section .promo-card {
    height: 25vh;
    border-radius: 15px;
    overflow: hidden;
    background-size: cover;
    border: none;
}

a.category-item span.cat-name {
    display: none;
}

       
        }
        
        .card-visual {
    border: 2px solid #7b61ff !important;
}
     
button.btn-close {
    margin: 0 !important;
}

.offcanvas-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


article.toy-card.reveal.in ,article.toy-card.reveal.in ,.toy-card.reveal.in {
    border: 1px solid rgba(0,0,0,0.05) !important;
}


    .card-visual { position: relative; height: 250px; overflow: hidden; cursor: pointer; display: flex; align-items: center; justify-content: center; background: #fff; border-radius: 15px 15px 0 0; }
    .card-visual img { width: 100%; height: 100%; object-fit: contain; transition: opacity 0.4s ease; padding: 10px; }
    .img-hover { position: absolute; top: 0; left: 0; opacity: 0; }
    .card-visual:hover .img-main { opacity: 0; }
    .card-visual:hover .img-hover { opacity: 1; }
    
    span.meta-tag {
    display: flex;
    align-items: center;
    gap: 10px;
}

span#itemTotal_0 {
    color: #fe6b6b;
}

div#promoCard {
    height: auto;
}

div#promoCard {
    padding: 20px;
}

.item-inner {
    padding: 10px;
}

.item-meta{margin:10px 0 !important;}