    :root {
      --yellow: #FFD93D;
      --orange: #FF6B35;
      --pink: #FF4D8D;
      --teal: #00C9A7;
      --purple: #7B5EA7;
      --sky: #4FC3F7;
      --white: #fff;
      --dark: #1A1A2E;
      --light-bg: #FFF9F0;
      --card-radius: 24px;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html, body {
      font-family: 'Nunito', sans-serif;
      background: var(--light-bg);
      color: var(--dark);
      overflow-x: hidden;
      max-width: 100%;
    }

    /* ── HEADER ── */
    header {
      background: var(--white);
      box-shadow: 0 4px 20px rgba(0,0,0,.08);
      position: sticky; top: 0; z-index: 1000;
    }
    .header-top {
      background: linear-gradient(90deg, var(--pink), var(--orange));
      text-align: center;
      padding: 8px;
      font-size: 13px;
      font-weight: 700;
      color: #fff;
      letter-spacing: .5px;
    }
    .header-main {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 40px;
      gap: 20px;
    }
    .logo {
      display: flex; align-items: center; gap: 10px; text-decoration: none;
      flex-shrink: 0; min-width: 0;
    }
    .logo-icon {
      width: 100px; height: 80px;
      /* background: linear-gradient(135deg, var(--pink), var(--orange)); */
      border-radius: 14px;
      display: flex; align-items: center; justify-content: center;
      overflow: hidden;
    }
    .logo-icon img { width: 100%; height: 100%; object-fit: cover; border-radius: 14px; }
    .logo-text {
      font-family: 'Baloo 2', cursive;
      font-size: 26px;
      font-weight: 800;
      background: linear-gradient(135deg, var(--pink), var(--orange));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      line-height: 1;
    }
    .logo-text span { display: block; font-size: 11px; color: #999; -webkit-text-fill-color: #999; font-weight: 600; }

    .search-bar {
      flex: 1; max-width: 480px;
      display: flex; border-radius: 50px; overflow: hidden;
      border: 2px solid #f0e6ff;
      box-shadow: 0 2px 12px rgba(255,77,141,.1);
    }
    .search-bar input {
      flex: 1; padding: 10px 20px; border: none; outline: none;
      font-family: 'Nunito', sans-serif; font-size: 14px; background: #fff;
    }
    .search-bar button {
      padding: 10px 22px;
      background: linear-gradient(135deg, var(--pink), var(--orange));
      border: none; color: #fff; cursor: pointer; font-size: 16px;
      transition: opacity .2s;
    }
    .search-bar button:hover { opacity: .85; }

    .header-actions { display: flex; gap: 6px; align-items: center; flex-shrink: 0; }
    .icon-btn {
      background: none; border: none; cursor: pointer;
      width: 44px; height: 44px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 20px; position: relative;
      transition: background .2s;
    }
    .icon-btn:hover { background: #fff0f5; }
    .badge {
      position: absolute; top: 4px; right: 4px;
      background: var(--pink); color: #fff;
      font-size: 10px; font-weight: 800;
      width: 18px; height: 18px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
    }

    /* ── NAV ── */
    nav {
      border-top: 1px solid #f5e6ff;
      padding: 0 40px;
      display: flex; gap: 4px; align-items: center;
        justify-content: center; /* ✅ center items */

      overflow-x: auto;
    }
    nav::-webkit-scrollbar { display: none; }
    .nav-item {
      padding: 14px 18px;
      font-weight: 700; font-size: 14px;
      cursor: pointer; position: relative;
      color: var(--dark); text-decoration: none;
      transition: color .2s;
      display: flex; align-items: center; gap: 6px;
      white-space: nowrap;
    }
    .nav-item:hover { color: var(--pink); }
    .nav-item::after {
      content: ''; position: absolute; bottom: 0; left: 50%; right: 50%;
      height: 3px; background: var(--pink); border-radius: 2px 2px 0 0;
      transition: left .25s, right .25s;
    }
    .nav-item:hover::after { left: 14px; right: 14px; }
    .nav-badge {
      background: var(--orange); color: #fff;
      font-size: 10px; padding: 2px 7px; border-radius: 20px;
    }

    /* ── HAMBURGER ── */
    .hamburger {
      display: none; background: none; border: none; cursor: pointer;
      font-size: 26px; color: var(--dark); padding: 4px;
    }
    .mobile-menu {
      display: none; flex-direction: column;
      background: #fff; border-top: 1px solid #f5e6ff;
      padding: 10px 0;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu .nav-item { padding: 12px 20px; }

    /* ── HERO SLIDER ── */
    .slider-wrap {
      position: relative; overflow: hidden;
      height: 580px;
    }
    .slides { display: flex; height: 100%; transition: transform .8s cubic-bezier(.65,0,.35,1); }
    .slide {
      min-width: 100%; height: 100%;
      position: relative; overflow: hidden;
      display: flex; align-items: center;
    }

    /* Full background image */
    .slide-bg {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: center top;
      transition: transform 6s ease;
      z-index: 0;
    }
    .slide:hover .slide-bg { transform: scale(1.04); }

    /* Dark gradient overlay so text is always readable */
    .slide::after {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(
        100deg,
        rgba(10,10,30,.72) 0%,
        rgba(10,10,30,.45) 55%,
        rgba(10,10,30,.10) 100%
      );
      z-index: 1;
    }

    .slide-content {
      position: relative; z-index: 2;
      max-width: 580px;
      padding: 0 80px;
    }
    .slide-tag {
      display: inline-block;
      background: var(--yellow); color: var(--dark);
      font-weight: 800; font-size: 12px; padding: 5px 16px;
      border-radius: 20px; margin-bottom: 18px;
      text-transform: uppercase; letter-spacing: 1px;
      animation: bounceIn .6s ease both;
    }
    .slide-title {
      font-family: 'Baloo 2', cursive;
      font-size: 58px; font-weight: 800; line-height: 1.1;
      margin-bottom: 16px; color: #fff;
      animation: slideUp .7s .1s ease both;
      text-shadow: 0 4px 20px rgba(0,0,0,.3);
    }
    .slide-title .accent { color: var(--yellow); }
    .slide-desc {
      font-size: 17px; color: rgba(255,255,255,.88); margin-bottom: 32px;
      line-height: 1.7; animation: slideUp .7s .2s ease both;
      text-shadow: 0 2px 8px rgba(0,0,0,.3);
    }
    .slide-btns { display: flex; gap: 14px; animation: slideUp .7s .3s ease both; flex-wrap: wrap; }
    .btn-primary {
      padding: 14px 34px;
      background: linear-gradient(135deg, var(--pink), var(--orange));
      color: #fff; font-weight: 800; font-size: 15px;
      border: none; border-radius: 50px; cursor: pointer;
      box-shadow: 0 8px 24px rgba(255,77,141,.45);
      transition: transform .2s, box-shadow .2s;
    }
    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(255,77,141,.6); }
    .btn-outline {
      padding: 14px 34px;
      background: rgba(255,255,255,.15);
      backdrop-filter: blur(8px);
      color: #fff; font-weight: 800; font-size: 15px;
      border: 2px solid rgba(255,255,255,.6); border-radius: 50px; cursor: pointer;
      transition: all .2s;
    }
    .btn-outline:hover { background: rgba(255,255,255,.3); border-color: #fff; }

    /* offer badge */
    .offer-badge {
      position: absolute; bottom: 40px; right: 60px;
      background: var(--yellow);
      width: 100px; height: 100px; border-radius: 50%;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      font-weight: 800; font-size: 13px; color: var(--dark);
      box-shadow: 0 6px 24px rgba(255,217,61,.6);
      animation: spin-badge 6s linear infinite;
      z-index: 10;
    }
    .offer-badge .big { font-size: 24px; line-height: 1; }
    @keyframes spin-badge {
      from { transform: rotate(0deg); }
      to   { transform: rotate(360deg); }
    }

    /* slider controls */
    .slider-btn {
      position: absolute; top: 50%; transform: translateY(-50%);
      width: 52px; height: 52px; border-radius: 50%; border: none;
      background: rgba(255,255,255,.2);
      backdrop-filter: blur(10px);
      color: #fff;
      box-shadow: 0 4px 20px rgba(0,0,0,.25);
      font-size: 20px; cursor: pointer; z-index: 10;
      transition: background .2s, transform .2s;
    }
    .slider-btn:hover { background: var(--pink); transform: translateY(-50%) scale(1.1); }
    .slider-btn.prev { left: 20px; }
    .slider-btn.next { right: 20px; }

    .slider-dots {
      position: absolute; bottom: 24px; left: 50%;
      transform: translateX(-50%);
      display: flex; gap: 8px; z-index: 10;
    }
    .dot {
      width: 10px; height: 10px; border-radius: 5px;
      background: rgba(255,255,255,.4); cursor: pointer;
      transition: all .3s;
    }
    .dot.active { background: var(--yellow); width: 30px; }

    /* ── MARQUEE ── */
    .marquee-bar {
      background: var(--dark);
      padding: 12px 0; overflow: hidden;
    }
    .marquee-track {
      display: flex; gap: 50px;
      animation: marquee 18s linear infinite;
      white-space: nowrap;
    }
    .marquee-item {
      display: flex; align-items: center; gap: 10px;
      color: #fff; font-weight: 700; font-size: 13px;
    }
    .marquee-item .dot-sep { color: var(--yellow); font-size: 20px; }
    @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

    /* ── CATEGORIES ── */
    section { padding: 18px 40px; }
    .section-header { text-align: center; margin-bottom: 17px; }
    .section-header h2 {
      font-family: 'Baloo 2', cursive;
      font-size: 40px; font-weight: 800;
      background: linear-gradient(135deg, var(--pink), var(--orange));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    }
    .section-header p { color: #888; margin-top: 6px; font-size: 15px; }

    .cat-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 16px;
    }
    .cat-card {
      background: var(--white);
      border-radius: var(--card-radius);
      padding: 20px 10px;
      text-align: center;
      cursor: pointer;
      transition: transform .25s, box-shadow .25s;
      box-shadow: 0 4px 16px rgba(0,0,0,.05);
      border: 2px solid transparent;
      overflow: hidden;
    }
    .cat-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 32px rgba(255,77,141,.18);
      border-color: var(--pink);
    }
    .cat-img {
      width: 70px; height: 70px; border-radius: 50%;
      object-fit: cover; margin: 0 auto 10px;
      display: block;
      border: 3px solid #f5e6ff;
    }
    .cat-name { font-weight: 800; font-size: 13px; color: var(--dark); }
    .cat-count { font-size: 11px; color: #aaa; margin-top: 3px; }

    /* ── OFFERS STRIP ── */
    .offers-strip {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 24px; padding: 0 40px 8px;
    }
    .offer-card {
      border-radius: 24px; padding: 32px 28px;
      position: relative; overflow: hidden;
      cursor: pointer; transition: transform .25s;
      min-height: 180px;
    }
    .offer-card:hover { transform: scale(1.02); }
    .offer-card-1 { background: linear-gradient(135deg, #FF6B35, #FFD93D); }
    .offer-card-2 { background: linear-gradient(135deg, #FF4D8D, #FF6B35); }
    .offer-card-3 { background: linear-gradient(135deg, #7B5EA7, #4FC3F7); }
    .offer-card h3 { color: #fff; font-family: 'Baloo 2', cursive; font-size: 28px; font-weight: 800; }
    .offer-card p { color: rgba(255,255,255,.85); font-size: 14px; margin: 6px 0 16px; }
    .offer-card .offer-img {
      position: absolute; right: -10px; bottom: -10px;
      width: 130px; height: 130px;
      object-fit: cover; border-radius: 20px;
      opacity: .35;
    }
    .btn-white {
      padding: 10px 24px; background: #fff; border: none;
      border-radius: 50px; font-weight: 800; font-size: 13px;
      cursor: pointer; transition: transform .2s; position: relative; z-index: 2;
    }
    .btn-white:hover { transform: translateY(-2px); }

    /* ── MID SCROLLING BANNER ── */
    .mid-banner {
      background: linear-gradient(135deg, var(--purple), var(--pink));
      padding: 0; overflow: hidden; position: relative;
      height: 380px;
    }
    .mid-banner-inner {
      display: flex; height: 100%; align-items: center;
    }
    .mid-banner-content {
      flex: 0 0 45%;
      padding: 40px 60px;
      z-index: 2;
    }
    .mid-banner-content .tag {
      display: inline-block;
      background: rgba(255,255,255,.2);
      color: #fff; font-weight: 800; font-size: 12px;
      padding: 4px 14px; border-radius: 20px;
      margin-bottom: 14px; letter-spacing: 1px;
    }
    .mid-banner-content h2 {
      font-family: 'Baloo 2', cursive;
      font-size: 42px; font-weight: 800; color: #fff;
      line-height: 1.1; margin-bottom: 14px;
    }
    .mid-banner-content p {
      color: rgba(255,255,255,.85); font-size: 15px;
      margin-bottom: 24px; line-height: 1.6;
    }

    /* Auto-scrolling image strip inside banner */
    .banner-img-strip {
      flex: 0 0 55%;
      height: 100%;
      overflow: hidden;
      position: relative;
    }
    .banner-img-track {
      display: flex;
      gap: 16px;
      height: 100%;
      animation: bannerScroll 20s linear infinite;
      width: max-content;
    }
    .banner-img-track img {
      height: 100%;
      width: 220px;
      object-fit: cover;
      border-radius: 0;
      flex-shrink: 0;
    }
    @keyframes bannerScroll {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }
    .banner-img-strip::before,
    .banner-img-strip::after {
      content: ''; position: absolute; top: 0; bottom: 0; z-index: 2;
      width: 60px;
    }
    .banner-img-strip::before { left: 0; background: linear-gradient(to right, #7B5EA7, transparent); }
    .banner-img-strip::after  { right: 0; background: linear-gradient(to left, #4FC3F7, transparent); }

    /* ── PRODUCTS ── */
    .products-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }
    .product-card {
      background: var(--white);
      border-radius: var(--card-radius);
      overflow: hidden;
      box-shadow: 0 4px 16px rgba(0,0,0,.06);
      transition: transform .25s, box-shadow .25s;
      position: relative;
    }
    .product-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,.12); }
    .product-img {
  height: 220px;
  position: relative;
  overflow: hidden;
  background: #f5f5f5;
  padding: 10px;        /* adds breathing room on all sides */
}

.product-img img {
  width: 100%; height: 100%;
  object-fit: contain;  /* no cropping */
  transition: transform .4s;
}
    .product-card:hover .product-img img { transform: scale(1.06); }
    .prod-badge {
      position: absolute; top: 12px; left: 12px;
      background: var(--pink); color: #fff;
      font-size: 11px; font-weight: 800;
      padding: 4px 10px; border-radius: 20px;
      z-index: 2;
    }
    .prod-wish {
      position: absolute; top: 12px; right: 12px;
      width: 34px; height: 34px; border-radius: 50%;
      background: #fff; border: none; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      font-size: 16px; box-shadow: 0 2px 10px rgba(0,0,0,.1);
      transition: transform .2s; z-index: 2;
    }
    .prod-wish:hover { transform: scale(1.2); }
    .prod-body { padding: 16px; }
    .prod-body h4 { font-weight: 800; font-size: 15px; margin-bottom: 4px; }
    .prod-body .age { font-size: 12px; color: #aaa; margin-bottom: 8px; }
    .stars { color: var(--yellow); font-size: 13px; }
    .rating-count { font-size: 12px; color: #aaa; margin-left: 4px; }
    .price-row { display: flex; align-items: center; gap: 10px; margin-top: 10px; }
    .price { font-family: 'Baloo 2', cursive; font-size: 22px; font-weight: 800; color: var(--pink); }
    .price-old { font-size: 14px; color: #bbb; text-decoration: line-through; }
    .add-cart {
      width: 100%; padding: 12px;
      background: linear-gradient(135deg, var(--pink), var(--orange));
      color: #fff; font-weight: 800; font-size: 14px;
      border: none; border-radius: 14px; cursor: pointer;
      margin-top: 12px; transition: opacity .2s;
    }
    .add-cart:hover { opacity: .85; }

    /* ── ABOUT US ── */
    .about-section {
      background: var(--white);
      padding: 18px 40px;
    }
    .about-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
    }
    .about-images {
      position: relative;
      height: 500px;
    }
    .about-img-main {
      width: 75%;
      height: 420px;
      object-fit: cover;
      border-radius: 30px;
      box-shadow: 0 20px 60px rgba(0,0,0,.15);
      position: absolute;
      left: 0; top: 0;
    }
    .about-img-small {
      width: 55%;
      height: 250px;
      object-fit: cover;
      border-radius: 20px;
      box-shadow: 0 12px 40px rgba(0,0,0,.15);
      position: absolute;
      right: 0; bottom: 0;
      border: 6px solid var(--white);
    }
    .about-stat-badge {
      position: absolute;
      top: 20px; right: 0;
      background: linear-gradient(135deg, var(--pink), var(--orange));
      color: #fff;
      padding: 16px 20px;
      border-radius: 20px;
      text-align: center;
      box-shadow: 0 8px 30px rgba(255,77,141,.4);
    }
    .about-stat-badge .num {
      font-family: 'Baloo 2', cursive;
      font-size: 32px; font-weight: 800; display: block;
    }
    .about-stat-badge span:last-child { font-size: 12px; font-weight: 700; }

    .about-text .tag {
      display: inline-block;
      background: #fff0f5; color: var(--pink);
      font-weight: 800; font-size: 12px;
      padding: 4px 14px; border-radius: 20px;
      margin-bottom: 16px; letter-spacing: 1px;
      text-transform: uppercase;
    }
    .about-text h2 {
      font-family: 'Baloo 2', cursive;
      font-size: 42px; font-weight: 800;
      line-height: 1.15; margin-bottom: 18px;
      color: var(--dark);
    }
    .about-text h2 span { color: var(--pink); }
    .about-text p {
      color: #666; font-size: 15px; line-height: 1.8;
      margin-bottom: 16px;
    }
    .about-stats {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 20px; margin-top: 30px;
    }
    .about-stat {
      text-align: center;
      padding: 16px;
      background: var(--light-bg);
      border-radius: 16px;
    }
    .about-stat .num {
      font-family: 'Baloo 2', cursive;
      font-size: 28px; font-weight: 800;
      color: var(--pink); display: block;
    }
    .about-stat .lbl { font-size: 12px; font-weight: 700; color: #888; }

    /* ── TESTIMONIALS ── */
    .testimonials {
      background: var(--light-bg);
      padding: 25px 40px;
    }
    .testi-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 40px;
    }
    .testi-card {
      background: var(--white);
      border-radius: var(--card-radius);
      padding: 28px;
      box-shadow: 0 4px 20px rgba(0,0,0,.06);
      position: relative;
      transition: transform .25s, box-shadow .25s;
    }
    .testi-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.1); }
    .testi-card::before {
      content: '"';
      position: absolute; top: 20px; right: 24px;
      font-family: 'Baloo 2', cursive;
      font-size: 80px; color: #f5e6ff;
      line-height: 1;
    }
    .testi-stars { color: var(--yellow); font-size: 18px; margin-bottom: 14px; }
    .testi-text {
      font-size: 15px; color: #555; line-height: 1.7;
      margin-bottom: 20px; position: relative; z-index: 1;
    }
    .testi-author {
      display: flex; align-items: center; gap: 14px;
    }
    .testi-avatar {
      width: 52px; height: 52px; border-radius: 50%;
      object-fit: cover;
      border: 3px solid var(--pink);
    }
    .testi-name { font-weight: 800; font-size: 15px; color: var(--dark); }
    .testi-role { font-size: 12px; color: #aaa; }
    .testi-verified {
      margin-left: auto;
      background: #e8fff8; color: var(--teal);
      font-size: 11px; font-weight: 800;
      padding: 3px 10px; border-radius: 20px;
    }

    /* ── BRAND STRIP ── */
    .brands { background: var(--white); padding: 9px; }
    .brand-row { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-top: 20px; }
    .brand-pill {
      padding: 14px 28px; border-radius: 50px;
      border: 2px solid #eee; font-weight: 800; font-size: 14px;
      cursor: pointer; transition: all .25s;
    }
    .brand-pill:hover { border-color: var(--pink); color: var(--pink); }

    /* ── FEATURES ── */
    .features { background: var(--dark); }
    .features .section-header h2 { color: #fff; -webkit-text-fill-color: unset; background: none; }
    .features .section-header p { color: rgba(255,255,255,.6); }
    .feat-grid {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 24px; margin-top: 40px;
    }
    .feat-card {
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: var(--card-radius);
      padding: 28px; text-align: center;
      transition: background .25s;
    }
    .feat-card:hover { background: rgba(255,255,255,.1); }
    .feat-icon { font-size: 40px; margin-bottom: 14px; }
    .feat-card h4 { color: #fff; font-weight: 800; font-size: 16px; margin-bottom: 8px; }
    .feat-card p { color: rgba(255,255,255,.5); font-size: 13px; line-height: 1.6; }

    /* ── NEWSLETTER ── */
    .newsletter {
      background: linear-gradient(135deg, var(--pink), var(--orange));
      text-align: center;
      padding: 26px 40px;
    }
    .newsletter h2 {
      font-family: 'Baloo 2', cursive;
      font-size: 44px; font-weight: 800; color: #fff;
      margin-bottom: 12px;
    }
    .newsletter p { color: rgba(255,255,255,.85); font-size: 16px; margin-bottom: 32px; }
    .nl-form {
      display: flex; max-width: 480px; margin: 0 auto;
      border-radius: 50px; overflow: hidden;
      box-shadow: 0 8px 32px rgba(0,0,0,.2);
    }
    .nl-form input {
      flex: 1; padding: 16px 24px; border: none; outline: none;
      font-family: 'Nunito', sans-serif; font-size: 15px;
    }
    .nl-form button {
      padding: 16px 28px;
      background: var(--dark); color: #fff;
      border: none; font-weight: 800; font-size: 14px;
      cursor: pointer; transition: background .2s;
    }
    .nl-form button:hover { background: #333; }

    /* ── FOOTER ── */
    footer {
      background: #111;
      padding: 26px 40px 30px;
      color: rgba(255,255,255,.6);
    }
    .footer-grid {
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 40px; margin-bottom: 12px;
    }
    .footer-brand h3 {
      font-family: 'Baloo 2', cursive;
      font-size: 28px; font-weight: 800; color: #fff;
      margin-bottom: 12px;
    }
    .footer-brand p { font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
    .social-row { display: flex; gap: 12px; }
    .social-btn {
      width: 40px; height: 40px; border-radius: 50%;
      background: rgba(255,255,255,.1); border: none;
      color: #fff; font-size: 18px; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: background .2s;
    }
    .social-btn:hover { background: var(--pink); }
    .footer-col h4 { color: #fff; font-weight: 800; font-size: 15px; margin-bottom: 16px; }
    .footer-col a {
      display: block; color: rgba(255,255,255,.5);
      font-size: 14px; margin-bottom: 10px;
      text-decoration: none; transition: color .2s;
    }
    .footer-col a:hover { color: var(--pink); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,.1);
      padding-top: 24px;
      display: flex; justify-content: space-between; align-items: center;
      font-size: 13px; flex-wrap: wrap; gap: 10px;
    }

    /* ── ANIMATIONS ── */
    @keyframes slideUp {
      from { opacity: 0; transform: translateY(30px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes bounceIn {
      from { opacity: 0; transform: scale(.6); }
      70%  { transform: scale(1.1); }
      to   { opacity: 1; transform: scale(1); }
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 1200px) {
      .cat-grid { grid-template-columns: repeat(4, 1fr); }
      .products-grid { grid-template-columns: repeat(3, 1fr); }
    }
    @media (max-width: 1024px) {
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .about-inner { grid-template-columns: 1fr; }
      .about-images { height: 320px; }
      .testi-grid { grid-template-columns: repeat(2, 1fr); }
      .mid-banner-content { padding: 30px 30px; }
      .mid-banner-content h2 { font-size: 32px; }
    }
    @media (max-width: 900px) {
      .offer-badge { right: 16px; bottom: 16px; width: 76px; height: 76px; font-size: 11px; }
      .offer-badge .big { font-size: 17px; }
    }

    /* ── TABLET / MOBILE ── */
    @media (max-width: 768px) {
      /* Header */
      .header-top { font-size: 11px; padding: 6px 10px; line-height: 1.5; }
      .header-main {
        padding: 8px 12px;
        gap: 8px;
      }
      .logo-icon { width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0; }
      .logo-text { font-size: 18px; }
      .logo-text span { font-size: 9px; }
      .search-bar { display: none; }
      nav { display: none; }
      .hamburger { display: block; }
      .header-actions { gap: 2px; }
      .icon-btn { width: 36px; height: 36px; font-size: 17px; }
      .badge { width: 15px; height: 15px; font-size: 8px; top: 2px; right: 2px; }

      /* Slider */
      .slider-wrap { height: 380px; }
      .slide { padding: 0 20px 0 20px; }
      .slide-content { max-width: 100%; }
      .slide-tag { font-size: 10px; padding: 3px 10px; margin-bottom: 10px; }
      .slide-title { font-size: 28px; margin-bottom: 10px; }
      .slide-desc { font-size: 13px; margin-bottom: 18px; line-height: 1.5; }
      .btn-primary, .btn-outline { padding: 10px 20px; font-size: 13px; }
      .offer-badge { display: none; }

      /* Sections */
      section, .about-section, .testimonials, .brands { padding: 36px 16px; }
      .section-header h2 { font-size: 28px; }
      .offers-strip { grid-template-columns: 1fr; padding: 0 16px 36px; gap: 16px; }
      .offer-card { padding: 24px 20px; min-height: 140px; }
      .offer-card h3 { font-size: 22px; }

      /* Categories */
      .cat-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
      .cat-img { width: 54px; height: 54px; }
      .cat-card { padding: 14px 6px; }
      .cat-name { font-size: 11px; }

      /* Products */
      .products-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }

      /* Mid banner */
      /* .mid-banner { height: auto; }
      .mid-banner-inner { flex-direction: column; }
      .mid-banner-content { flex: none; width: 100%; padding: 30px 20px; }
      .mid-banner-content h2 { font-size: 26px; }
      .banner-img-strip { flex: none; width: 100%; height: 180px; } */

      /* About */
      .about-inner { gap: 30px; }
      .about-images { height: 260px; }
      .about-img-main { width: 65%; height: 240px; }
      .about-img-small { width: 50%; height: 160px; }
      .about-stat-badge { display: none; }
      .about-text h2 { font-size: 28px; }
      .about-stats { grid-template-columns: repeat(3, 1fr); gap: 10px; }
      .about-stat .num { font-size: 20px; }

      /* Testimonials */
      .testi-grid { grid-template-columns: 1fr; }
      .testi-verified { display: none; }

      /* Features */
      .feat-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
      .feat-card { padding: 20px; }

      /* Newsletter */
      .newsletter { padding: 50px 16px; }
      .newsletter h2 { font-size: 26px; }
      .nl-form { flex-direction: column; border-radius: 20px; max-width: 100%; }
      .nl-form input { border-radius: 20px 20px 0 0; padding: 14px 18px; }
      .nl-form button { border-radius: 0 0 20px 20px; padding: 14px 18px; }

      /* Footer */
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
      footer { padding: 40px 16px 20px; }
    }

    /* ── SMALL MOBILE ── */
    @media (max-width: 480px) {
      .header-main { padding: 8px 10px; gap: 6px; }
      .logo-text { font-size: 16px; }

      .slider-wrap { height: 320px; }
      .slide { padding: 0 16px; }
      .slide-title { font-size: 22px; }
      .slide-desc { display: none; }
      .slide-btns { gap: 8px; }
      .btn-primary, .btn-outline { padding: 9px 16px; font-size: 12px; }

      .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
      .products-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
      .product-img { height: 160px; }
      .prod-body { padding: 10px; }
      .prod-body h4 { font-size: 13px; }
      .price { font-size: 18px; }

      .feat-grid { grid-template-columns: 1fr; }
      .about-stats { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }

      .section-header h2 { font-size: 24px; }
      .about-images { height: 220px; }
      .about-img-main { width: 70%; height: 200px; }
      .about-img-small { width: 55%; height: 130px; }
      .mid-banner-content h2 { font-size: 22px; }
    }

    /* ── VERY SMALL ── */
    @media (max-width: 360px) {
      .logo-text { font-size: 14px; }
      .logo-icon { width: 32px; height: 32px; }
      .icon-btn { width: 30px; height: 30px; font-size: 15px; }
      .slide-title { font-size: 19px; }
      .products-grid { grid-template-columns: 1fr; }
    }


    .social-btn {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: #f5e6ff;
  color: #333;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.social-btn:hover {
  background: #ff4da6; /* your pink color */
  color: #fff;
}