/* Design tokens */
:root {
  --fl-primary:     #46a8a3;
  --fl-primary-dark:#3b918c;
  --fl-primary-light:rgba(70,168,163,.1);
  --fl-orange:      #46a8a3;
  --fl-black:       #1e2b38;
  --fl-black-2:     #16202b;
  --fl-text:        #1e2b38;
  --fl-text-2:      #374b5c;
  --fl-text-3:      #6b7e8f;
  --fl-bg:          #f5f7f9;
  --fl-white:       #fff;
  --fl-border:      #dde4ec;
  --fl-radius:      10px;
  --fl-shadow:      0 2px 12px rgba(30,43,56,.08);
  --container:      1200px;
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{font-size:15px;-webkit-text-size-adjust:100%;zoom:1.15}
html,body{max-width:100%;overflow-x:hidden}
body{font-family:'Inter',system-ui,sans-serif;color:var(--fl-text);background:var(--fl-bg);line-height:1.55}
img{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none}
ul{list-style:none}
input,button,select,textarea{font:inherit}
.container{max-width:var(--container);margin:0 auto;padding:0 16px}

/* Announce bar */
.announce-bar{background:var(--fl-primary);color:#fff;font-size:12px;text-align:center;padding:7px 16px;font-weight:500}

/* Top bar */
.header-topbar{background:#fff;border-bottom:1px solid var(--fl-border);font-size:12px;color:var(--fl-text-3)}
.header-topbar .container{display:flex;align-items:center;justify-content:space-between;height:36px;gap:12px}
.topbar-left,.topbar-right{display:flex;align-items:center;gap:12px}
.topbar-right a,.topbar-left a{display:flex;align-items:center;gap:4px;color:var(--fl-text-3);transition:color .2s}
.topbar-right a:hover,.topbar-left a:hover{color:var(--fl-primary)}

/* Main header */
.site-header{background:#fff;border-bottom:1px solid var(--fl-border);position:sticky;top:0;z-index:90}
.header-main{display:flex;align-items:center;gap:16px;padding:10px 0}
.header-logo img{height:52px;width:auto}
.header-search{flex:1;max-width:660px}
.header-search form{display:flex;border:1.5px solid var(--fl-border);border-radius:var(--fl-radius);overflow:hidden;background:var(--fl-bg);transition:border-color .25s,box-shadow .25s}
.header-search form:focus-within{border-color:var(--fl-primary);box-shadow:0 0 0 3px rgba(70,168,163,.1);background:#fff}
.header-search input{flex:1;border:none;background:transparent;padding:0 14px;height:42px;font-size:13.5px;outline:none}
.header-search button{background:var(--fl-primary);border:none;color:#fff;width:46px;cursor:pointer;transition:background .2s;display:flex;align-items:center;justify-content:center}
.header-search button:hover{background:var(--fl-primary-dark)}
.header-search button svg{width:18px;height:18px}
.header-actions{display:flex;align-items:center;gap:10px}
.header-action{display:flex;align-items:center;gap:6px;padding:7px 14px;border:1.5px solid var(--fl-border);border-radius:var(--fl-radius);font-size:13px;font-weight:600;color:var(--fl-text-2);cursor:pointer;transition:all .25s;white-space:nowrap;position:relative}
.header-action:hover{border-color:var(--fl-primary);color:var(--fl-primary);background:var(--fl-primary-light)}
.header-action.cart-action{background:var(--fl-primary);border-color:var(--fl-primary);color:#fff}
.header-action.cart-action:hover{background:var(--fl-primary-dark);border-color:var(--fl-primary-dark)}
.header-action .badge{background:#C6AC73;color:#fff;font-size:9px;font-weight:700;min-width:16px;height:16px;border-radius:8px;padding:0 4px;display:flex;align-items:center;justify-content:center;position:absolute;top:-6px;right:-6px}
.header-action.dropdown{padding:7px 14px;margin-bottom:0}.header-action.dropdown::after{content:"";position:absolute;left:0;right:0;top:100%;height:12px}
.dropdown-menu{display:none;position:absolute;top:calc(100% + 12px);right:0;background:#fff;border:1px solid var(--fl-border);border-radius:var(--fl-radius);min-width:180px;box-shadow:var(--fl-shadow);z-index:100;padding:6px}
.header-action.dropdown:hover .dropdown-menu{display:block}
.dropdown-menu a{display:flex;align-items:center;gap:8px;padding:8px 12px;border-radius:6px;font-size:13px;color:var(--fl-text-2);transition:background .15s}
.dropdown-menu a:hover{background:var(--fl-bg);color:var(--fl-primary)}
.dropdown-divider{border-top:1px solid var(--fl-border);margin:4px 0}
.header-action svg{width:22px;height:22px;flex-shrink:0}.header-action.dropdown > a{height:22px;line-height:1}
.mobile-menu-toggle{display:none}

/* Category nav */
.cat-nav{background:#fff;border-bottom:1px solid var(--fl-border)}
.cat-nav .container{display:flex;align-items:stretch;justify-content:center;flex-wrap:wrap;overflow-x:visible}
.cat-nav-item{position:relative}
.cat-nav-item > a{display:flex;align-items:center;gap:4px;padding:0 16px;height:40px;font-size:13.5px;font-weight:700;white-space:nowrap;color:var(--fl-text-2);transition:color .2s}
.cat-nav-item > a:hover,.cat-nav-item:hover > a{color:var(--fl-primary)}
.cat-nav-item:hover .mega-menu{display:flex}
.cat-nav-item.cat-nav-login > a{color:var(--fl-primary);font-weight:700}
.mega-menu{display:none;position:absolute;top:100%;left:0;background:#fff;border:1px solid var(--fl-border);border-radius:var(--fl-radius);min-width:500px;box-shadow:0 8px 32px rgba(30,43,56,.12);z-index:200;padding:20px;gap:20px}
.mega-menu-links{flex:1}
.mega-menu-links h4{font-size:12px;font-weight:700;text-transform:uppercase;letter-spacing:.05em;color:var(--fl-text-3);margin-bottom:10px}
.mega-menu-links a{display:block;padding:5px 0;font-size:13px;color:var(--fl-text-2);transition:color .15s}
.mega-menu-links a:hover{color:var(--fl-primary)}
.mega-menu-img img{width:180px;height:120px;object-fit:cover;border-radius:8px}

/* Alerts */
.alert{padding:10px 16px;border-radius:var(--fl-radius);font-size:13.5px;display:flex;align-items:center;gap:8px;margin-bottom:0}
.alert-success{background:#e6f7f5;color:#1e7a74;border:1px solid #b2e0db}
.alert-danger{background:#fef1f0;color:#b91c1c;border:1px solid #fac5c2}
.page-main{min-height:60vh;padding-bottom:48px}

/* Hero slider */
.hero-slider{position:relative;overflow:hidden;background:#fff;aspect-ratio:3.1/1}
.fl-home-hero{margin-top:18px}
.fl-hero-slider{border-radius:var(--fl-radius);background:#fff}
.hero-slide{position:absolute;inset:0;display:block;opacity:0;pointer-events:none;transition:opacity .7s ease}
.hero-slide.active{opacity:1;pointer-events:auto;z-index:2}
.hero-slide img{width:100%;height:100%;object-fit:cover;display:block;background:#fff}
@media(max-width:768px){.hero-slider{aspect-ratio:16/10}}
.slider-prev,.slider-next{
  position:absolute;top:50%;transform:translateY(-50%);
  width:46px;height:46px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;z-index:5;font-size:18px;font-weight:800;
  color:var(--fl-text);
  background:rgba(255,255,255,.22);
  -webkit-backdrop-filter:blur(18px) saturate(180%);
  backdrop-filter:blur(18px) saturate(180%);
  border:1px solid rgba(255,255,255,.5);
  box-shadow:
    0 8px 26px rgba(15,23,42,.16),
    inset 0 1px 1px rgba(255,255,255,.8),
    inset 0 -6px 10px -6px rgba(255,255,255,.35);
  transition:transform .2s, background .2s, box-shadow .2s;
}
.slider-prev{left:6px}
.slider-next{right:6px}
.slider-prev:hover,.slider-next:hover{
  transform:translateY(-50%) scale(1.08);
  background:rgba(255,255,255,.36);
  box-shadow:
    0 10px 32px rgba(15,23,42,.2),
    inset 0 1px 1px rgba(255,255,255,.9),
    inset 0 -6px 10px -6px rgba(255,255,255,.45);
}
.slider-prev:active,.slider-next:active{transform:translateY(-50%) scale(.96)}
.slider-dots{position:absolute;bottom:12px;left:50%;transform:translateX(-50%);display:flex;gap:6px}
.slider-dot{width:8px;height:8px;border-radius:4px;background:rgba(255,255,255,.5);border:none;cursor:pointer;transition:all .3s}
.slider-dot.active{width:24px;background:#fff}
.hero-caption{position:absolute;left:0;bottom:0;top:0;display:flex;flex-direction:column;justify-content:center;gap:14px;padding:0 6% ;max-width:520px;color:#fff;text-shadow:0 2px 10px rgba(0,0,0,.35)}
.hero-caption h2{font-size:clamp(22px,3vw,36px);font-weight:800;line-height:1.2}
.hero-caption p{font-size:14px;opacity:.9}
.hero-cta{align-self:flex-start;background:var(--fl-primary);color:#fff;font-weight:700;font-size:14px;padding:11px 26px;border-radius:var(--fl-radius);transition:background .2s}
.hero-cta:hover{background:var(--fl-primary-dark)}

/* Newsletter band */
.newsletter-band{background:var(--fl-black);color:#fff;border-radius:var(--fl-radius);padding:32px 24px;margin:24px 0;text-align:center}
.newsletter-band h3{font-size:19px;font-weight:800;margin-bottom:6px}
.newsletter-band p{font-size:13px;color:rgba(255,255,255,.65);margin-bottom:18px}
.newsletter-form{display:flex;gap:10px;max-width:460px;margin:0 auto 12px}
.newsletter-form input[type=email]{flex:1;border:1.5px solid rgba(255,255,255,.15);background:rgba(255,255,255,.06);color:#fff;border-radius:var(--fl-radius);padding:0 14px;height:44px;font-size:13.5px;outline:none}
.newsletter-form input[type=email]::placeholder{color:rgba(255,255,255,.45)}
.newsletter-form input[type=email]:focus{border-color:var(--fl-primary)}
.newsletter-form button{background:var(--fl-primary);color:#fff;border:none;border-radius:var(--fl-radius);padding:0 22px;font-weight:700;font-size:13.5px;cursor:pointer;transition:background .2s;white-space:nowrap}
.newsletter-form button:hover{background:var(--fl-primary-dark)}
.newsletter-consent{display:flex;align-items:center;justify-content:center;gap:8px;font-size:11.5px;color:rgba(255,255,255,.55)}
.newsletter-consent input{accent-color:var(--fl-primary)}
@media(max-width:560px){.newsletter-form{flex-direction:column}}

/* Benefit cards */
.benefit-cards-section{margin-top:18px}
.benefit-cards-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:12px}
.benefit-card{
    background:#fff;
    border:1px solid var(--fl-border);
    border-radius:12px;
    padding:20px 18px;
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:10px;
    opacity:0;
    transform:translateY(24px);
    transition-property:opacity, transform, border-color;
    transition-duration:.5s, .5s, .25s;
    transition-timing-function:ease, cubic-bezier(.22,1,.36,1), ease;
    transition-delay:var(--reveal-delay,0ms), var(--reveal-delay,0ms), 0s;
}
.benefit-cards-section.in-view .benefit-card{opacity:1;transform:translateY(0)}
.benefit-card:hover{border-color:var(--fl-text-3)}
.benefit-card-icon{
    width:48px;height:48px;flex-shrink:0;
    background:var(--fl-primary-light);
    color:var(--fl-primary);
    border-radius:50%;
    display:flex;align-items:center;justify-content:center;
    font-size:19px;
    transition:transform .45s cubic-bezier(.34,1.56,.64,1);
}
.benefit-card:hover .benefit-card-icon{transform:rotate(-12deg) scale(1.15)}
.benefit-card-title{font-size:14px;font-weight:700;color:var(--fl-text)}
.benefit-card-text{font-size:12.5px;color:var(--fl-text-3);line-height:1.5}

@media(prefers-reduced-motion: reduce){
  .benefit-card{transition:none;opacity:1;transform:none}
  .benefit-card-icon{transition:none}
  .benefit-card:hover .benefit-card-icon{transform:none}
}

@media(max-width:768px){
  .benefit-cards-grid{grid-template-columns:1fr}
}
@media(min-width:769px) and (max-width:1024px){
  .benefit-cards-grid{grid-template-columns:repeat(2,1fr)}
}

/* Brand marquee */
.brand-marquee-wrap{background:#fff;border-bottom:1px solid var(--fl-border);padding:16px 0;overflow:hidden;position:relative;max-width:100%;contain:paint}
.benefit-cards-section + .brand-marquee-wrap{margin-top:18px;border:1px solid var(--fl-border);border-radius:var(--fl-radius)}
.brand-marquee-track{display:flex;gap:48px;width:max-content;animation:marquee 32s linear infinite}
.brand-marquee-track:hover{animation-play-state:paused}
.brand-logo-item{display:flex;align-items:center;justify-content:center;text-decoration:none}
.brand-logo-item img{height:36px;width:auto;object-fit:contain;filter:grayscale(1) opacity(.55);transition:filter .2s}
.brand-logo-item:hover img{filter:grayscale(0) opacity(1)}
@keyframes marquee{0%{transform:translateX(0)}100%{transform:translateX(-50%)}}

/* Section headers */
.block-title-wrap{display:flex;align-items:center;justify-content:space-between;gap:8px;margin-bottom:16px}
.block-title{font-size:18px;font-weight:800;color:var(--fl-text)}
.block-subtitle{font-size:12px;font-weight:400;color:var(--fl-text-3)}
.block-see-all{font-size:13px;font-weight:600;color:var(--fl-primary);display:flex;align-items:center;gap:4px;white-space:nowrap}
.block-see-all:hover{text-decoration:underline}

/* Category banner */
.category-banner{display:block;border-radius:var(--fl-radius);overflow:hidden;margin-bottom:20px}
.category-banner img{width:100%;height:auto;object-fit:cover;transition:transform .5s}
.category-banner:hover img{transform:scale(1.02)}
.fl-banner-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px}
.fl-banner-grid .category-banner{margin-bottom:0;background:#fff;border:1px solid var(--fl-border)}
.fl-banner-grid .category-banner img{width:100%;height:100%;aspect-ratio:3.1/1;object-fit:contain;background:#fff}

/* Showcase / vitrin */
.showcase-box{display:flex;align-items:center;gap:32px;background:#fff;border:1px solid var(--fl-border);border-radius:var(--fl-radius);padding:32px}
.showcase-info{flex:0 0 280px}
.showcase-info h2{font-size:24px;font-weight:800;color:var(--fl-text)}
.showcase-subtitle{color:var(--fl-primary);font-weight:600;font-size:14px;margin-top:4px}
.showcase-bullets{font-size:12.5px;color:var(--fl-text-2);margin:16px 0;display:flex;flex-wrap:wrap;gap:6px}
.showcase-bullets span{color:var(--fl-primary)}
.showcase-cta{display:inline-flex;align-items:center;gap:8px;background:var(--fl-primary);color:#fff;font-weight:700;font-size:13.5px;padding:10px 20px;border-radius:var(--fl-radius);transition:background .2s}
.showcase-cta:hover{background:var(--fl-primary-dark)}
.showcase-products{display:flex;gap:20px;flex:1;justify-content:space-between}
.showcase-product{flex:1 1 0;min-width:0;max-width:150px;text-align:center;font-size:12px;font-weight:600;color:var(--fl-text-2);transition:color .2s}
.showcase-product:hover{color:var(--fl-primary)}
.showcase-product img{width:100%;aspect-ratio:1;object-fit:contain;margin-bottom:8px}
@media(max-width:768px){
  .showcase-box{flex-direction:column;align-items:flex-start}
  .showcase-products{width:100%}
}

/* Marka vitrinleri (admin-managed brand showcases) */
.brandshow-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:18px}
.brandshow-card{position:relative;display:block;border-radius:var(--fl-radius);overflow:hidden;min-height:200px;background-size:cover;background-position:center;background-color:#f2f2f2;border:1px solid var(--fl-border)}
.brandshow-overlay{position:absolute;inset:0;display:flex;flex-direction:column;align-items:flex-start;justify-content:flex-end;gap:8px;padding:20px;background:linear-gradient(180deg,rgba(0,0,0,0) 40%,rgba(0,0,0,.65) 100%)}
.brandshow-logo{max-height:32px;max-width:120px;object-fit:contain;background:#fff;border-radius:6px;padding:4px 8px}
.brandshow-name{color:#fff;font-weight:700;font-size:15px;text-shadow:0 1px 3px rgba(0,0,0,.4)}
.brandshow-cta{display:inline-flex;align-items:center;gap:8px;background:var(--fl-primary);color:#fff;font-weight:700;font-size:13px;padding:8px 16px;border-radius:var(--fl-radius);transition:background .2s}
.brandshow-cta:hover{background:var(--fl-primary-dark)}
@media(max-width:768px){
  .brandshow-grid{grid-template-columns:1fr}
}

/* Product horizontal scroll */
.product-scroll{display:flex;gap:16px;overflow-x:auto;padding-bottom:4px;scrollbar-width:none}
.product-scroll::-webkit-scrollbar{display:none}

/* Product card */
.product-card{flex:0 0 220px;background:#fff;border:1px solid var(--fl-border);border-radius:var(--fl-radius);overflow:hidden;transition:box-shadow .2s,transform .2s;position:relative;display:flex;flex-direction:column}
.product-card:hover{box-shadow:0 4px 20px rgba(30,43,56,.12);transform:translateY(-3px) scale(1.015)}
.product-card-img{position:relative;aspect-ratio:1;overflow:hidden;background:#fff}
.product-card-img a{display:block;width:100%;height:100%}
.product-card-img img{width:100%;height:100%;object-fit:contain;padding:12px;transition:transform .3s}
.product-card:hover .product-card-img img{transform:scale(1.04)}
.product-card-tools{position:absolute;top:8px;right:8px;display:flex;flex-direction:column;gap:6px;z-index:2}
.product-card-fav,.product-card-compare{width:32px;height:32px;background:var(--fl-bg);border-radius:50%;display:flex;align-items:center;justify-content:center;border:none;cursor:pointer;color:var(--fl-text-3);transition:color .2s,background .2s;font-size:12px}
.product-card-fav:hover{color:#e53e3e}
.product-card-compare:hover{color:var(--fl-primary)}
.product-card-fav.active{color:#e53e3e}
.product-card-compare.active{color:var(--fl-primary);background:var(--fl-primary-light)}

/* Favorite button animation layer (visual only) */
.fav-fx-wrap{position:relative;display:inline-block;pointer-events:none}
.fav-fx-wrap .product-card-fav{position:relative;z-index:2;pointer-events:auto}
.fav-fx-ring{position:absolute;inset:0;margin:auto;width:32px;height:32px;border-radius:50%;border:2px solid #e53e3e;opacity:0;transform:scale(.5);z-index:1;pointer-events:none}
.fav-fx-sparks{position:absolute;inset:0;z-index:1;pointer-events:none}
.fav-fx-sparks span{position:absolute;top:50%;left:50%;width:5px;height:5px;border-radius:50%;opacity:0;transform:translate(-50%,-50%) scale(0);background:#e53e3e}
.fav-fx-sparks span:nth-child(1){background:#e53e3e}
.fav-fx-sparks span:nth-child(2){background:#ff6b9d}
.fav-fx-sparks span:nth-child(3){background:#ff8a3d}
.fav-fx-sparks span:nth-child(4){background:#e53e3e}
.fav-fx-sparks span:nth-child(5){background:#ff6b9d}
.fav-fx-sparks span:nth-child(6){background:#ff8a3d}

.fav-fx-wrap.fav-anim .product-card-fav i{animation:favPop .45s cubic-bezier(.34,1.56,.64,1)}
.fav-fx-wrap.fav-anim-add .fav-fx-ring{animation:favRing .5s ease-out}
.fav-fx-wrap.fav-anim-add .fav-fx-sparks span{animation:favSpark .55s ease-out}

@keyframes favPop{
    0%{transform:scale(1)}
    30%{transform:scale(.75)}
    60%{transform:scale(1.25)}
    100%{transform:scale(1)}
}
@keyframes favRing{
    0%{opacity:.6;transform:scale(.5)}
    100%{opacity:0;transform:scale(1.9)}
}
@keyframes favSpark{
    0%{opacity:1;transform:translate(-50%,-50%) scale(1)}
    100%{opacity:0;transform:translate(calc(-50% + var(--tx)),calc(-50% + var(--ty))) scale(.3)}
}

@media (prefers-reduced-motion: reduce){
    .fav-fx-wrap.fav-anim .product-card-fav i,
    .fav-fx-wrap.fav-anim-add .fav-fx-ring,
    .fav-fx-wrap.fav-anim-add .fav-fx-sparks span{
        animation:none!important;
    }
}
.product-card-badge{position:absolute;top:8px;left:8px;color:#fff;font-size:10px;font-weight:700;padding:2px 6px;border-radius:4px;z-index:2}
.product-card-badge.badge-out{background:#e53e3e}
.product-card-badge.badge-new{background:var(--fl-primary)}
.product-card-body{padding:10px 12px;display:flex;flex-direction:column;flex:1;gap:3px}
.product-card-brand{font-size:11px;font-weight:700;color:var(--fl-primary)}
.product-card-name{font-size:12px;line-height:1.4;color:var(--fl-text);display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.product-card-stock{font-size:11px;font-weight:800;color:#e53e3e}
.product-card-prices{margin-top:auto;padding-top:6px}
.product-card-price{font-size:14px;font-weight:800;color:#000}
.product-card-old{font-size:11px;color:#7C829C;text-decoration:line-through;animation:none}
.price-pulse{display:inline-block;font-weight:800;color:#0F1428;animation:priceColorShift 2.4s ease-in-out infinite}
.price-discount-badge{display:inline-block;margin-left:6px;background:#46A8A3;color:#fff;font-size:.6rem;font-weight:800;border-radius:5px;padding:2px 6px;vertical-align:middle;animation:badgeBounce 2.4s ease-in-out infinite}
@keyframes priceColorShift{
  0%,100%{color:#0F1428}
  50%{color:#2E7D79}
}
@keyframes badgeBounce{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-3px)}
}
@media(prefers-reduced-motion:reduce){
  .price-pulse{animation:none;color:#2E7D79}
  .price-discount-badge{animation:none;transform:none}
}
.product-card-add{padding:8px 10px;border-top:1px solid var(--fl-border);background:#fff}
.btn-add-cart{width:100%;background:var(--fl-primary);border:none;color:#fff;padding:7px 12px;border-radius:6px;font-size:12px;font-weight:600;cursor:pointer;transition:background .2s;position:relative;overflow:hidden;height:32.6px}
.btn-add-cart:hover{background:var(--fl-primary-dark)}
.btn-add-cart-layer{position:absolute;inset:0;display:flex;align-items:center;justify-content:center;gap:6px;transform:translateY(0);transition:transform .35s cubic-bezier(.4,0,.2,1)}
.btn-add-cart-success{transform:translateY(100%)}
.btn-add-cart.is-added{background:#16a34a}
.btn-add-cart.is-added:hover{background:#16a34a}
.btn-add-cart.is-added .btn-add-cart-default{transform:translateY(-100%)}
.btn-add-cart.is-added .btn-add-cart-success{transform:translateY(0)}

/* Home section */
.home-section{padding:32px 0}

/* Category page */
.category-layout{display:grid;grid-template-columns:260px 1fr;gap:24px;align-items:start}

/* SaaS-style filter sidebar */
.filter-sidebar{background:#fff;border:1px solid var(--fl-border);border-radius:14px;padding:0;position:sticky;top:80px;overflow:hidden;box-shadow:0 1px 2px rgba(15,23,42,.04)}
.filter-head{padding:18px 20px;border-bottom:1px solid var(--fl-border)}
.filter-head h3{font-size:15px;font-weight:800;color:var(--fl-text)}
.filter-head p{font-size:12px;color:var(--fl-text-3);margin-top:2px}

.filter-active-chips{display:flex;flex-wrap:wrap;gap:6px;padding:14px 20px;border-bottom:1px solid var(--fl-border);background:var(--fl-bg)}
.filter-chip{display:inline-flex;align-items:center;gap:6px;background:#fff;border:1px solid var(--fl-primary);color:var(--fl-primary-dark);font-size:11.5px;font-weight:600;padding:5px 10px;border-radius:999px;transition:background .15s}
.filter-chip:hover{background:var(--fl-primary-light)}
.filter-chip i{font-size:10px}
.filter-clear-all{display:block;width:100%;text-align:center;font-size:11.5px;font-weight:700;color:var(--fl-text-3);margin-top:4px;padding-top:4px}
.filter-clear-all:hover{color:#e53e3e}

.filter-group{border-bottom:1px solid var(--fl-border)}
.filter-group:last-child{border-bottom:none}
.filter-group summary{list-style:none;cursor:pointer;display:flex;align-items:center;justify-content:space-between;padding:14px 20px;font-size:12px;font-weight:800;text-transform:uppercase;letter-spacing:.04em;color:var(--fl-text-2);user-select:none}
.filter-group summary::-webkit-details-marker{display:none}
.filter-group summary::after{content:"\f078";font-family:"Font Awesome 6 Free";font-weight:900;font-size:10px;color:var(--fl-text-3);transition:transform .2s}
.filter-group[open] summary::after{transform:rotate(180deg)}
.filter-group-body{padding:2px 20px 16px}

.filter-subcat{display:flex;align-items:center;justify-content:space-between;padding:7px 0;font-size:13px;color:var(--fl-text-2);transition:color .15s}
.filter-subcat:hover{color:var(--fl-primary)}
.filter-subcat i{font-size:9px;color:var(--fl-text-3)}

.filter-checklist{max-height:220px;overflow-y:auto}
.filter-check-row{display:flex;align-items:center;justify-content:space-between;gap:8px;padding:6px 0;font-size:13px;color:var(--fl-text-2);cursor:pointer}
.filter-check-left{display:flex;align-items:center;gap:8px}
.filter-check-row input{accent-color:var(--fl-primary);width:15px;height:15px;cursor:pointer}
.filter-check-count{font-size:11px;color:var(--fl-text-3);background:var(--fl-bg);padding:1px 7px;border-radius:999px;font-weight:600}

.filter-price-row{display:flex;gap:8px;align-items:center;margin-top:6px}
.filter-price-row input{flex:1;min-width:0;border:1px solid var(--fl-border);border-radius:8px;padding:8px 10px;font-size:12.5px;background:var(--fl-bg);outline:none;transition:border-color .15s}
.filter-price-row input:focus{border-color:var(--fl-primary);background:#fff}
.filter-price-row span{color:var(--fl-text-3);font-size:12px}
.filter-apply-btn{width:100%;margin-top:10px;background:var(--fl-primary);color:#fff;border:none;border-radius:8px;padding:9px;font-size:12.5px;font-weight:700;cursor:pointer;transition:background .2s}
.filter-apply-btn:hover{background:var(--fl-primary-dark)}

.sort-toolbar{display:flex;align-items:center;justify-content:space-between;background:#fff;border:1px solid var(--fl-border);border-radius:var(--fl-radius);padding:10px 16px;margin-bottom:16px;gap:12px}
.sort-toolbar select{border:1px solid var(--fl-border);border-radius:6px;padding:5px 10px;font-size:13px;background:var(--fl-bg);outline:none}
.product-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(195px,1fr));gap:16px}
.category-seo-drawer{margin-top:28px;background:#fff;border:1px solid var(--fl-border);border-radius:10px;overflow:hidden}
.category-seo-drawer summary{list-style:none;display:flex;align-items:center;justify-content:space-between;gap:12px;padding:12px 16px;cursor:pointer;color:var(--fl-text-3);font-size:12.5px;font-weight:700}
.category-seo-drawer summary::-webkit-details-marker{display:none}
.category-seo-drawer summary i{font-size:11px;transition:transform .2s}
.category-seo-drawer[open] summary{border-bottom:1px solid var(--fl-border);color:var(--fl-text)}
.category-seo-drawer[open] summary i{transform:rotate(180deg)}
.category-seo-drawer-body{padding:16px;color:var(--fl-text-2);font-size:14px;line-height:1.75}

/* Cart */
.cart-layout{display:grid;grid-template-columns:1fr 340px;gap:24px;align-items:start}
.cart-table{background:#fff;border:1px solid var(--fl-border);border-radius:var(--fl-radius);overflow:hidden}
.cart-table table{width:100%;border-collapse:collapse}
.cart-table th{background:var(--fl-bg);padding:12px 16px;font-size:11px;font-weight:700;text-align:left;text-transform:uppercase;letter-spacing:.04em;color:var(--fl-text-3);border-bottom:1px solid var(--fl-border)}
.cart-table td{padding:14px 16px;border-bottom:1px solid var(--fl-border);vertical-align:middle;font-size:13px}
.cart-table tr:last-child td{border-bottom:none}
.qty-input{display:flex;align-items:center;gap:4px}
.qty-minus,.qty-plus{width:26px;height:26px;border:1px solid var(--fl-border);background:var(--fl-bg);border-radius:4px;cursor:pointer;font-size:14px;display:flex;align-items:center;justify-content:center}
.qty-input input{width:44px;text-align:center;border:1px solid var(--fl-border);border-radius:4px;padding:3px 6px;font-size:13px}
.order-summary{background:#fff;border:1px solid var(--fl-border);border-radius:var(--fl-radius);padding:20px}
.order-summary h3{font-size:15px;font-weight:700;margin-bottom:16px}

.pay-method-list{display:flex;flex-direction:column;gap:12px}
.pay-method-row{display:flex;align-items:center;gap:12px;padding:14px 16px;border:1.5px solid var(--fl-border);border-radius:10px;cursor:pointer;transition:border-color .2s,background .2s}
.pay-method-row input{position:absolute;opacity:0;pointer-events:none}
.pay-method-row.is-selected{border-color:var(--fl-primary);background:var(--fl-primary-light)}
.pay-method-icon{width:38px;height:38px;border-radius:8px;background:var(--fl-bg);display:flex;align-items:center;justify-content:center;color:var(--fl-primary-dark);font-size:15px;flex-shrink:0}
.pay-method-row.is-selected .pay-method-icon{background:var(--fl-primary);color:#fff}
.pay-method-info{flex:1;display:flex;flex-direction:column;gap:2px}
.pay-method-info strong{font-size:13.5px;color:var(--fl-text)}
.pay-method-info span{font-size:11.5px;color:var(--fl-text-3)}
.pay-method-dot{width:20px;height:20px;border-radius:50%;border:2px solid var(--fl-border);flex-shrink:0;position:relative;transition:border-color .2s}
.pay-method-row.is-selected .pay-method-dot{border-color:var(--fl-primary)}
.pay-method-row.is-selected .pay-method-dot::after{content:'';position:absolute;inset:3px;border-radius:50%;background:var(--fl-primary)}

.pay-total-card{background:var(--fl-black);color:#fff;border-radius:var(--fl-radius);padding:20px;margin-bottom:16px}
.pay-total-label{display:block;font-size:12px;color:#9fb0bf;margin-bottom:6px}
.pay-total-amount{display:block;font-size:28px;font-weight:800;margin-bottom:14px}
.pay-total-note{display:flex;align-items:center;gap:6px;font-size:12.5px;font-weight:700;color:var(--fl-primary);margin-bottom:8px}
.pay-total-desc{font-size:11.5px;color:#9fb0bf;line-height:1.5;margin:0}
.summary-row{display:flex;justify-content:space-between;font-size:13px;padding:6px 0;border-bottom:1px solid var(--fl-border)}
.summary-total{display:flex;justify-content:space-between;font-weight:800;font-size:15px;padding-top:12px;color:#000}
.free-shipping-bar{background:var(--fl-bg);border-radius:6px;padding:10px 12px;font-size:12px;color:var(--fl-text-3);margin-bottom:16px}
.free-shipping-progress{height:4px;background:var(--fl-border);border-radius:2px;margin-top:6px;overflow:hidden}
.free-shipping-fill{height:100%;background:var(--fl-primary);border-radius:2px}
.cart-page{padding:12px 0 36px}
.cart-steps{display:flex;align-items:center;justify-content:center;gap:14px;margin:8px 0 22px;color:var(--fl-text-3);font-size:12px}
.cart-steps span{display:flex;align-items:center;gap:7px}
.cart-steps span i{font-size:11px}
.cart-steps .active{color:var(--fl-text);font-weight:800}
.cart-modern-layout{display:grid;grid-template-columns:minmax(0,1fr) 340px;gap:22px;align-items:start}
.cart-modern-card,.cart-modern-summary{background:#fff;border:1px solid var(--fl-border);border-radius:14px;box-shadow:0 14px 34px rgba(30,43,56,.06)}
.cart-modern-card{padding:24px}
.cart-modern-head{display:flex;align-items:flex-start;justify-content:space-between;gap:16px;margin-bottom:20px}
.cart-modern-head h1{font-size:24px;font-weight:800;letter-spacing:0;margin-bottom:2px}
.cart-modern-head span{font-size:12px;color:var(--fl-text-3)}
.cart-clear-link{display:inline-flex;align-items:center;gap:6px;color:var(--fl-primary-dark);font-size:12px;font-weight:800;white-space:nowrap}
.cart-modern-labels{display:grid;grid-template-columns:minmax(0,1fr) 170px 140px 32px;gap:14px;padding:0 12px 10px;color:var(--fl-text-3);font-size:11px;font-weight:800}
.cart-modern-items{display:flex;flex-direction:column;gap:10px}
.cart-modern-item{display:grid;grid-template-columns:minmax(0,1fr) 170px 140px 32px;gap:14px;align-items:center;border:1px solid var(--fl-border);border-radius:12px;padding:12px;background:#fff;transition:border-color .15s,box-shadow .15s}
.cart-modern-item:hover{border-color:rgba(70,168,163,.35);box-shadow:0 10px 24px rgba(30,43,56,.06)}
.cart-modern-product{display:flex;align-items:center;gap:14px;min-width:0}
.cart-modern-img{width:68px;height:68px;border-radius:12px;background:var(--fl-bg);border:1px solid var(--fl-border);display:flex;align-items:center;justify-content:center;flex-shrink:0;overflow:hidden;color:var(--fl-text-3)}
.cart-modern-img img{width:100%;height:100%;object-fit:contain;padding:8px}
.cart-modern-product strong{display:block;color:var(--fl-primary-dark);font-size:13px;font-weight:800;line-height:1.35;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.cart-modern-product small{display:block;margin-top:3px;color:var(--fl-text-3);font-size:11px}
.cart-modern-qty{display:grid;grid-template-columns:32px 28px 32px 32px;align-items:center;gap:3px;width:max-content}
.cart-modern-qty .qty-minus,.cart-modern-qty .qty-plus{width:32px;height:32px;border-radius:50%;background:#fff;border:1px solid #10182b;color:#10182b;font-weight:900;display:flex;align-items:center;justify-content:center}
.cart-modern-qty input{width:28px;height:32px;border:none;background:transparent;text-align:center;font-weight:900;color:var(--fl-primary-dark);font-size:14px;padding:0;margin:0;-moz-appearance:textfield}
.cart-modern-qty input::-webkit-outer-spin-button,.cart-modern-qty input::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}
.cart-qty-save{width:32px;height:32px;border-radius:50%;border:1px solid #10182b;background:#fff;color:#10182b;cursor:pointer;font-size:11px;display:flex;align-items:center;justify-content:center;margin-left:8px}
.cart-qty-save:hover{border-color:var(--fl-primary-dark);color:var(--fl-primary-dark)}
.cart-modern-price strong{display:block;color:#000;font-size:14.5px;font-weight:950;text-align:right}
.cart-modern-price small{display:block;margin-top:3px;color:#4f6072;font-size:10.5px;font-weight:700;text-align:right}
.cart-remove-btn{width:28px;height:28px;border:none;background:transparent;color:#d14b4b;cursor:pointer;border-radius:50%;display:flex;align-items:center;justify-content:center}
.cart-remove-btn:hover{background:#fff1f1}
.cart-modern-summary{padding:22px;background:#f8fbfb;position:sticky;top:116px}
.cart-modern-summary h2{font-size:16px;font-weight:800;margin-bottom:16px}
.cart-promo-code{padding-bottom:18px;border-bottom:1px solid var(--fl-border);margin-bottom:16px}
.cart-promo-code label{display:block;font-size:12px;font-weight:800;margin-bottom:8px}
.cart-promo-code div{display:flex;gap:8px;background:#fff;border:1px solid var(--fl-border);border-radius:999px;padding:4px}
.cart-promo-code input{min-width:0;flex:1;border:none;background:transparent;height:34px;padding:0 12px;font-size:12px;outline:none}
.cart-promo-code button{border:none;background:var(--fl-text);color:#fff;border-radius:999px;padding:0 18px;font-size:12px;font-weight:800;cursor:pointer}
.cart-promo-code button:hover{background:var(--fl-primary-dark)}
.cart-summary-lines{display:flex;flex-direction:column;gap:10px}
.cart-summary-lines div{display:flex;align-items:center;justify-content:space-between;gap:16px;color:var(--fl-text-3);font-size:12.5px}
.cart-summary-lines strong{color:#000;font-weight:800}
.cart-summary-lines .total{padding-top:12px;border-top:1px solid var(--fl-border);font-size:14px;color:var(--fl-text)}
.cart-summary-lines .total strong{font-size:18px;font-weight:900;color:#000}
.cart-shipping-note{display:flex;gap:9px;margin:16px 0;padding:11px 12px;border-radius:10px;background:#ecfaf8;color:var(--fl-primary-dark);font-size:12px;line-height:1.4}
.cart-checkout-btn{display:flex;align-items:center;justify-content:center;width:100%;height:46px;margin-top:18px;border-radius:10px;background:#10182b;color:#fff;font-size:13.5px;font-weight:800;transition:background .15s}
.cart-checkout-btn:hover{background:var(--fl-primary-dark)}
.cart-promo-banner{display:flex;align-items:center;justify-content:space-between;gap:16px;margin-top:14px;border-radius:14px;background:linear-gradient(135deg,#10182b,#1f3442);color:#fff;padding:22px 24px;overflow:hidden;position:relative;min-height:92px}
.cart-promo-banner::after{content:"";position:absolute;right:-28px;top:-42px;width:160px;height:160px;border-radius:50%;background:rgba(70,168,163,.25)}
.cart-promo-banner strong{display:block;font-size:15px;line-height:1.35}
.cart-promo-banner small{display:block;margin-top:4px;color:rgba(255,255,255,.62);font-size:12px}
.cart-promo-cta{position:relative;z-index:1;border:1px solid rgba(255,255,255,.55);border-radius:8px;padding:8px 14px;font-size:12px;font-weight:800;white-space:nowrap}
.cart-empty{max-width:560px;margin:32px auto;background:#fff;border:1px solid var(--fl-border);border-radius:16px;text-align:center;padding:72px 24px;box-shadow:0 14px 34px rgba(30,43,56,.06)}
.cart-empty i{font-size:54px;color:var(--fl-primary);margin-bottom:18px}
.cart-empty h1{font-size:24px;font-weight:800;margin-bottom:8px}
.cart-empty p{color:var(--fl-text-3);font-size:13px;margin-bottom:20px}

/* Auth */
.auth-wrap{display:flex;align-items:center;justify-content:center;min-height:60vh;padding:32px 0}
.auth-card{background:#fff;border:1px solid var(--fl-border);border-radius:14px;padding:36px;width:100%;max-width:420px;box-shadow:var(--fl-shadow)}
.auth-card h1{font-size:22px;font-weight:800;margin-bottom:4px}
.auth-card .lead{font-size:13px;color:var(--fl-text-3);margin-bottom:24px}
.form-group{margin-bottom:16px}
.form-label{display:block;font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:.05em;color:var(--fl-text-3);margin-bottom:6px}
.form-control{width:100%;border:1.5px solid var(--fl-border);border-radius:var(--fl-radius);padding:10px 14px;font-size:14px;outline:none;transition:border-color .2s,box-shadow .2s;background:#fff}
.form-control:focus{border-color:var(--fl-primary);box-shadow:0 0 0 3px rgba(70,168,163,.1)}

/* Buttons */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:6px;padding:10px 20px;border-radius:var(--fl-radius);font-size:14px;font-weight:600;cursor:pointer;border:none;transition:all .2s;text-align:center}
.btn-primary{background:var(--fl-primary);color:#fff}
.btn-primary:hover{background:var(--fl-primary-dark)}
.btn-outline{background:#fff;color:var(--fl-text-2);border:1.5px solid var(--fl-border)}
.btn-outline:hover{border-color:var(--fl-primary);color:var(--fl-primary)}
.btn-sm{padding:7px 14px;font-size:12px}
.btn-block{width:100%}

/* Footer */
.site-footer{background:var(--fl-black);color:rgba(255,255,255,.7);padding-top:40px;margin-top:48px}
.footer-grid{display:grid;grid-template-columns:1.3fr 1fr 1fr 1fr;gap:32px;padding-bottom:32px}
.footer-brand .footer-logo img{height:44px;filter:brightness(0) invert(1)}
.footer-brand .footer-desc{font-size:12.5px;line-height:1.65;margin-top:12px;color:rgba(255,255,255,.5)}
.footer-contact{list-style:none;margin-top:14px;display:flex;flex-direction:column;gap:8px}
.footer-contact li{display:flex;align-items:flex-start;gap:8px;font-size:12.5px;color:rgba(255,255,255,.55)}
.footer-contact li i{color:var(--fl-primary);margin-top:2px;width:14px}
.footer-social{display:flex;gap:10px;margin-top:16px}
.social-btn{width:36px;height:36px;border-radius:8px;background:rgba(255,255,255,.08);display:flex;align-items:center;justify-content:center;color:rgba(255,255,255,.6);font-size:14px;transition:background .2s}
.social-btn:hover{background:var(--fl-primary)}
.footer-col h4{font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:.08em;color:rgba(255,255,255,.9);margin-bottom:12px}
.footer-col ul li{margin-bottom:7px}
.footer-col ul li a{font-size:12.5px;color:rgba(255,255,255,.5);transition:color .2s}
.footer-col ul li a:hover{color:rgba(255,255,255,.9)}
.footer-newsletter{margin-top:22px}
.footer-newsletter h4{margin-bottom:8px}
.footer-newsletter p{font-size:12.5px;line-height:1.55;color:rgba(255,255,255,.5);margin-bottom:12px}
.footer-newsletter-form{display:flex;gap:8px;margin-bottom:10px}
.footer-newsletter-form input[type=email]{min-width:0;flex:1;height:38px;border:1.5px solid rgba(255,255,255,.14);background:rgba(255,255,255,.06);color:#fff;border-radius:8px;padding:0 12px;font-size:12.5px;outline:none}
.footer-newsletter-form input[type=email]::placeholder{color:rgba(255,255,255,.42)}
.footer-newsletter-form input[type=email]:focus{border-color:var(--fl-primary);background:rgba(255,255,255,.08)}
.footer-newsletter-form button{width:38px;height:38px;border:none;border-radius:8px;background:var(--fl-primary);color:#fff;display:flex;align-items:center;justify-content:center;cursor:pointer;transition:background .2s}
.footer-newsletter-form button:hover{background:var(--fl-primary-dark)}
.footer-newsletter-consent{display:flex;align-items:flex-start;gap:7px;font-size:11px;line-height:1.45;color:rgba(255,255,255,.42)}
.footer-newsletter-consent input{accent-color:var(--fl-primary);margin-top:2px;flex-shrink:0}
.footer-bottom{border-top:1px solid rgba(255,255,255,.08);padding:16px 0;display:flex;align-items:center;justify-content:space-between;font-size:11.5px;color:rgba(255,255,255,.35);gap:16px}

/* Product detail */
.product-detail-modern{padding:14px 0 28px}
.product-breadcrumbs{display:flex;align-items:center;gap:8px;margin-bottom:18px;color:var(--fl-text-3);font-size:12px;font-weight:700}
.product-breadcrumbs a:hover{color:var(--fl-primary)}
.product-breadcrumbs i{font-size:9px;color:var(--fl-text-3)}
.product-hero-modern{display:grid;grid-template-columns:minmax(320px,.92fr) minmax(0,1.08fr);gap:34px;align-items:start;background:#fff;border:1px solid var(--fl-border);border-radius:14px;padding:26px;box-shadow:0 16px 40px rgba(30,43,56,.06)}
.product-copy-panel{padding:8px 4px 4px}
.product-kicker{display:inline-flex;align-items:center;margin-bottom:14px;color:var(--fl-primary-dark);font-size:12px;font-weight:900;letter-spacing:.04em;text-transform:uppercase}
.product-copy-panel h1{font-size:clamp(34px,4.6vw,56px);line-height:1.02;font-weight:800;letter-spacing:0;color:var(--fl-text);margin-bottom:8px}
.product-sku{color:var(--fl-text-3);font-size:11px;margin-bottom:20px}
.product-price-modern{display:flex;align-items:center;gap:12px;flex-wrap:wrap;margin-bottom:22px}
.product-price-modern strong{color:#000;font-size:30px;font-weight:900;line-height:1}
.product-price-modern span{color:var(--fl-text-3);font-size:15px;text-decoration:line-through}
.product-price-modern em{font-style:normal;background:#e7f8f6;color:var(--fl-primary-dark);border-radius:999px;padding:4px 9px;font-size:12px;font-weight:900}
.product-short-desc{max-width:470px;color:var(--fl-text-2);font-size:13px;line-height:1.75;margin-bottom:24px}
.product-spec-list{display:grid;gap:15px;margin:0 0 26px}
.product-spec-list div{display:grid;grid-template-columns:96px minmax(0,1fr);gap:16px}
.product-spec-list dt{color:var(--fl-text);font-size:11px;font-weight:900;text-transform:uppercase;letter-spacing:.04em}
.product-spec-list dd{color:var(--fl-text-2);font-size:12.5px;line-height:1.45}
.product-buy-row{display:flex;align-items:center;gap:14px;margin-top:18px}
.product-qty-modern{display:grid;grid-template-columns:34px 28px 34px;align-items:center;border:1px solid var(--fl-border);border-radius:8px;background:#fff;height:48px}
.product-qty-modern button{width:34px;height:46px;border:none;background:transparent;color:var(--fl-text);font-size:18px;font-weight:900;cursor:pointer}
.product-qty-modern input{width:28px;height:46px;border:none;text-align:center;font-size:15px;font-weight:900;color:var(--fl-text);outline:none}
.product-add-btn{height:48px;min-width:235px;border:none;border-radius:9px;background:#10182b;color:#fff;padding:0 30px;font-size:13px;font-weight:900;cursor:pointer;transition:background .15s,transform .12s;white-space:nowrap;position:relative;overflow:hidden}
.product-add-btn:hover{background:var(--fl-primary-dark)}
.product-add-btn:active{transform:translateY(1px)}
.product-add-btn.is-added{background:#16a34a}
.product-add-btn.is-added:hover{background:#16a34a}
.product-add-btn.is-added .btn-add-cart-default{transform:translateY(-100%)}
.product-add-btn.is-added .btn-add-cart-success{transform:translateY(0)}
.btn-add-cart-layer{position:absolute;inset:0;display:flex;align-items:center;justify-content:center;gap:8px;transition:transform .28s ease}
.btn-add-cart-default{transform:translateY(0)}
.btn-add-cart-success{transform:translateY(100%)}
.product-stock-out{display:inline-flex;align-items:center;gap:8px;margin-top:8px;color:#dc2626;font-size:13px;font-weight:800}
.product-gallery-modern{min-width:0;position:relative}
.product-main-image{background:#fff;border:1px solid var(--fl-border);border-radius:10px;aspect-ratio:1/1;display:flex;align-items:center;justify-content:center;overflow:hidden;position:relative}
.product-main-image img{width:100%;height:100%;object-fit:contain;padding:28px;cursor:zoom-in}
.product-gallery-nav,.product-zoom-trigger,.product-thumb-scroll{border:1px solid var(--fl-border);background:rgba(255,255,255,.92);color:var(--fl-primary-dark);box-shadow:0 10px 24px rgba(30,43,56,.08);cursor:pointer;transition:background .15s,transform .12s,color .15s}
.product-gallery-nav:hover,.product-zoom-trigger:hover,.product-thumb-scroll:hover{background:var(--fl-primary);color:#fff}
.product-gallery-nav{position:absolute;top:50%;z-index:2;width:38px;height:38px;border-radius:50%;transform:translateY(-50%)}
.product-gallery-prev{left:14px}
.product-gallery-next{right:14px}
.product-zoom-trigger{position:absolute;right:14px;bottom:14px;width:38px;height:38px;border-radius:50%;z-index:2}
.product-zoom-lens{display:none;position:absolute;width:180px;height:180px;border:2px solid var(--fl-primary);background:rgba(70,168,163,.15);pointer-events:none;z-index:3}
.product-zoom-result{display:none;position:absolute;right:calc(100% + 16px);top:0;width:100%;height:100%;border:1px solid var(--fl-border);border-radius:10px;background-color:#fff;background-repeat:no-repeat;box-shadow:0 10px 30px rgba(30,43,56,.12);z-index:40;pointer-events:none}
@media(max-width:1200px){.product-zoom-result{display:none!important}}
.product-thumb-shell{display:grid;grid-template-columns:auto minmax(0,1fr) auto;align-items:center;gap:8px;margin-top:10px}
.product-thumbs-modern{display:flex;gap:8px;overflow-x:auto;scroll-behavior:smooth;scrollbar-width:none}
.product-thumbs-modern::-webkit-scrollbar{display:none}
.product-thumbs-modern button{border:1px solid var(--fl-border);background:#fff;border-radius:8px;width:112px;min-width:112px;height:90px;cursor:pointer;overflow:hidden;padding:0}
.product-thumbs-modern button.active{border-color:var(--fl-text);background:#fff}
.product-thumbs-modern img{width:100%;height:100%;object-fit:contain;padding:8px}
.product-thumb-scroll{width:34px;height:46px;border-radius:8px;display:flex;align-items:center;justify-content:center}
.product-lightbox{position:fixed;inset:0;z-index:10000;background:rgba(9,16,28,.82);display:none;align-items:center;justify-content:center;padding:52px}
.product-lightbox.active{display:flex}
.product-lightbox-stage{width:min(92vw,1080px);height:min(82vh,760px);display:flex;align-items:center;justify-content:center;overflow:hidden;touch-action:none;user-select:none}
.product-lightbox-stage img{max-width:100%;max-height:100%;object-fit:contain;transition:transform .12s ease;transform-origin:center center;cursor:zoom-in;will-change:transform}
.product-lightbox-stage img.is-zoomed{cursor:grab}
.product-lightbox-stage img.is-zoomed:active{cursor:grabbing}
.product-lightbox-close,.product-lightbox-nav,.product-lightbox-tools button,.product-lightbox-zoom-level{border:1px solid rgba(255,255,255,.18);background:rgba(255,255,255,.12);color:#fff;cursor:pointer;backdrop-filter:blur(10px)}
.product-lightbox-close{position:absolute;right:24px;top:24px;width:42px;height:42px;border-radius:50%;font-size:18px}
.product-lightbox-nav{position:absolute;top:50%;width:48px;height:48px;border-radius:50%;font-size:18px;transform:translateY(-50%)}
.product-lightbox-prev{left:24px}
.product-lightbox-next{right:24px}
.product-lightbox-tools{position:absolute;bottom:24px;display:flex;gap:8px}
.product-lightbox-tools button{width:42px;height:42px;border-radius:10px}
.product-lightbox-zoom-level{min-width:58px;height:42px;border-radius:10px;display:inline-flex;align-items:center;justify-content:center;padding:0 10px;font-size:12px;font-weight:900;cursor:default}
.product-lightbox-close:hover,.product-lightbox-nav:hover,.product-lightbox-tools button:hover{background:var(--fl-primary)}
.product-tabs-modern{margin:24px 0 34px;background:#fff;border:1px solid var(--fl-border);border-radius:14px;box-shadow:0 14px 34px rgba(30,43,56,.05);overflow:hidden}
.product-tabs-head{display:flex;gap:26px;border-bottom:1px solid var(--fl-border);padding:16px 22px}
.product-tabs-head button{border:none;background:transparent;color:var(--fl-text-3);font-size:13px;font-weight:900;cursor:pointer;padding:0 0 8px;border-bottom:2px solid transparent}
.product-tabs-head button.active{color:var(--fl-primary-dark);border-bottom-color:var(--fl-primary)}
.product-tabs-body{padding:22px}
.product-description-modern{color:var(--fl-text-2);font-size:14px;line-height:1.8}
.product-description-modern p{margin-bottom:12px}
.product-description-modern ul{list-style:disc;margin:0 0 16px 20px}
.product-description-modern h3{color:var(--fl-text);font-size:16px}
.scanner-detail-desc{display:grid;gap:16px}
.scanner-detail-desc .scanner-lead{font-size:15px;line-height:1.85;color:var(--fl-text)}
.scanner-detail-desc h3{margin:8px 0 0;color:#071221;font-size:17px;font-weight:900}
.scanner-detail-desc ul{display:grid;gap:8px;margin:0 0 6px 18px}
.scanner-detail-desc li{padding-left:3px;color:var(--fl-text-2)}
.scanner-spec-table-wrap{overflow:auto;border:1px solid var(--fl-border);border-radius:10px;background:#fff}
.scanner-spec-table{width:100%;border-collapse:collapse;font-size:13px}
.scanner-spec-table tr+tr{border-top:1px solid var(--fl-border)}
.scanner-spec-table th{width:220px;background:#f7f9fa;color:#071221;text-align:left;font-weight:900;padding:12px 14px;vertical-align:top}
.scanner-spec-table td{color:var(--fl-text-2);padding:12px 14px;line-height:1.55;vertical-align:top}
.scanner-desc-media{display:grid;grid-template-columns:repeat(auto-fit,minmax(190px,1fr));gap:12px;margin:4px 0 8px}
.scanner-desc-media figure{margin:0;border:1px solid var(--fl-border);border-radius:10px;background:#fff;overflow:hidden}
.scanner-desc-media img{width:100%;aspect-ratio:1/1;object-fit:contain;padding:12px;background:#f7f9fa;display:block}
.scanner-desc-media figcaption{padding:9px 10px;border-top:1px solid var(--fl-border);font-size:11px;font-weight:800;color:var(--fl-text-3)}
.product-muted{color:var(--fl-text-3);font-size:13px}
.product-muted a{color:var(--fl-primary-dark);font-weight:800}
.product-review-item{border-bottom:1px solid var(--fl-border);padding:14px 0}
.product-review-item:first-child{padding-top:0}
.product-review-item div{display:flex;align-items:center;gap:10px;margin-bottom:6px}
.product-review-item strong{font-size:14px;color:var(--fl-text)}
.product-review-item span{font-size:11px;color:var(--fl-text-3)}
.product-review-item p{font-size:13px;color:var(--fl-text-2)}
.product-review-form{margin-top:22px;padding-top:18px;border-top:1px solid var(--fl-border);display:grid;gap:12px}
.product-review-form > label{font-size:12px;font-weight:900;color:var(--fl-text)}
.product-stars-input{display:flex;gap:4px}
.product-stars-input label{cursor:pointer;color:#f59e0b;font-size:24px}
.product-stars-input input{display:none}
.product-related-modern{margin-bottom:34px}
@media (max-width: 1024px){
    .product-hero-modern{grid-template-columns:1fr;gap:22px}
    .product-gallery-modern{order:1}
    .product-copy-panel{order:2}
    .product-copy-panel h1{font-size:40px}
}
@media (max-width: 640px){
    .product-detail-modern{padding-top:8px}
    .product-breadcrumbs{font-size:11px;margin-bottom:12px}
    .product-hero-modern{padding:14px;border-radius:12px}
    .product-copy-panel{padding:2px 0 0}
    .product-copy-panel h1{font-size:30px;line-height:1.08}
    .product-price-modern strong{font-size:25px}
    .product-short-desc{font-size:12.5px;line-height:1.65}
    .product-spec-list div{grid-template-columns:1fr;gap:4px}
    .product-buy-row{align-items:stretch;flex-direction:column}
    .product-qty-modern{width:max-content}
    .product-add-btn{width:100%;min-width:0}
    .product-main-image img{padding:16px}
    .product-thumbs-modern button{width:86px;min-width:86px;height:72px}
    .product-thumb-scroll{width:30px;height:40px}
    .product-gallery-nav,.product-zoom-trigger{width:34px;height:34px}
    .product-lightbox{padding:42px 14px}
    .product-lightbox-nav{width:40px;height:40px}
    .product-lightbox-prev{left:10px}
    .product-lightbox-next{right:10px}
    .product-tabs-head{gap:18px;overflow-x:auto;padding:14px 16px}
    .product-tabs-head button{white-space:nowrap}
    .product-tabs-body{padding:16px}
}
.product-detail-grid{display:grid;grid-template-columns:1fr 1fr;gap:36px;align-items:start}
.gallery-main img{width:100%;border-radius:var(--fl-radius);border:1px solid var(--fl-border)}
.gallery-thumbs{display:flex;gap:8px;margin-top:10px;flex-wrap:wrap}
.gallery-thumb{border:2px solid var(--fl-border);border-radius:6px;overflow:hidden;width:72px;height:72px;cursor:pointer;transition:border-color .2s}
.gallery-thumb.active,.gallery-thumb:hover{border-color:var(--fl-primary)}
.gallery-thumb img{width:100%;height:100%;object-fit:contain;padding:4px}
.product-info h1{font-size:22px;font-weight:800;line-height:1.3;margin-bottom:12px}
.product-price-block{margin-bottom:20px}
.product-price-main{font-size:28px;font-weight:800;color:#000}
.product-price-old{font-size:14px;color:var(--fl-text-3);text-decoration:line-through}
.tab-nav{display:flex;gap:0;border-bottom:2px solid var(--fl-border);margin-bottom:20px}
.tab-btn{padding:10px 20px;font-size:13px;font-weight:600;border:none;background:none;cursor:pointer;color:var(--fl-text-3);border-bottom:2px solid transparent;margin-bottom:-2px;transition:all .2s}
.tab-btn.active{color:var(--fl-primary);border-bottom-color:var(--fl-primary)}
.tab-content{display:none;font-size:14px;line-height:1.75;color:var(--fl-text-2)}
.tab-content.active{display:block}
.stars{color:#f59e0b}

/* Admin */
.admin-layout{display:flex;min-height:100vh;background:var(--fl-bg)}
.admin-sidebar{width:240px;background:#1e2b38;color:#fff;flex-shrink:0;display:flex;flex-direction:column}
.admin-sidebar-logo{padding:20px;font-size:17px;font-weight:800;border-bottom:1px solid rgba(255,255,255,.08)}
.admin-sidebar-logo span{color:var(--fl-primary)}
.admin-nav{padding:10px 0;flex:1}
.admin-nav-link{display:flex;align-items:center;gap:10px;padding:10px 20px;font-size:13px;color:rgba(255,255,255,.6);transition:all .2s}
.admin-nav-link:hover,.admin-nav-link.active{background:rgba(70,168,163,.15);color:#fff}
.admin-nav-link i{width:16px}
.admin-content{flex:1;overflow:auto}
.admin-topbar{background:#fff;border-bottom:1px solid var(--fl-border);padding:14px 24px;display:flex;align-items:center;justify-content:space-between;gap:16px}
.admin-topbar h1{font-size:17px;font-weight:700}
.admin-main{padding:24px}
.card{background:#fff;border:1px solid var(--fl-border);border-radius:var(--fl-radius);overflow:hidden}
.card-header{padding:14px 20px;border-bottom:1px solid var(--fl-border);font-size:14px;font-weight:700}
.card-body{padding:20px}
.data-table{width:100%;border-collapse:collapse;font-size:13px}
.data-table th{background:var(--fl-bg);padding:10px 14px;text-align:left;font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:.04em;color:var(--fl-text-3);border-bottom:1px solid var(--fl-border)}
.data-table td{padding:11px 14px;border-bottom:1px solid var(--fl-border);vertical-align:middle}
.data-table tr:last-child td{border-bottom:none}
.data-table tr:hover td{background:rgba(70,168,163,.03)}
.badge-pill{padding:2px 8px;border-radius:999px;font-size:11px;font-weight:600}
.btn-icon{width:30px;height:30px;border:1px solid var(--fl-border);border-radius:6px;background:#fff;cursor:pointer;display:inline-flex;align-items:center;justify-content:center;font-size:12px;color:var(--fl-text-3);transition:all .2s}
.btn-icon:hover{border-color:var(--fl-primary);color:var(--fl-primary)}
.admin-stat-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;margin-bottom:24px}
.admin-stat{background:#fff;border:1px solid var(--fl-border);border-radius:var(--fl-radius);padding:20px}
.admin-stat-value{font-size:24px;font-weight:800;color:var(--fl-text)}
.admin-stat-label{font-size:12px;color:var(--fl-text-3);font-weight:500;margin-top:4px}

/* Breadcrumb */
.breadcrumb,.breadcrumbs{display:flex;align-items:center;gap:10px;font-size:12.5px;color:var(--fl-text-3);margin:18px 0 20px;padding:11px 18px;background:#fff;border:1px solid var(--fl-border);border-radius:12px;flex-wrap:wrap;font-weight:600;width:fit-content}
.breadcrumb a:hover,.breadcrumbs a:hover{color:var(--fl-primary)}
.breadcrumbs a{display:inline-flex;align-items:center;gap:7px;color:var(--fl-text-3);transition:color .15s}
.breadcrumbs i.fa-chevron-right{font-size:9px;color:var(--fl-border)}
.breadcrumbs a i{font-size:13px;color:var(--fl-primary)}
.breadcrumbs span{color:var(--fl-text);font-weight:800}

/* Pagination */
.pagination{display:flex;gap:6px;justify-content:center;margin-top:24px}
.pagination a,.pagination span{width:36px;height:36px;display:flex;align-items:center;justify-content:center;border:1px solid var(--fl-border);border-radius:6px;font-size:13px;font-weight:600;transition:all .2s}
.pagination a:hover,.pagination .active{background:var(--fl-primary);border-color:var(--fl-primary);color:#fff}

/* Account */
.account-layout{display:grid;grid-template-columns:220px 1fr;gap:24px;align-items:start}
.account-nav{background:#fff;border:1px solid var(--fl-border);border-radius:var(--fl-radius);overflow:hidden}
.account-nav a{display:flex;align-items:center;gap:10px;padding:12px 16px;font-size:13px;color:var(--fl-text-2);border-bottom:1px solid var(--fl-border);transition:all .2s}
.account-nav a:last-child{border-bottom:none}
.account-nav a:hover,.account-nav a.active{color:var(--fl-primary);background:var(--fl-primary-light)}

/* Responsive */
@media(max-width:1024px){
  .category-layout{grid-template-columns:1fr}
  .filter-sidebar{display:none}
  .cart-layout{grid-template-columns:1fr}
  .cart-modern-layout{grid-template-columns:1fr}
  .cart-modern-summary{position:static}
  .product-detail-grid{grid-template-columns:1fr}
  .admin-stat-grid{grid-template-columns:repeat(2,1fr)}
  .footer-grid{grid-template-columns:1fr 1fr}
  .account-layout{grid-template-columns:1fr}
}
@media(max-width:768px){
  .header-main{flex-wrap:wrap;gap:10px}
  .header-search{order:3;flex:1 0 100%}
  .header-actions .header-action span{display:none}
  .cat-nav{display:none}
  .mobile-menu-toggle{display:flex}
  .footer-grid{grid-template-columns:1fr 1fr}
  .product-card{flex:0 0 160px}
  .fl-banner-grid{grid-template-columns:1fr}
  .cart-modern-card{padding:18px}
  .cart-modern-labels{display:none}
  .cart-modern-item{grid-template-columns:1fr;gap:12px}
  .cart-modern-qty{justify-content:flex-start}
  .cart-modern-price strong,.cart-modern-price small{text-align:left}
  .cart-remove-btn{justify-self:flex-end;margin-top:-42px}
  .cart-steps{gap:8px;font-size:11px}
}
@media(max-width:480px){
  .product-card{flex:0 0 148px}
  .footer-grid{grid-template-columns:1fr}
  .admin-stat-grid{grid-template-columns:1fr 1fr}
  .cart-modern-head{flex-direction:column;align-items:flex-start}
  .cart-modern-product{align-items:flex-start}
  .cart-modern-img{width:62px;height:62px}
  .cart-promo-banner{align-items:flex-start;flex-direction:column}
}

.printer-detail-desc{display:grid;gap:16px}
.printer-detail-desc .printer-lead{font-size:15px;line-height:1.85;color:var(--fl-text)}
.printer-detail-desc h3{margin:8px 0 0;color:#071221;font-size:17px;font-weight:900}
.printer-detail-desc ul{display:grid;gap:8px;margin:0 0 6px 18px}
.printer-detail-desc li{padding-left:3px;color:var(--fl-text-2)}
.printer-spec-table-wrap{overflow:auto;border:1px solid var(--fl-border);border-radius:10px;background:#fff}
.printer-spec-table{width:100%;border-collapse:collapse;font-size:13px}
.printer-spec-table tr+tr{border-top:1px solid var(--fl-border)}
.printer-spec-table th{width:220px;background:#f7f9fa;color:#071221;text-align:left;font-weight:900;padding:12px 14px;vertical-align:top}
.printer-spec-table td{color:var(--fl-text-2);padding:12px 14px;line-height:1.55;vertical-align:top}
.printer-desc-media{display:grid;grid-template-columns:repeat(auto-fit,minmax(190px,1fr));gap:12px;margin:4px 0 8px}
.printer-desc-media figure{margin:0;border:1px solid var(--fl-border);border-radius:10px;background:#fff;overflow:hidden}
.printer-desc-media img{width:100%;aspect-ratio:1/1;object-fit:contain;padding:12px;background:#f7f9fa;display:block}
.printer-desc-media figcaption{padding:9px 10px;border-top:1px solid var(--fl-border);font-size:11px;font-weight:800;color:var(--fl-text-3)}
@media (max-width:700px){.printer-spec-table th{width:145px}.printer-spec-table th,.printer-spec-table td{padding:10px 11px}.printer-desc-media{grid-template-columns:repeat(2,minmax(0,1fr))}}

.hero-slide-copy{position:absolute;top:50%;left:7%;transform:translateY(-50%);z-index:3;display:flex;flex-direction:column;gap:10px;max-width:min(440px,42%);color:#fff;text-shadow:0 2px 14px rgba(0,0,0,.35)}
.hero-slide-copy strong{font-size:clamp(1.35rem,3vw,3rem);line-height:1.05;font-weight:800;letter-spacing:0}
.hero-slide-copy small{font-size:clamp(.9rem,1.25vw,1.15rem);line-height:1.45;font-weight:500}
.hero-slide-copy em{font-style:normal;align-self:flex-start;background:#fff;color:#111827;border-radius:6px;padding:10px 16px;font-weight:700;box-shadow:0 10px 30px rgba(0,0,0,.18)}
.hero-slide-text-center .hero-slide-copy{left:50%;transform:translate(-50%,-50%);align-items:center;text-align:center}
.hero-slide-text-center .hero-slide-copy em{align-self:center}
.hero-slide-text-right .hero-slide-copy{left:auto;right:7%;align-items:flex-end;text-align:right}
.hero-slide-text-right .hero-slide-copy em{align-self:flex-end}
@media(max-width:768px){.hero-slide-copy{left:18px;right:18px;max-width:none;gap:7px}.hero-slide-text-center .hero-slide-copy{left:18px;right:18px;transform:translateY(-50%)}.hero-slide-text-right .hero-slide-copy{right:18px}.hero-slide-copy strong{font-size:1.35rem}.hero-slide-copy small{font-size:.88rem}.hero-slide-copy em{padding:8px 12px;font-size:.86rem}}

.showcase-product span{display:block;min-height:32px;line-height:1.35;overflow:hidden}
@media(max-width:768px){.showcase-products{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}.showcase-product{max-width:none}}

.showcase-product{position:relative;border-radius:12px;padding:10px;background:var(--card-bg,#fff);color:var(--card-text,var(--fl-text-2));border:1px solid transparent}
.showcase-product img{object-fit:var(--card-fit,contain);border-radius:10px}
.showcase-product em{position:absolute;top:8px;left:8px;z-index:2;font-style:normal;background:var(--card-accent,var(--fl-primary));color:#fff;border-radius:999px;padding:4px 8px;font-size:10px;font-weight:800}
.showcase-product small{display:block;margin-top:4px;min-height:16px;color:color-mix(in srgb,var(--card-text,var(--fl-text-2)) 72%,#fff);font-size:11px;line-height:1.25;overflow:hidden}
.showcase-product b{display:inline-flex;margin-top:8px;color:var(--card-accent,var(--fl-primary));font-size:11px;font-weight:900}
.showcase-product-soft{border-color:color-mix(in srgb,var(--card-accent,var(--fl-primary)) 22%,#fff);box-shadow:0 8px 24px rgba(15,23,42,.05)}
.showcase-product-filled{border-color:transparent;background:var(--card-bg,#0F6E56);color:var(--card-text,#fff)}
.showcase-product-filled span,.showcase-product-filled small{color:var(--card-text,#fff)}
.showcase-product-filled b{color:var(--card-accent,#fff)}
.showcase-product-poster{padding:0;overflow:hidden;border-color:var(--fl-border);background:var(--card-bg,#fff)}
.showcase-product-poster img{width:100%;margin:0;border-radius:0}
.showcase-product-poster span,.showcase-product-poster small,.showcase-product-poster b{padding-left:10px;padding-right:10px}
.showcase-product-poster b{padding-bottom:10px}
