/* Gold Commerce extracted from ecom/demo14 */

/* ecom/demo14/include/header.php */
*{
      margin:0;
      padding:0;
      box-sizing:border-box;
    }

 :root{
  /* Brand Core */
  --primary:#d4af37;
  --primary-hover:#bf9b2e;
  --primary-soft:#1f1a0d;
  --primary-border:#3b3116;

  /* Gradient Brand */
  --gradient-start:#0f0f0f;
  --gradient-mid:#1a1a1a;
  --gradient-end:#d4af37;

  /* Accent / Offer / Sale */
  --accent:#f0c75e;
  --accent-hover:#ddb64f;
  --accent-soft:#2b2412;
  --sale-start:#d4af37;
  --sale-end:#f5d77a;

  /* Surface */
  --bg:#0b0b0c;
  --bg-soft:#111112;
  --white:#161617;
  --surface:#161617;
  --surface-2:#1c1c1e;
  --surface-3:#242427;

  /* Text */
  --text:#f5f0df;
  --text-soft:#ddd2ae;
  --muted:#aa9f7a;
  --muted-2:#8f8564;
  --heading:#fff7e1;

  /* Border */
  --border:#2d2717;
  --border-strong:#43381d;

  /* Header / Nav / Footer */
  --header-bg:#111112;
  --nav-bg:linear-gradient(90deg, #0f0f0f 0%, #1b1b1b 55%, #d4af37 100%);
  --footer-bg:#080808;
  --footer-text:rgba(245,240,223,.72);
  --footer-heading:#fff7e1;

  /* Buttons */
  --btn-primary-bg:linear-gradient(90deg, #8f6b16 0%, #d4af37 55%, #f5d77a 100%);
  --btn-primary-shadow:0 12px 22px rgba(212,175,55,.22);

  /* Hot Strip Category Section */
  --hot-strip-bg:linear-gradient(90deg, #121212 0%, #1b1b1b 55%, #2a2414 100%);
  --hot-strip-overlay:rgba(212,175,55,.06);
  --hot-strip-heading:#fff7e1;
  --hot-strip-text:rgba(245,240,223,.82);
  --hot-strip-btn-bg:rgba(212,175,55,.10);
  --hot-strip-btn-hover:rgba(212,175,55,.22);
  --hot-strip-btn-text:#fff7e1;
  --hot-strip-circle-bg:#1b1b1b;
  --hot-strip-circle-border:#3b3116;
  --hot-strip-name:#fff7e1;
  --hot-strip-meta:rgba(245,240,223,.74);

  /* Effects */
  --shadow-sm:0 8px 20px rgba(0,0,0,.28);
  --shadow-md:0 18px 40px rgba(0,0,0,.38);
  --shadow-lg:0 26px 55px rgba(0,0,0,.50);

  --container:1420px;
  --transition:.32s ease;
  --mobile-nav-height:72px;
  --radius-sm:12px;
  --radius-md:16px;
  --radius-lg:18px;
  --radius-xl:22px;
}







    html{
      scroll-behavior:smooth;
    }

  body{
  font-family:"Inter",sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.5;
  overflow-x:hidden;
  padding-bottom:calc(var(--mobile-nav-height) + 14px + env(safe-area-inset-bottom));
}

.header{
  background:var(--header-bg);
  position:relative;
  z-index:30;
  border-bottom:1px solid var(--border);
}

.product-card:hover{
  background:var(--card-hover-bg);
  transform:translateY(-8px) scale(1.02);
  box-shadow:var(--card-hover-shadow);
  border-color:var(--hover-border);
  z-index:3;
}

    a{
      text-decoration:none;
      color:inherit;
    }

    img{
      max-width:100%;
      display:block;
    }

    button,
    input{
      font-family:inherit;
    }

    .container{
      width:min(var(--container), calc(100% - 18px));
      margin:0 auto;
    }

    .header{
      background:var(--header-bg);
      position:relative;
      z-index:30;
      border-bottom:1px solid var(--border);
    }

    .header-main{
      padding:12px 0;
    }

    .header-grid{
      display:grid;
      grid-template-columns:1fr auto;
      grid-template-areas:"logo menu";
      gap:12px;
      align-items:center;
    }

    .logo{
      grid-area:logo;
      display:flex;
      align-items:center;
      gap:10px;
      min-width:0;
    }

    .logo-icon{
      width:40px;
      height:40px;
      border-radius:12px;
      background:linear-gradient(135deg, rgba(109,40,255,.12), rgba(255,59,122,.10));
      display:grid;
      place-items:center;
      font-size:19px;
      color:var(--primary);
      font-weight:900;
      box-shadow:0 10px 24px rgba(109,40,255,.10);
      flex-shrink:0;
    }

    .logo-text{
      min-width:0;
    }

    .logo-text small{
      display:block;
      font-size:9px;
      text-transform:uppercase;
      letter-spacing:.14em;
      color:var(--accent);
      margin-bottom:3px;
      font-weight:800;
      line-height:1;
    }

    .logo-text strong{
      display:block;
      font-size:15px;
      line-height:1.05;
      font-weight:900;
      color:var(--primary);
      word-break:break-word;
    }

    .logo-text strong span{
      color:var(--accent);
    }

    .mobile-menu-btn{
      grid-area:menu;
      display:grid;
      place-items:center;
      width:42px;
      height:42px;
      border-radius:12px;
      border:1px solid var(--border);
      background:var(--white);
      font-size:20px;
      cursor:pointer;
      color:var(--text);
    }

    .header-right{
      grid-area:menu;
      display:flex;
      align-items:center;
      justify-content:flex-end;
      gap:10px;
    }

    .header-actions{
      display:none;
      align-items:center;
      gap:10px;
    }

    .header-icon-btn{
      position:relative;
      width:46px;
      height:46px;
      border:none;
      border-radius:50%;
      background:var(--white);
      color:var(--primary);
      display:grid;
      place-items:center;
      font-size:18px;
      cursor:pointer;
      box-shadow:var(--shadow-sm);
      border:1px solid var(--border);
      transition:var(--transition);
    }

    .header-icon-btn:hover{
      transform:translateY(-2px);
      color:#fff;
      border-color:transparent;
      background:var(--btn-primary-bg);
      box-shadow:0 16px 28px rgba(109,40,255,.22);
    }

    .header-icon-btn.active{
      color:#fff;
      border-color:transparent;
      background:linear-gradient(135deg, var(--sale-start), var(--sale-end));
      box-shadow:0 16px 28px rgba(255,59,122,.22);
    }

    .header-icon-badge{
      position:absolute;
      top:-2px;
      right:-2px;
      min-width:20px;
      height:20px;
      padding:0 5px;
      border-radius:999px;
      background:linear-gradient(90deg, var(--sale-start), var(--sale-end));
      color:#fff;
      font-size:10px;
      font-weight:800;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      box-shadow:0 8px 16px rgba(255,59,122,.25);
    }

    .header-cart-pill{
      display:none;
      align-items:center;
      gap:10px;
      min-height:46px;
      padding:0 16px 0 12px;
      border:none;
      border-radius:999px;
      background:var(--btn-primary-bg);
      color:#fff;
      font-weight:800;
      cursor:pointer;
      box-shadow:0 14px 30px rgba(109,40,255,.24);
      transition:var(--transition);
    }

    .header-cart-pill:hover{
      transform:translateY(-2px);
      box-shadow:0 18px 32px rgba(109,40,255,.30);
    }

    .header-cart-pill .cart-icon-wrap{
      width:32px;
      height:32px;
      border-radius:50%;
      display:grid;
      place-items:center;
      background:rgba(255,255,255,.18);
      font-size:16px;
      flex-shrink:0;
    }

    .header-cart-text{
      display:flex;
      flex-direction:column;
      align-items:flex-start;
      line-height:1.05;
    }

    .header-cart-text strong{
      font-size:13px;
      font-weight:900;
      color:#fff;
    }

    .header-cart-text span{
      font-size:11px;
      font-weight:700;
      color:rgba(255,255,255,.88);
    }

    .search-bar{
      display:none;
      height:48px;
      border:1.4px solid var(--border-strong);
      border-radius:999px;
      align-items:center;
      gap:10px;
      padding:0 10px 0 15px;
      background:var(--white);
      transition:var(--transition);
    }

    .search-bar:focus-within{
      border-color:rgba(109,40,255,.45);
      box-shadow:0 0 0 4px rgba(109,40,255,.08);
    }

    .search-bar input{
      width:100%;
      min-width:0;
      border:none;
      outline:none;
      background:transparent;
      font-size:14px;
      color:var(--text);
    }

    .search-bar input::placeholder{
      color:var(--muted-2);
    }

    .search-btn{
      width:36px;
      height:36px;
      border-radius:50%;
      border:none;
      background:transparent;
      display:grid;
      place-items:center;
      font-size:18px;
      color:var(--muted);
      cursor:pointer;
      flex-shrink:0;
    }

    .navbar{
      display:none;
      background:var(--nav-bg);
      color:#fff;
      box-shadow:var(--shadow-sm);
      position:sticky;
      top:0;
      z-index:50;
    }

    .navbar-inner{
      display:grid;
      grid-template-columns:270px 1fr 170px;
      align-items:stretch;
      position:relative;
    }

    .categories-wrap{
      position:relative;
      height:100%;
    }

    .categories-btn{
      width:100%;
      min-height:52px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      padding:0 18px;
      font-weight:800;
      background:rgba(255,255,255,.10);
      border:none;
      color:#fff;
      border-right:1px solid rgba(255,255,255,.12);
      cursor:pointer;
    }

    .categories-btn small{
      font-weight:700;
      opacity:.95;
      margin-left:8px;
    }

    .categories-btn .arrow{
      transition:var(--transition);
    }

    .categories-wrap.active .categories-btn .arrow{
      transform:rotate(180deg);
    }

    .category-dropdown{
      position:absolute;
      top:100%;
      left:0;
      width:320px;
      background:var(--white);
      border-radius:0 0 18px 18px;
      box-shadow:0 20px 40px rgba(16,20,40,.18);
      border:1px solid var(--border);
      border-top:none;
      opacity:0;
      visibility:hidden;
      transform:translateY(10px);
      transition:var(--transition);
      overflow:hidden;
      z-index:60;
    }

    .categories-wrap.active .category-dropdown{
      opacity:1;
      visibility:visible;
      transform:translateY(0);
    }

    .category-dropdown a{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      padding:14px 18px;
      color:var(--text);
      font-size:14px;
      font-weight:700;
      border-bottom:1px solid var(--border);
      transition:var(--transition);
      background:var(--white);
    }

    .category-dropdown a:last-child{
      border-bottom:none;
    }

    .category-dropdown a:hover{
      background:var(--primary-soft);
      color:var(--primary);
      padding-left:22px;
    }

    .nav-links{
      display:flex;
      align-items:center;
      gap:4px;
      padding:0 14px;
      overflow-x:auto;
      scrollbar-width:none;
    }

    .nav-links::-webkit-scrollbar{
      display:none;
    }

    .nav-links a{
      min-height:52px;
      display:inline-flex;
      align-items:center;
      padding:0 16px;
      font-size:15px;
      font-weight:800;
      white-space:nowrap;
      transition:var(--transition);
      position:relative;
    }

    .nav-links a::after{
      content:"";
      position:absolute;
      left:16px;
      right:16px;
      bottom:10px;
      height:2px;
      border-radius:999px;
      background:rgba(255,255,255,.90);
      transform:scaleX(0);
      transform-origin:center;
      transition:var(--transition);
    }

    .nav-links a:hover::after{
      transform:scaleX(1);
    }

    .mini-cart{
      min-height:52px;
      display:none;
      align-items:center;
      justify-content:center;
      gap:10px;
      background:rgba(0,0,0,.10);
      border-left:1px solid rgba(255,255,255,.12);
      font-weight:900;
      position:relative;
      border:none;
      color:#fff;
      cursor:pointer;
    }

    .mini-cart span:last-child{
      font-size:14px;
      font-weight:700;
      opacity:.95;
    }

    .hero{
      width:100%;
      margin:0;
      padding:0;
      background:transparent;
      overflow:hidden;
    }

    .offer-banner-slider{
      position:relative;
      width:100vw;
      max-width:100vw;
      margin-left:calc(50% - 50vw);
      margin-right:calc(50% - 50vw);
      padding:0;
      border-radius:0;
      overflow:hidden;
      background:var(--white);
      box-shadow:none;
    }

    .offer-banner-track{
      display:flex;
      width:100%;
      transition:transform .55s ease;
      will-change:transform;
      touch-action:pan-y;
    }

    .offer-banner-slide{
      min-width:100%;
      flex:0 0 100%;
      position:relative;
    }

    .offer-banner-slide a{
      display:block;
      width:100%;
    }

    .offer-banner-slide img{
      display:block;
      width:100%;
      height:170px;
      object-fit:cover;
      border-radius:0;
    }

 .offer-banner-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:34px;
  height:34px;
  border:none;
  border-radius:50%;
  background:rgba(0,0,0,.45);
  color:#f5d77a;
  font-size:18px;
  cursor:pointer;
  z-index:3;
  transition:var(--transition);
  border:1px solid rgba(212,175,55,.35);
}

.offer-banner-arrow:hover{
  background:rgba(212,175,55,.16);
  color:#fff7e1;
}
    .offer-banner-dots{
      position:absolute;
      left:50%;
      bottom:10px;
      transform:translateX(-50%);
      display:flex;
      align-items:center;
      gap:6px;
      z-index:3;
    }

    .offer-banner-dot{
      width:8px;
      height:8px;
      border:none;
      border-radius:50%;
      background:rgba(255,255,255,.45);
      cursor:pointer;
      transition:var(--transition);
    }

    .offer-banner-dot.active{
      width:22px;
      border-radius:999px;
      background:#fff;
    }

   

    .hot-top{
      display:flex;
      flex-direction:column;
      align-items:flex-start;
      gap:12px;
      margin-bottom:14px;
      position:relative;
      z-index:2;
    }

    .hot-top-left{
      display:flex;
      flex-direction:column;
      gap:3px;
    }

    .hot-top-left h3{
      font-size:20px;
      font-weight:900;
      color:#fff;
    }

    .hot-top-left p{
      font-size:13px;
      color:rgba(255,255,255,.82);
    }

    .hot-top-right{
      display:flex;
      align-items:center;
      gap:8px;
      flex-shrink:0;
    }

    .cat-slider-btn{
      width:38px;
      height:38px;
      border:none;
      border-radius:50%;
      background:rgba(255,255,255,.14);
      color:#fff;
      font-size:18px;
      cursor:pointer;
      transition:var(--transition);
    }

    .cat-slider-btn:hover{
      background:rgba(255,255,255,.24);
    }

    .cat-slider-wrap{
      overflow:hidden;
      position:relative;
      z-index:2;
      width:100%;
      touch-action:pan-y;
    }

    .cat-slider-track{
      display:flex;
      gap:14px;
      transition:transform .45s ease;
      will-change:transform;
    }

    .cat-slide-item{
      min-width:126px;
      max-width:126px;
      text-align:center;
      flex:0 0 126px;
    }

    .cat-slide-link{
      display:block;
    }

    .cat-circle{
      width:76px;
      height:76px;
      margin:0 auto 10px;
      border-radius:50%;
      background:var(--white);
      display:grid;
      place-items:center;
      overflow:hidden;
      box-shadow:0 12px 24px rgba(0,0,0,.15);
      transition:var(--transition);
    }

    .cat-circle img{
      width:60px;
      height:60px;
      object-fit:cover;
      border-radius:50%;
    }

    .cat-slide-item:hover .cat-circle{
      transform:translateY(-5px) scale(1.04);
    }

    .cat-name{
      font-size:14px;
      font-weight:800;
      color:#fff;
      margin-bottom:3px;
      line-height:1.25;
    }

    .cat-meta{
      font-size:12px;
      color:rgba(255,255,255,.82);
    }

    .featured-cats{
      background:var(--bg-soft);
      padding:28px 0 14px;
    }

    .section-head{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:20px;
      margin-bottom:14px;
    }

    .section-title{
      font-size:17px;
      font-weight:900;
      color:var(--heading);
    }

    .section-sub-link{
      font-size:13px;
      font-weight:800;
      color:var(--primary);
    }

    .cat-grid{
      display:grid;
      grid-template-columns:1fr;
      overflow:hidden;
      gap:12px;
    }

    .cat-card{
      position:relative;
      min-height:230px;
      border-radius:18px;
      overflow:hidden;
      color:#fff;
      display:flex;
      align-items:flex-end;
      isolation:isolate;
    }

    .cat-card::after{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.50));
      z-index:1;
    }

    .cat-card img{
      position:absolute;
      inset:0;
      width:100%;
      height:100%;
      object-fit:cover;
      transition:transform .6s ease;
    }

    .cat-card:hover img{
      transform:scale(1.05);
    }

    .cat-content{
      position:relative;
      z-index:2;
      width:100%;
      padding:18px 16px 18px;
    }

    .cat-content h3{
      font-size:16px;
      font-weight:900;
      margin-bottom:8px;
    }

    .cat-tags{
      display:flex;
      flex-wrap:wrap;
      gap:6px 12px;
      font-size:13px;
      color:rgba(255,255,255,.94);
    }

    .products-area{
      padding:22px 0 8px;
    }

    .product-block{
      background:var(--surface);
      border:1px solid var(--border);
      box-shadow:0 6px 16px rgba(15,24,55,.03);
      margin-bottom:12px;
      overflow:hidden;
      border-radius:18px;
    }

    .product-block-header{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      padding:12px 12px 0;
    }

    .product-block-header h3{
      font-size:13px;
      font-weight:800;
      color:var(--heading);
    }

    .block-nav{
      display:flex;
      align-items:center;
      gap:8px;
      color:var(--muted-2);
      font-size:14px;
    }

    .product-grid{
      display:grid;
      grid-template-columns:repeat(2, 1fr);
      gap:0;
      border-top:1px solid var(--border);
    }

    .product-card{
      position:relative;
      padding:10px 8px 12px;
      text-align:center;
      min-height:288px;
      border-right:1px solid var(--border);
      border-bottom:1px solid var(--border);
      background:var(--surface);
      transition:var(--transition);
      display:flex;
      flex-direction:column;
      justify-content:flex-start;
      align-items:center;
      overflow:hidden;
      isolation:isolate;
    }

    .product-card:nth-child(2n){
      border-right:none;
    }

    .product-card::before{
      content:"";
      position:absolute;
      top:0;
      left:-120%;
      width:70%;
      height:100%;
      background:linear-gradient(90deg, transparent, rgba(255,255,255,.56), transparent);
      transform:skewX(-24deg);
      transition:.7s ease;
      z-index:2;
      pointer-events:none;
    }

    .product-card:hover::before{
      left:140%;
    }

    .product-card:hover{
      background:linear-gradient(180deg, #ffffff 0%, var(--primary-soft) 100%);
      transform:translateY(-6px);
      box-shadow:0 16px 28px rgba(109,40,255,.10);
      z-index:3;
    }

    .discount-badge{
      position:absolute;
      top:10px;
      left:8px;
      z-index:5;
      min-width:46px;
      height:24px;
      border-radius:999px;
      padding:0 8px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      background:linear-gradient(90deg, var(--sale-start), var(--sale-end));
      color:#fff;
      font-size:10px;
      font-weight:900;
      box-shadow:0 8px 16px rgba(255,59,122,.28);
    }

    .product-actions{
      position:static;
      display:flex;
      flex-direction:row;
      gap:6px;
      margin-bottom:8px;
      z-index:4;
      opacity:1;
      transform:none;
      width:100%;
      justify-content:flex-end;
    }

    .product-action-btn{
      width:28px;
      height:28px;
      border:none;
      border-radius:50%;
      background:var(--white);
      color:var(--primary);
      font-size:13px;
      box-shadow:0 8px 16px rgba(17,22,45,.10);
      cursor:pointer;
      transition:var(--transition);
      flex-shrink:0;
    }

    .product-action-btn:hover{
      background:var(--btn-primary-bg);
      color:#fff;
      transform:scale(1.06);
    }

    .product-action-btn.active{
      background:linear-gradient(90deg, var(--sale-start), var(--sale-end));
      color:#fff;
    }

    .product-thumb{
      width:78px;
      height:78px;
      margin:0 auto 8px;
      display:grid;
      place-items:center;
      position:relative;
      z-index:3;
      transition:transform .4s ease;
    }

    .product-thumb img{
      width:78px;
      height:78px;
      object-fit:contain;
      transition:transform .45s ease, filter .45s ease;
    }

    .product-card:hover .product-thumb{
      transform:translateY(-5px);
    }

    .product-card:hover .product-thumb img{
      transform:scale(1.10) rotate(-4deg);
      filter:drop-shadow(0 10px 16px rgba(0,0,0,.12));
    }

    .product-name{
      font-size:10px;
      line-height:1.42;
      color:var(--text-soft);
      min-height:30px;
      margin-bottom:6px;
      position:relative;
      z-index:3;
      max-width:110px;
    }

    .price-wrap{
      display:flex;
      flex-direction:column;
      align-items:center;
      gap:2px;
      margin-bottom:10px;
      position:relative;
      z-index:3;
    }

    .product-price{
      font-size:12px;
      font-weight:900;
      color:var(--primary);
      line-height:1.1;
    }

    .old-price{
      font-size:10px;
      color:var(--muted-2);
      text-decoration:line-through;
      line-height:1.1;
    }

    .cart-controls{
      margin-top:auto;
      width:100%;
      display:flex;
      flex-direction:column;
      gap:8px;
      align-items:center;
      position:relative;
      z-index:4;
    }

    .buy-btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-width:92px;
      height:34px;
      padding:0 14px;
      border:none;
      border-radius:999px;
      background:var(--btn-primary-bg);
      color:#fff;
      font-size:11px;
      font-weight:800;
      cursor:pointer;
      box-shadow:var(--btn-primary-shadow);
      transition:var(--transition);
      width:100%;
      max-width:112px;
    }

    .buy-btn:hover{
      transform:translateY(-2px) scale(1.02);
      box-shadow:0 16px 24px rgba(109,40,255,.28);
    }

    .qty-box{
      display:none;
      align-items:center;
      justify-content:center;
      gap:6px;
      background:var(--primary-soft);
      border:1px solid var(--primary-border);
      border-radius:999px;
      padding:4px;
      width:100%;
      max-width:112px;
    }

    .qty-box.active{
      display:flex;
    }

    .qty-btn{
      width:28px;
      height:28px;
      border:none;
      border-radius:50%;
      background:var(--white);
      color:var(--primary);
      font-size:16px;
      font-weight:800;
      cursor:pointer;
      box-shadow:0 6px 14px rgba(109,40,255,.12);
      flex-shrink:0;
    }

    .qty-value{
      min-width:26px;
      text-align:center;
      font-size:13px;
      font-weight:800;
      color:var(--heading);
    }

    .wide-banner{
      margin:10px 0 14px;
      background:var(--white);
      border:1px solid var(--border);
      overflow:hidden;
      min-height:95px;
      border-radius:16px;
    }

    .wide-banner img{
      width:100%;
      height:95px;
      object-fit:cover;
    }

    .triple-banner{
      display:grid;
      grid-template-columns:1fr;
      gap:10px;
      margin-top:10px;
    }

    .triple-banner .banner{
      border:1px solid var(--border);
      overflow:hidden;
      background:var(--white);
      min-height:132px;
      border-radius:16px;
    }

    .triple-banner .banner img{
      width:100%;
      height:132px;
      object-fit:cover;
      transition:transform .45s ease;
    }

    .triple-banner .banner:hover img{
      transform:scale(1.05);
    }

    .footer{
      margin-top:26px;
      background:var(--footer-bg);
      color:var(--footer-text);
      padding:30px 0 20px;
    }

    .footer-grid{
      display:grid;
      grid-template-columns:1fr;
      gap:20px;
    }

    .footer h4{
      color:var(--footer-heading);
      font-size:15px;
      margin-bottom:10px;
      font-weight:800;
    }

    .footer p,
    .footer li,
    .footer a{
      font-size:13px;
      color:var(--footer-text);
    }

    .footer ul{
      list-style:none;
    }

    .footer li{
      margin-bottom:8px;
    }

    .footer a:hover{
      color:#fff;
    }

    .copyright{
      border-top:1px solid rgba(255,255,255,.08);
      margin-top:18px;
      padding-top:14px;
      text-align:center;
      font-size:12px;
      color:rgba(255,255,255,.58);
    }

    .mobile-drawer{
      position:fixed;
      inset:0;
      background:rgba(11,14,28,.58);
      z-index:420;
      opacity:0;
      visibility:hidden;
      transition:var(--transition);
    }

    .mobile-drawer.active{
      opacity:1;
      visibility:visible;
    }

    .drawer-panel{
      width:300px;
      max-width:calc(100% - 34px);
      height:100%;
      background:var(--white);
      transform:translateX(-100%);
      transition:var(--transition);
      padding:18px 18px calc(var(--mobile-nav-height) + 28px);
      overflow-y:auto;
      position:relative;
      z-index:421;
    }

    .mobile-drawer.active .drawer-panel{
      transform:translateX(0);
    }

    .drawer-head{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      margin-bottom:22px;
    }

    .drawer-close{
      width:38px;
      height:38px;
      border-radius:10px;
      border:1px solid var(--border);
      background:var(--white);
      cursor:pointer;
      font-size:18px;
      color:var(--text);
    }

    .drawer-links a{
      display:block;
      padding:13px 0;
      border-bottom:1px solid var(--border);
      font-weight:800;
      color:var(--text);
      font-size:14px;
    }

    .drawer-links a:hover{
      color:var(--primary);
    }

    .cart-overlay{
      position:fixed;
      inset:0;
      background:rgba(10,14,28,.52);
      z-index:300;
      opacity:0;
      visibility:hidden;
      transition:var(--transition);
    }

    .cart-overlay.active{
      opacity:1;
      visibility:visible;
    }

    .offcanvas-cart{
      position:fixed;
      top:0;
      right:0;
      width:100%;
      max-width:380px;
      height:100%;
      background:var(--white);
      z-index:310;
      transform:translateX(100%);
      transition:var(--transition);
      display:flex;
      flex-direction:column;
      box-shadow:-18px 0 40px rgba(15,24,55,.18);
    }

    .offcanvas-cart.active{
      transform:translateX(0);
    }

    .cart-head{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      padding:16px 16px 14px;
      border-bottom:1px solid var(--border);
      background:var(--white);
      position:sticky;
      top:0;
      z-index:2;
    }

    .cart-head h3{
      font-size:18px;
      font-weight:900;
      color:var(--heading);
    }

    .cart-close{
      width:38px;
      height:38px;
      border:none;
      border-radius:12px;
      background:var(--surface-3);
      font-size:18px;
      cursor:pointer;
      color:var(--text-soft);
    }

    .cart-body{
      flex:1;
      overflow:auto;
      padding:14px;
      background:var(--surface-2);
    }

    .cart-empty{
      min-height:220px;
      display:flex;
      flex-direction:column;
      align-items:center;
      justify-content:center;
      text-align:center;
      color:var(--muted);
      gap:10px;
    }

    .cart-empty-icon{
      width:72px;
      height:72px;
      border-radius:50%;
      display:grid;
      place-items:center;
      background:var(--primary-soft);
      color:var(--primary);
      font-size:28px;
    }

    .cart-items{
      display:flex;
      flex-direction:column;
      gap:12px;
    }

    .cart-item{
      background:var(--white);
      border:1px solid var(--border);
      border-radius:16px;
      padding:12px;
      display:grid;
      grid-template-columns:66px 1fr auto;
      gap:12px;
      align-items:center;
      box-shadow:0 10px 20px rgba(15,24,55,.04);
    }

    .cart-item-thumb{
      width:66px;
      height:66px;
      border-radius:14px;
      background:var(--surface-2);
      display:grid;
      place-items:center;
      overflow:hidden;
    }

    .cart-item-thumb img{
      width:58px;
      height:58px;
      object-fit:contain;
    }

    .cart-item-info{
      min-width:0;
    }

    .cart-item-name{
      font-size:13px;
      font-weight:800;
      color:var(--heading);
      line-height:1.35;
      margin-bottom:4px;
    }

    .cart-item-price{
      font-size:13px;
      font-weight:800;
      color:var(--primary);
      margin-bottom:8px;
    }

    .cart-item-qty{
      display:inline-flex;
      align-items:center;
      gap:6px;
      background:var(--primary-soft);
      border:1px solid var(--primary-border);
      border-radius:999px;
      padding:4px;
    }

    .cart-item-qty button{
      width:26px;
      height:26px;
      border:none;
      border-radius:50%;
      background:var(--white);
      color:var(--primary);
      font-size:15px;
      font-weight:800;
      cursor:pointer;
    }

    .cart-item-qty span{
      min-width:22px;
      text-align:center;
      font-size:12px;
      font-weight:800;
      color:var(--heading);
    }

    .cart-item-right{
      display:flex;
      flex-direction:column;
      align-items:flex-end;
      gap:10px;
    }

    .cart-line-total{
      font-size:13px;
      font-weight:900;
      color:var(--accent);
    }

    .cart-remove{
      width:32px;
      height:32px;
      border:none;
      border-radius:50%;
      background:var(--accent-soft);
      color:var(--accent);
      cursor:pointer;
      font-size:14px;
      font-weight:800;
    }

    .cart-foot{
      border-top:1px solid var(--border);
      background:var(--white);
      padding:14px;
      display:flex;
      flex-direction:column;
      gap:12px;
      position:sticky;
      bottom:0;
    }

    .cart-summary{
      display:flex;
      flex-direction:column;
      gap:8px;
    }

    .cart-summary-row{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      font-size:14px;
      color:var(--text-soft);
    }

    .cart-summary-row.total{
      font-size:16px;
      font-weight:900;
      color:var(--heading);
      padding-top:4px;
      border-top:1px dashed var(--border-strong);
    }

    .cart-actions{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:10px;
    }

    .cart-action-btn{
      min-height:46px;
      border:none;
      border-radius:14px;
      font-size:14px;
      font-weight:800;
      cursor:pointer;
      transition:var(--transition);
    }

    .cart-action-btn.secondary{
      background:var(--surface-3);
      color:var(--text-soft);
    }

    .cart-action-btn.primary{
      background:var(--btn-primary-bg);
      color:#fff;
      box-shadow:var(--btn-primary-shadow);
    }

    .cart-action-btn:hover{
      transform:translateY(-2px);
    }

    .mobile-bottom-nav{
      position:fixed;
      left:10px;
      right:10px;
      bottom:10px;
      height:var(--mobile-nav-height);
      background:rgba(255,255,255,.96);
      backdrop-filter:blur(14px);
      border:1px solid var(--border);
      box-shadow:0 14px 40px rgba(15,24,55,.12);
      border-radius:22px;
      z-index:260;
      display:grid;
      grid-template-columns:repeat(5, 1fr);
      align-items:center;
      padding:8px 6px;
    }

    html.drawer-open .mobile-bottom-nav{
      opacity:0;
      visibility:hidden;
      pointer-events:none;
      transform:translateY(18px);
    }

    .mobile-nav-item{
      position:relative;
      border:none;
      background:transparent;
      display:flex;
      flex-direction:column;
      align-items:center;
      justify-content:center;
      gap:4px;
      color:var(--muted);
      cursor:pointer;
      min-height:100%;
      border-radius:16px;
      transition:var(--transition);
      font-size:11px;
      font-weight:700;
    }

    .mobile-nav-item:hover,
    .mobile-nav-item.active{
      color:var(--primary);
      background:var(--primary-soft);
    }

    .mobile-nav-icon{
      font-size:19px;
      line-height:1;
    }

    .mobile-nav-badge{
      position:absolute;
      top:6px;
      right:16px;
      min-width:18px;
      height:18px;
      padding:0 4px;
      border-radius:999px;
      background:linear-gradient(90deg, var(--sale-start), var(--sale-end));
      color:#fff;
      font-size:10px;
      font-weight:800;
      display:inline-flex;
      align-items:center;
      justify-content:center;
    }

    html.drawer-open,
    html.cart-open{
      overflow:hidden;
    }

    .featured-cats,
    .products-area,
    .footer{
      content-visibility:auto;
      contain-intrinsic-size:1px 1000px;
    }

    img[loading="lazy"]{
      content-visibility:auto;
    }

    @media (prefers-reduced-motion: reduce){
      html{
        scroll-behavior:auto;
      }

      *,
      *::before,
      *::after{
        animation:none !important;
        transition:none !important;
      }
    }

  @media (prefers-reduced-motion: reduce){
  html{
    scroll-behavior:auto;
  }

  *,
  *::before,
  *::after{
    animation:none !important;
    transition:none !important;
  }
}

@media (max-width:860px){
  .mobile-bottom-nav{
    backdrop-filter:none;
  }

  .offcanvas-cart{
    box-shadow:-8px 0 24px rgba(15,24,55,.14);
  }

  .offer-banner-arrow{
    display:none !important;
  }
}

@media (min-width:576px){
  .offer-banner-slide img{
    height:220px;
  }
}

@media (min-width:861px){
  body{
    padding-bottom:0;
  }

  .container{
    width:min(var(--container), calc(100% - 28px));
  }

  .header-main{
    padding:14px 0 16px;
  }

  .header-grid{
    grid-template-columns:220px minmax(320px, 1fr) auto;
    grid-template-areas:"logo search menu";
    gap:18px;
  }

  .header-actions{
    display:flex;
  }

  .header-cart-pill{
    display:inline-flex;
  }

  .search-bar{
    display:flex;
  }

  .mobile-menu-btn{
    display:none;
  }

  .navbar{
    display:block;
  }

  .offer-banner-slide img{
    height:320px;
  }

  .offer-banner-arrow{
    width:42px;
    height:42px;
    font-size:22px;
  }

  .offer-banner-arrow.prev{
    left:16px;
  }

  .offer-banner-arrow.next{
    right:16px;
  }

  .offer-banner-dots{
    bottom:14px;
    gap:8px;
  }

  .offer-banner-dot{
    width:10px;
    height:10px;
  }

  .offer-banner-dot.active{
    width:28px;
  }
}

    @media (min-width:576px){
      .offer-banner-slide img{
        height:220px;
      }
    }

    @media (min-width:861px){
      body{
        padding-bottom:0;
      }

      .container{
        width:min(var(--container), calc(100% - 28px));
      }

      .header-main{
        padding:14px 0 16px;
      }

      .header-grid{
        grid-template-columns:220px minmax(320px, 1fr) auto;
        grid-template-areas:"logo search menu";
        gap:18px;
      }

      .header-actions{
        display:flex;
      }

      .header-cart-pill{
        display:inline-flex;
      }

      .search-bar{
        display:flex;
      }

      .mobile-menu-btn{
        display:none;
      }

      .navbar{
        display:block;
      }

      .offer-banner-slide img{
        height:320px;
      }

      .offer-banner-arrow{
        width:42px;
        height:42px;
        font-size:22px;
      }

      .offer-banner-arrow.prev{
        left:16px;
      }

      .offer-banner-arrow.next{
        right:16px;
      }

      .offer-banner-dots{
        bottom:14px;
        gap:8px;
      }

      .offer-banner-dot{
        width:10px;
        height:10px;
      }

      .offer-banner-dot.active{
        width:28px;
      }


      .hot-top{
        flex-direction:row;
        justify-content:space-between;
        align-items:center;
      }

      .cat-slider-track{
        gap:18px;
      }

      .cat-slide-item{
        min-width:146px;
        max-width:146px;
        flex:0 0 146px;
      }

      .cat-circle{
        width:86px;
        height:86px;
      }

      .cat-circle img{
        width:68px;
        height:68px;
      }

      .featured-cats{
        padding:42px 0 20px;
      }

      .cat-grid{
        grid-template-columns:repeat(2, 1fr);
      }

      .cat-card{
        min-height:280px;
      }

      .products-area{
        padding:30px 0 10px;
      }

      .product-grid{
        grid-template-columns:repeat(3, 1fr);
      }

      .product-card{
        min-height:306px;
        padding:12px 10px 14px;
      }

      .product-card:nth-child(2n){
        border-right:1px solid var(--border);
      }

      .product-card:nth-child(3n){
        border-right:none;
      }

      .discount-badge{
        min-width:52px;
        height:26px;
        font-size:11px;
      }

      .product-actions{
        position:absolute;
        top:12px;
        right:10px;
        display:flex;
        flex-direction:column;
        gap:8px;
        opacity:0;
        transform:translateX(10px);
        margin-bottom:0;
        width:auto;
      }

      .product-card:hover .product-actions{
        opacity:1;
        transform:translateX(0);
      }

      .product-action-btn{
        width:32px;
        height:32px;
        font-size:14px;
      }

      .product-thumb,
      .product-thumb img{
        width:92px;
        height:92px;
      }

      .product-name{
        font-size:11px;
        min-height:34px;
        max-width:138px;
      }

      .price-wrap{
        margin-bottom:12px;
      }

      .product-price{
        font-size:13px;
      }

      .old-price{
        font-size:11px;
      }

      .buy-btn{
        min-width:100px;
        height:36px;
        font-size:12px;
        max-width:120px;
      }

      .qty-box{
        max-width:120px;
      }

      .wide-banner{
        min-height:125px;
      }

      .wide-banner img{
        height:125px;
      }

      .triple-banner{
        grid-template-columns:repeat(2, 1fr);
      }

      .triple-banner .banner,
      .triple-banner .banner img{
        min-height:170px;
        height:170px;
      }

      .footer{
        padding:38px 0 22px;
      }

      .footer-grid{
        grid-template-columns:repeat(2, 1fr);
      }

      .mobile-bottom-nav{
        display:none;
      }
    }

    @media (min-width:1181px){
      .container{
        width:min(var(--container), calc(100% - 32px));
      }

      .header-main{
        padding:16px 0 18px;
      }

      .header-grid{
        grid-template-columns:280px minmax(420px, 1fr) auto;
        gap:22px;
      }

      .header-right{
        gap:12px;
      }

      .header-icon-btn{
        width:48px;
        height:48px;
        font-size:19px;
      }

      .header-cart-pill{
        min-height:48px;
        padding:0 18px 0 12px;
      }

      .header-cart-pill .cart-icon-wrap{
        width:34px;
        height:34px;
        font-size:17px;
      }

      .logo{
        gap:14px;
      }

      .logo-icon{
        width:44px;
        height:44px;
        font-size:21px;
      }

      .logo-text strong{
        font-size:18px;
      }

      .search-bar{
        height:52px;
        padding:0 14px 0 20px;
      }

      .search-bar input{
        font-size:16px;
      }

      .search-btn{
        width:42px;
        height:42px;
        font-size:20px;
      }

      .offer-banner-slide img{
        height:420px;
      }

      .navbar-inner{
        grid-template-columns:270px 1fr 170px;
      }

      .category-dropdown{
        width:320px;
      }
 
 .hot-strip{
  background:var(--hot-strip-bg);
  padding:24px 0 28px;
  color:var(--hot-strip-heading);
  position:relative;
  overflow:hidden;
}

.hot-strip::before{
  content:"";
  position:absolute;
  top:-80px;
  left:-60px;
  width:220px;
  height:220px;
  border-radius:50%;
  background:var(--hot-strip-overlay);
  filter:blur(10px);
}

.hot-top{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:12px;
  margin-bottom:14px;
  position:relative;
  z-index:2;
}

.hot-top-left{
  display:flex;
  flex-direction:column;
  gap:3px;
}

.hot-top-left h3{
  font-size:20px;
  font-weight:900;
  color:var(--hot-strip-heading);
}

.hot-top-left p{
  font-size:13px;
  color:var(--hot-strip-text);
}

.hot-top-right{
  display:flex;
  align-items:center;
  gap:8px;
  flex-shrink:0;
}

.cat-slider-btn{
  width:38px;
  height:38px;
  border:none;
  border-radius:50%;
  background:var(--hot-strip-btn-bg);
  color:var(--hot-strip-btn-text);
  font-size:18px;
  cursor:pointer;
  transition:var(--transition);
  border:1px solid var(--hot-strip-circle-border);
}

.cat-slider-btn:hover{
  background:var(--hot-strip-btn-hover);
}

.cat-slider-wrap{
  overflow:hidden;
  position:relative;
  z-index:2;
  width:100%;
  touch-action:pan-y;
}

.cat-slider-track{
  display:flex;
  gap:14px;
  transition:transform .45s ease;
  will-change:transform;
}

.cat-slide-item{
  min-width:126px;
  max-width:126px;
  text-align:center;
  flex:0 0 126px;
}

.cat-slide-link{
  display:block;
}

.cat-circle{
  width:76px;
  height:76px;
  margin:0 auto 10px;
  border-radius:50%;
  background:var(--hot-strip-circle-bg);
  border:1px solid var(--hot-strip-circle-border);
  display:grid;
  place-items:center;
  overflow:hidden;
  box-shadow:0 12px 24px rgba(0,0,0,.20);
  transition:var(--transition);
}

.cat-circle img{
  width:60px;
  height:60px;
  object-fit:cover;
  border-radius:50%;
}

.cat-slide-item:hover .cat-circle{
  transform:translateY(-5px) scale(1.04);
}

.cat-name{
  font-size:14px;
  font-weight:800;
  color:var(--hot-strip-name);
  margin-bottom:3px;
  line-height:1.25;
}

.cat-meta{
  font-size:12px;
  color:var(--hot-strip-meta);
}

@media (min-width:861px){
  .hot-strip{
    padding:34px 0 38px;
  }

  .hot-top{
    flex-direction:row;
    justify-content:space-between;
    align-items:center;
  }

  .cat-slider-track{
    gap:18px;
  }

  .cat-slide-item{
    min-width:146px;
    max-width:146px;
    flex:0 0 146px;
  }

  .cat-circle{
    width:86px;
    height:86px;
  }

  .cat-circle img{
    width:68px;
    height:68px;
  }
}

@media (min-width:1181px){
  .hot-strip{
    padding:42px 0 46px;
  }

  .hot-top-left h3{
    font-size:22px;
  }

  .hot-top-left p{
    font-size:14px;
  }

  .cat-slider-btn{
    width:42px;
    height:42px;
    font-size:22px;
  }

  .cat-slider-track{
    gap:22px;
  }

  .cat-slide-item{
    min-width:170px;
    max-width:170px;
    flex:0 0 170px;
  }

  .cat-circle{
    width:92px;
    height:92px;
  }

  .cat-circle img{
    width:72px;
    height:72px;
  }

  .cat-name{
    font-size:15px;
  }

  .cat-meta{
    font-size:13px;
  }
}
 
      .hot-top-left h3{
        font-size:22px;
      }

      .hot-top-left p{
        font-size:14px;
      }

      .cat-slider-btn{
        width:42px;
        height:42px;
        font-size:22px;
      }

      .cat-slider-track{
        gap:22px;
      }

      .cat-slide-item{
        min-width:170px;
        max-width:170px;
        flex:0 0 170px;
      }

      .cat-circle{
        width:92px;
        height:92px;
      }

      .cat-circle img{
        width:72px;
        height:72px;
      }

      .cat-name{
        font-size:15px;
      }

      .cat-meta{
        font-size:13px;
      }

      .featured-cats{
        padding:58px 0 28px;
      }

      .section-title{
        font-size:18px;
      }

      .cat-grid{
        grid-template-columns:repeat(4, 1fr);
        gap:0;
      }

      .cat-card{
        min-height:340px;
        border-radius:0;
      }

      .cat-content{
        padding:22px 24px 24px;
      }

      .cat-content h3{
        font-size:17px;
      }

      .cat-tags{
        gap:8px 16px;
        font-size:14px;
      }

      .products-area{
        padding:38px 0 10px;
      }

      .product-block{
        border-radius:0;
        margin-bottom:14px;
      }

      .product-block-header{
        padding:10px 12px 0;
      }

      .product-block-header h3{
        font-size:12px;
      }

      .product-grid{
        grid-template-columns:repeat(6, 1fr);
      }

      .product-card{
        min-height:312px;
        padding:14px 12px 18px;
      }

      .product-card:nth-child(3n){
        border-right:1px solid var(--border);
      }

      .product-card:nth-child(2n){
        border-right:1px solid var(--border);
      }

      .product-card:nth-child(6n){
        border-right:none;
      }

      .product-thumb,
      .product-thumb img{
        width:96px;
        height:96px;
      }

      .product-name{
        font-size:11px;
        max-width:150px;
      }

      .product-price{
        font-size:13px;
      }

      .buy-btn{
        min-width:104px;
      }

      .qty-box{
        max-width:124px;
      }

      .wide-banner{
        min-height:140px;
        border-radius:0;
        margin:10px 0 18px;
      }

      .wide-banner img{
        height:140px;
      }

      .triple-banner{
        grid-template-columns:repeat(3, 1fr);
        gap:12px;
      }

      .triple-banner .banner{
        border-radius:0;
        min-height:160px;
      }

      .triple-banner .banner img{
        height:160px;
        min-height:160px;
      }

      .footer{
        margin-top:46px;
        padding:46px 0 24px;
      }

      .footer-grid{
        grid-template-columns:1.4fr 1fr 1fr 1fr;
        gap:24px;
      }

      .footer h4{
        font-size:16px;
      }

      .footer p,
      .footer li,
      .footer a{
        font-size:14px;
      }

      .copyright{
        font-size:13px;
      }
    }
