﻿/* KEYTIVO 2.0 — ORCA KEYS–style white storefront */
@font-face{font-family:Inter;font-style:normal;font-weight:300 900;font-display:swap;src:url("../fonts/inter-var-latin.woff2") format("woff2")}
@font-face{font-family:Sora;font-style:normal;font-weight:300 800;font-display:swap;src:url("../fonts/sora-var-latin.woff2") format("woff2")}

:root{
  --navy:#0a1633;
  --navy-2:#071028;
  --purple:#6b2bd9;
  --purple-2:#8b3dff;
  --grad:linear-gradient(90deg,#3b82f6 0%,#6b2bd9 55%,#8b3dff 100%);
  --blue:#1d4ed8;
  --blue-price:#155eef;
  --bg:#f4f5f7;
  --white:#fff;
  --text:#1f2937;
  --muted:#6b7280;
  --line:#e5e7eb;
  --radius:8px;
  --radius-pill:999px;
  --shadow:0 2px 10px rgba(15,23,42,.06);
  --container:1200px;
  --font:Inter,system-ui,sans-serif;
  --display:Sora,Inter,system-ui,sans-serif;
}

*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;font-family:var(--font);color:var(--text);background:var(--bg);line-height:1.5;-webkit-font-smoothing:antialiased}
img{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none}
a:hover{color:var(--blue)}
ul{margin:0;padding:0;list-style:none}
button,input,select{font:inherit}
.container{width:min(100% - 32px,var(--container));margin-inline:auto}
.screen-reader-text,.skip-link{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}
.skip-link:focus{position:fixed;left:12px;top:12px;width:auto;height:auto;margin:0;clip:auto;z-index:9999;background:#fff;padding:10px 14px;border-radius:6px}
.btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;border:0;border-radius:6px;padding:.7rem 1.1rem;font-weight:700;cursor:pointer}
.btn--primary{background:var(--blue);color:#fff!important}
.btn--primary:hover{background:#1e40af;color:#fff!important}
.btn--outline{background:#fff;border:1px solid #cbd5e1;color:var(--text)}

/* Header */
.site-header{position:relative;z-index:50}
.header-top{background:var(--navy-2);color:#cbd5e1;font-size:12px}
.header-top__inner{display:flex;justify-content:space-between;align-items:center;min-height:32px}
.header-top__nav{display:flex;gap:16px}
.header-top__nav a{color:#e5e7eb}
.header-top__nav a:hover{color:#fff}
.header-main{background:var(--navy);color:#fff}
.header-main__inner{display:grid;grid-template-columns:180px 1fr auto auto;align-items:center;gap:20px;min-height:84px;padding:12px 0}
.site-logo img{width:170px;height:auto}
.header-search{display:flex;align-items:center;background:#fff;border-radius:var(--radius-pill);overflow:hidden;height:46px;max-width:560px;width:100%;margin:0 auto}
.header-search input{flex:1;border:0;outline:0;padding:0 18px;color:var(--text);min-width:0}
.header-search__btn{width:46px;height:46px;border:0;border-radius:50%;background:var(--purple);color:#fff;display:grid;place-items:center;margin-right:2px;cursor:pointer}
.header-hotline{display:flex;align-items:center;gap:10px;min-width:190px}
.header-hotline__icon{display:grid;place-items:center;color:#fff}
.header-hotline__label{display:block;font-size:11px;color:#94a3b8;text-transform:uppercase;letter-spacing:.04em}
.header-hotline__num{display:block;font-weight:700;color:#fff;font-size:14px}
.header-hotline__mail{display:block;font-size:11px;color:#cbd5e1}
.header-cart{display:flex;align-items:center;gap:10px;color:#fff;min-width:110px}
.header-cart__icon{position:relative;display:grid;place-items:center}
.header-cart__badge{position:absolute;top:-6px;right:-8px;background:var(--purple-2);color:#fff;border-radius:999px;font-size:10px;min-width:16px;height:16px;display:grid;place-items:center;padding:0 4px}
.header-cart__total{display:block;font-weight:800;color:#c4b5fd;font-size:15px;line-height:1.1}
.header-cart__count{display:block;font-size:11px;color:#cbd5e1}
.header-burger{display:none;width:42px;height:42px;border:1px solid rgba(255,255,255,.25);background:transparent;border-radius:8px;flex-direction:column;justify-content:center;align-items:center;gap:5px}
.header-burger span{display:block;width:18px;height:2px;background:#fff}
.header-catbar{background:var(--grad)}
.header-catbar__inner{display:flex;align-items:center;justify-content:space-between;min-height:46px;gap:16px}
.header-catbar__nav{display:flex;flex-wrap:wrap;gap:4px 18px;align-items:center}
.header-catbar__nav a{color:#fff;font-weight:700;font-size:14px;padding:10px 0}
.header-catbar__nav a:hover{opacity:.9;color:#fff}
.header-catbar__utils{display:flex;align-items:center;gap:18px;color:#fff;font-size:13px;font-weight:600;white-space:nowrap}
.header-wish,.header-account{display:inline-flex;align-items:center;gap:6px;color:#fff}
.header-wish__count{background:rgba(255,255,255,.2);border-radius:999px;padding:0 6px;font-size:11px}

/* Mobile drawer */
.mobile-drawer[hidden]{display:none!important}
.mobile-drawer{position:fixed;inset:0;background:rgba(2,6,23,.55);z-index:80}
.mobile-drawer__panel{width:min(86vw,340px);height:100%;background:#fff;padding:20px;overflow:auto;margin-left:auto}
.mobile-drawer__close{border:0;background:#f1f5f9;width:36px;height:36px;border-radius:8px;font-size:22px;cursor:pointer}
.mobile-drawer__search{display:flex;gap:8px;margin:16px 0}
.mobile-drawer__search input{flex:1;border:1px solid var(--line);border-radius:8px;padding:10px}
.mobile-drawer__search button{background:var(--purple);color:#fff;border:0;border-radius:8px;padding:0 12px}
.mobile-drawer__nav{display:flex;flex-direction:column}
.mobile-drawer__nav a{padding:12px 0;border-bottom:1px solid var(--line);font-weight:600}

/* Home hero storefront */
.home-hero-store{padding:22px 0 8px;background:var(--bg)}
.home-hero-store__grid{display:grid;grid-template-columns:1.55fr .85fr .95fr;gap:16px;align-items:stretch}
.hero-carousel{position:relative;background:#fff;border-radius:10px;overflow:hidden;box-shadow:var(--shadow);min-height:320px}
.hero-slide{display:none;position:relative}
.hero-slide.is-active{display:block}
.hero-slide img{width:100%;height:340px;object-fit:cover}
.hero-slide__cta{position:absolute;left:28px;bottom:28px}
.hero-carousel__next{position:absolute;right:10px;top:50%;transform:translateY(-50%);width:36px;height:36px;border:0;border-radius:50%;background:rgba(255,255,255,.9);cursor:pointer;font-size:22px}
.hero-carousel__dots{position:absolute;right:16px;bottom:14px;display:flex;gap:6px}
.hero-carousel__dots button{width:8px;height:8px;border-radius:50%;border:0;background:#cbd5e1;padding:0;cursor:pointer}
.hero-carousel__dots button.is-active{background:var(--purple)}
.special-offer{position:relative;display:block;background:#0f172a;border-radius:10px;overflow:hidden;box-shadow:var(--shadow);min-height:340px;color:#fff}
.special-offer img{width:100%;height:340px;object-fit:cover;opacity:.95}
.special-offer__badge,.special-offer__title,.special-offer__price{position:absolute;left:16px;right:16px}
.special-offer__badge{top:16px;font-size:12px;font-weight:700;color:#c4b5fd;text-transform:uppercase}
.special-offer__title{bottom:54px;font-family:var(--display);font-size:26px;font-weight:800}
.special-offer__price{bottom:22px;font-weight:700;color:#93c5fd}
.home-hero-store__cats{background:#fff;border-radius:10px;box-shadow:var(--shadow);padding:14px 14px 8px}
.home-panel__title{margin:0 0 12px;font-size:16px;display:flex;align-items:center;gap:8px}
.hot-cats{display:grid;grid-template-columns:repeat(2,1fr);gap:10px}
.hot-cats a{display:flex;flex-direction:column;align-items:center;gap:6px;text-align:center;font-size:12px;font-weight:600;color:var(--text)}
.hot-cats img{width:64px;height:64px;object-fit:cover;border-radius:50%;background:#f8fafc;border:1px solid var(--line)}
.best-pick{margin-top:18px;background:#fff;border-radius:10px;box-shadow:var(--shadow);padding:14px 16px}
.best-pick__head{display:flex;justify-content:space-between;align-items:center;margin-bottom:10px}
.best-pick__head h2{margin:0;font-size:18px}
.best-pick__head a{color:var(--blue);font-weight:700;font-size:13px}
.best-pick__list{display:grid;grid-template-columns:repeat(4,1fr);gap:12px}
.best-pick__list a{display:flex;gap:10px;align-items:center;padding:8px;border:1px solid var(--line);border-radius:8px}
.best-pick__list img{width:56px;height:56px;object-fit:cover;border-radius:6px}
.best-pick__name{display:block;font-size:13px;font-weight:600;line-height:1.25}
.best-pick__price{display:block;color:var(--blue-price);font-weight:800;font-size:14px}

/* Benefits */
.benefit-strip{background:linear-gradient(90deg,#0b1b3a,#2e1065);color:#fff;margin:18px 0}
.benefit-strip__inner{display:grid;grid-template-columns:repeat(5,1fr);gap:12px;padding:18px 0}
.benefit-strip__item{text-align:center;padding:4px 8px}
.benefit-strip__item strong{display:block;font-size:13px;margin-bottom:2px}
.benefit-strip__item span{display:block;font-size:11px;color:#cbd5e1}

/* Featured layout */
.home-featured{padding:8px 0 24px}
.home-featured__layout{display:grid;grid-template-columns:260px 1fr;gap:18px}
.home-sidebar__box{background:#fff;border-radius:10px;box-shadow:var(--shadow);padding:14px;margin-bottom:14px}
.home-sidebar__box h2{margin:0 0 12px;font-size:16px}
.home-sidebar__empty{color:var(--muted);font-size:13px}
.home-sidebar__promo{display:block;border-radius:10px;overflow:hidden;margin-bottom:14px;box-shadow:var(--shadow)}
.home-sidebar__promo img{width:100%;height:auto}
.mini-product-list li{margin-bottom:10px}
.mini-product-list a{display:flex;gap:10px;align-items:center}
.mini-product-list img{width:48px;height:48px;object-fit:cover;border-radius:6px}
.mini-product-list strong{display:block;font-size:12px;line-height:1.25}
.mini-product-list .amount,.mini-product-list .price{color:var(--blue-price);font-weight:800;font-size:13px}
.section-head{display:flex;justify-content:space-between;align-items:center;margin:0 0 14px}
.section-head h2{margin:0;font-size:22px;font-family:var(--display)}
.section-head a{color:var(--blue);font-weight:700;font-size:13px}
.home-featured__main{background:#fff;border-radius:10px;box-shadow:var(--shadow);padding:16px}

/* Product grids */
ul.products{display:grid;gap:14px;margin:0;padding:0;list-style:none}
ul.products.columns-4{grid-template-columns:repeat(4,1fr)}
ul.products.columns-5{grid-template-columns:repeat(5,1fr)}
ul.products.columns-6{grid-template-columns:repeat(6,1fr)}
.product-card{background:#fff;border:1px solid var(--line);border-radius:10px;padding:10px;position:relative;display:flex;flex-direction:column;height:100%;transition:box-shadow .15s ease}
.product-card:hover{box-shadow:var(--shadow)}
.product-card__badge{position:absolute;left:14px;top:14px;z-index:2;background:#ef4444;color:#fff;font-size:11px;font-weight:800;padding:3px 7px;border-radius:4px}
.product-card__wish{position:absolute;right:12px;top:12px;z-index:2;width:32px;height:32px;border-radius:50%;border:1px solid var(--line);background:#fff;display:grid;place-items:center;cursor:pointer;color:#94a3b8}
.product-card__wish.is-active,.product-card__wish[aria-pressed="true"]{color:#e11d48;border-color:#fecdd3}
.product-card__media{display:block;aspect-ratio:1;background:#f8fafc;border-radius:8px;overflow:hidden;margin-bottom:10px}
.product-card__img{width:100%;height:100%;object-fit:cover}
.product-card__cats{font-size:11px;color:var(--muted);text-transform:uppercase;letter-spacing:.04em;margin:0 0 4px}
.product-card__title{margin:0 0 6px;font-size:14px;font-weight:700;line-height:1.3;min-height:2.6em}
.product-card__title a:hover{color:var(--blue)}
.product-card__price{color:var(--blue-price);font-weight:800;font-size:16px;margin:0 0 10px}
.product-card__price del{color:#94a3b8;font-weight:500;font-size:12px;margin-right:6px}
.product-card__actions{margin-top:auto;display:grid;gap:6px}
.product-card__actions .button,.product-card__actions .btn,.product-card .add_to_cart_button,.product-card .product_type_simple{display:inline-flex;justify-content:center;align-items:center;width:100%;background:var(--blue)!important;color:#fff!important;border:0!important;border-radius:6px!important;padding:8px 10px!important;font-weight:700!important;font-size:13px!important}
.product-card__buynow{display:inline-flex;justify-content:center;width:100%;border:1px solid #cbd5e1;border-radius:6px;padding:7px 10px;font-weight:700;font-size:12px;background:#fff}

.promo-band{padding:8px 0 20px}
.promo-band__link{display:block;border-radius:10px;overflow:hidden;box-shadow:var(--shadow)}
.promo-band img{width:100%;height:auto}
.shop-by-cats{padding:8px 0 24px}
.shop-by-cats .container{background:#fff;border-radius:10px;box-shadow:var(--shadow);padding:18px}
.shop-by-cats__list{display:grid;grid-template-columns:repeat(8,1fr);gap:12px}
.shop-by-cats__list a{display:flex;flex-direction:column;align-items:center;gap:8px;text-align:center;font-size:12px;font-weight:600}
.shop-by-cats__list img{width:84px;height:84px;border-radius:50%;object-fit:cover;border:1px solid var(--line);background:#f8fafc}
.promo-trio{padding:0 0 24px}
.promo-trio__grid{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.promo-trio__card{display:block;border-radius:10px;overflow:hidden;box-shadow:var(--shadow);position:relative;background:#fff}
.promo-trio__card img{width:100%;height:180px;object-fit:cover}
.promo-trio__cta{position:absolute;left:16px;bottom:16px;background:var(--blue);color:#fff;padding:8px 14px;border-radius:6px;font-weight:700;font-size:13px}
.home-recommended{padding:0 0 28px}
.home-recommended .container{background:#fff;border-radius:10px;box-shadow:var(--shadow);padding:18px}
.seo-block{padding:0 0 40px}
.seo-block .container{background:#fff;border-radius:10px;box-shadow:var(--shadow);padding:22px}
.seo-block h2{margin:0 0 12px;font-family:var(--display)}
.seo-block__content{color:#4b5563;font-size:14px}
.seo-block__content.is-clamped{max-height:4.8em;overflow:hidden}
.seo-block__more{margin-top:10px;border:0;background:transparent;color:var(--blue);font-weight:700;cursor:pointer;padding:0}

/* Footer */
.site-footer{background:#0b1224;color:#cbd5e1;margin-top:20px}
.footer-top{border-bottom:1px solid rgba(255,255,255,.08)}
.footer-top__inner{display:flex;justify-content:space-between;align-items:center;padding:18px 0}
.footer-logo img{width:140px;height:auto}
.footer-social{display:flex;align-items:center;gap:10px}
.footer-social a{width:30px;height:30px;border-radius:50%;background:rgba(255,255,255,.08);display:grid;place-items:center;color:#fff;font-size:12px;font-weight:700}
.footer-main__grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;padding:28px 0}
.footer-col__title{margin:0 0 12px;color:#fff;font-size:15px}
.footer-col__list li{margin-bottom:8px}
.footer-col__list a{color:#cbd5e1;font-size:13px}
.footer-col__list a:hover{color:#fff}
.footer-newsletter{display:flex;gap:8px;margin-top:10px}
.footer-newsletter input{flex:1;border:1px solid rgba(255,255,255,.15);background:rgba(255,255,255,.05);color:#fff;border-radius:6px;padding:10px}
.footer-newsletter button{background:var(--purple);color:#fff;border:0;border-radius:6px;padding:0 14px;font-weight:700;cursor:pointer}
.footer-payments{border-top:1px solid rgba(255,255,255,.08);border-bottom:1px solid rgba(255,255,255,.08)}
.footer-payments__inner{display:flex;align-items:center;gap:16px;padding:14px 0;font-size:13px}
.footer-payments__list{display:flex;flex-wrap:wrap;gap:8px}
.footer-payments__list li{background:rgba(255,255,255,.08);padding:4px 8px;border-radius:4px;font-size:11px;font-weight:700;color:#fff}
.footer-copy{text-align:center;padding:14px 0;font-size:12px;color:#94a3b8}

/* Woo pages */
.woo-page,.site-main > .container{padding:22px 0 40px}
.page-head h1,.woocommerce-products-header__title{margin:0 0 16px;font-family:var(--display);font-size:28px}
.shop-toolbar{display:flex;justify-content:space-between;align-items:center;gap:12px;margin-bottom:16px;background:#fff;border:1px solid var(--line);border-radius:8px;padding:10px 14px}
.woocommerce .woocommerce-result-count{margin:0;color:var(--muted)}
.woocommerce .woocommerce-ordering{margin:0}
.woocommerce .woocommerce-ordering select{border:1px solid var(--line);border-radius:6px;padding:8px 10px;background:#fff}
.woocommerce-breadcrumb,.breadcrumbs{font-size:13px;color:var(--muted);margin-bottom:12px}
.woocommerce-breadcrumb a,.breadcrumbs a{color:var(--blue)}
.woocommerce ul.products li.product{width:auto!important;margin:0!important;float:none!important}
.woocommerce-pagination{margin-top:22px}
.woocommerce-pagination ul.page-numbers{display:flex;gap:6px;justify-content:center}
.woocommerce-pagination .page-numbers{display:grid;place-items:center;min-width:36px;height:36px;border:1px solid var(--line);border-radius:6px;background:#fff;color:var(--text);font-weight:700}
.woocommerce-pagination .page-numbers.current,.woocommerce-pagination a.page-numbers:hover{background:var(--blue);border-color:var(--blue);color:#fff}

/* Single product */
.single-product .product{display:grid;grid-template-columns:1fr 1fr;gap:28px;background:#fff;border:1px solid var(--line);border-radius:12px;padding:22px}
.woocommerce div.product div.images{width:100%!important;float:none!important;margin:0!important}
.woocommerce div.product div.summary{width:100%!important;float:none!important;margin:0!important}
.product_title{font-family:var(--display);font-size:28px;margin:0 0 10px}
.single-product .price{color:var(--blue-price)!important;font-size:26px!important;font-weight:800!important}
.single-product .cart{display:flex;flex-wrap:wrap;gap:10px;align-items:center;margin:16px 0}
.single-product .single_add_to_cart_button{background:var(--blue)!important;color:#fff!important;border-radius:6px!important;font-weight:800!important}
.single_buy_now_button{border:1px solid #cbd5e1;background:#fff;border-radius:6px;padding:.75rem 1.1rem;font-weight:800;cursor:pointer}
.keytivo-specs{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px;margin:16px 0}
.keytivo-specs div{background:#f8fafc;border:1px solid var(--line);border-radius:8px;padding:10px 12px}
.keytivo-specs strong{display:block;font-size:11px;color:var(--muted);text-transform:uppercase}
.related.products,.upsells.products{margin-top:28px}
.related.products > h2,.upsells.products > h2{font-family:var(--display);font-size:22px;margin-bottom:14px}

/* Cart / checkout / account */
.woocommerce-cart .woocommerce,.woocommerce-checkout .woocommerce,.woocommerce-account .woocommerce{background:#fff;border:1px solid var(--line);border-radius:12px;padding:20px}
.woocommerce table.shop_table{border:1px solid var(--line)!important;border-radius:8px;overflow:hidden}
.woocommerce-cart-form .button,.woocommerce #place_order,.woocommerce-Button{background:var(--blue)!important;color:#fff!important;border-radius:6px!important;font-weight:800!important}
.wishlist-empty{background:#fff;border:1px solid var(--line);border-radius:12px;padding:40px;text-align:center}
.page .entry-content,.page-template-default .site-main > article{background:#fff;border:1px solid var(--line);border-radius:12px;padding:24px;max-width:900px;margin:22px auto 40px}
.error404 .site-main{padding:60px 0;text-align:center}
.error404 h1{font-family:var(--display)}

/* Forms */
.woocommerce form .form-row input.input-text,.woocommerce form .form-row textarea,.woocommerce form .form-row select{border:1px solid var(--line);border-radius:6px;padding:10px 12px}
.woocommerce form .form-row label{font-weight:600;font-size:13px}

/* Responsive */
@media (max-width:1100px){
  ul.products.columns-5,ul.products.columns-6{grid-template-columns:repeat(4,1fr)}
  .home-featured__layout{grid-template-columns:220px 1fr}
  .shop-by-cats__list{grid-template-columns:repeat(4,1fr)}
  .benefit-strip__inner{grid-template-columns:repeat(3,1fr)}
}
@media (max-width:900px){
  .header-main__inner{grid-template-columns:1fr auto auto;grid-template-areas:"logo hotline burger" "search search search"}
  .site-logo{grid-area:logo}
  .header-search{grid-area:search;max-width:none}
  .header-hotline{grid-area:hotline}
  .header-cart{display:none}
  .header-burger{display:flex;grid-area:burger}
  .header-catbar__nav{display:none}
  .home-hero-store__grid{grid-template-columns:1fr 1fr}
  .home-hero-store__cats{grid-column:1/-1}
  .best-pick__list{grid-template-columns:1fr 1fr}
  .home-featured__layout{grid-template-columns:1fr}
  .home-sidebar{display:grid;grid-template-columns:1fr 1fr;gap:12px}
  .promo-trio__grid{grid-template-columns:1fr}
  ul.products.columns-4,ul.products.columns-5,ul.products.columns-6{grid-template-columns:repeat(3,1fr)}
  .single-product .product{grid-template-columns:1fr}
  .footer-main__grid{grid-template-columns:1fr 1fr}
}
@media (max-width:640px){
  .header-hotline{display:none}
  .header-main__inner{grid-template-columns:1fr auto;grid-template-areas:"logo burger" "search search"}
  .home-hero-store__grid{grid-template-columns:1fr}
  .hero-slide img,.special-offer img{height:220px}
  .best-pick__list,.shop-by-cats__list,.benefit-strip__inner,.home-sidebar{grid-template-columns:1fr 1fr}
  ul.products.columns-3,ul.products.columns-4,ul.products.columns-5,ul.products.columns-6{grid-template-columns:repeat(2,1fr)}
  .footer-main__grid{grid-template-columns:1fr}
  .footer-top__inner,.footer-payments__inner{flex-direction:column;align-items:flex-start}
}

/* Above-fold parity layer — wide ORCA-style first section. */
:root{--container:1630px;--bg:#f3f4f7;--navy:#0b0326;--navy-2:#09021e;--purple:#6f29e8;--blue:#2874f0;--hero-radius:16px}
html,body{max-width:100%;overflow-x:hidden}
.container{width:min(calc(100% - 24px),var(--container))}
.header-top__inner{min-height:34px}
.header-top{font-size:13px}
.header-main__inner{grid-template-columns:210px minmax(420px,720px) minmax(210px,250px) 140px;min-height:92px;padding:14px 0;gap:24px}
.site-logo img{width:190px}
.header-search{height:48px;max-width:720px;position:relative;overflow:visible;border-radius:999px}
.header-search__btn{width:44px;height:44px}
.header-search__results{position:absolute;left:0;right:0;top:54px;background:#fff;border:1px solid var(--line);border-radius:9px;box-shadow:0 12px 30px rgba(15,23,42,.18);overflow:hidden;z-index:100;color:var(--text)}
.search-suggestion{display:flex;align-items:center;gap:10px;padding:9px 12px;border-bottom:1px solid var(--line)}
.search-suggestion:last-child{border-bottom:0}
.search-suggestion img{width:42px;height:42px;object-fit:cover;border-radius:6px}
.search-suggestion strong,.search-suggestion small{display:block}
.search-suggestion strong{font-size:12px}.search-suggestion small{font-size:11px;color:var(--blue);font-weight:700}
.search-suggestion-empty{margin:0;padding:14px;color:var(--muted);font-size:12px}
.header-hotline__num{font-size:15px}.header-hotline__label{font-size:12px}
.header-catbar__inner{min-height:48px}
.header-catbar__nav{gap:4px 28px}
.header-catbar__nav a{font-size:14px;padding:12px 0;font-weight:700}
.header-catbar__utils{font-size:13px}
.header-catbar{position:sticky;top:0;z-index:45}

.home-hero-store{padding:18px 0 0;background:var(--bg)}
.home-hero-store__grid{
  display:grid;
  grid-template-columns:645fr 380fr 568fr;
  grid-template-rows:410px 162px;
  gap:19px;
  align-items:start;
}
.home-hero-store__main{grid-column:1;grid-row:1/3;height:575px;max-height:575px}
.home-hero-store__offer{grid-column:2;grid-row:1;height:392px}
.home-hero-store__cats{grid-column:3;grid-row:1;height:410px;padding:18px 20px 14px;background:#fff;border-radius:var(--hero-radius);box-shadow:var(--shadow)}
.best-pick{grid-column:2/4;grid-row:2;margin:0;height:162px;padding:14px 18px;min-width:0;border-radius:var(--hero-radius);background:#fff;box-shadow:var(--shadow)}

.hero-carousel{position:relative;height:100%;border-radius:var(--hero-radius);overflow:hidden;box-shadow:var(--shadow)}
.hero-slide{display:none;position:relative;height:100%;padding:36px 34px 40px;overflow:hidden}
.hero-slide.is-active{display:block}
.hero-slide--green{background:radial-gradient(circle at 78% 72%,#2f9d5c 0%,#0f5132 42%,#0a2f1f 100%)}
.hero-slide--navy{background:radial-gradient(circle at 78% 72%,#3b5bdb 0%,#1b2a6b 45%,#0b1638 100%)}
.hero-slide--blue{background:radial-gradient(circle at 78% 72%,#38bdf8 0%,#0c4a6e 45%,#082f49 100%)}
.hero-slide__copy{position:relative;z-index:3;max-width:52%;color:#fff}
.hero-slide__eyebrow{margin:0 0 10px;font-size:15px;font-weight:600;color:rgba(255,255,255,.82)}
.hero-slide__title{margin:0 0 22px;font-family:var(--display);font-size:44px;line-height:1.08;font-weight:800;color:#fff;letter-spacing:-.02em}
.hero-slide__cta{display:inline-flex;align-items:center;justify-content:center;min-height:42px;padding:0 22px;border-radius:999px;background:#fff;color:#111827!important;font-weight:800;font-size:14px;position:relative;left:auto;bottom:auto;z-index:4}
.hero-slide__cta:hover{background:#f8fafc;color:#111827!important}
.hero-slide__art{position:absolute;right:28px;bottom:28px;width:42%;height:52%;z-index:1;pointer-events:none}
.hero-slide__tile{position:absolute;width:74px;height:74px;border-radius:18px;display:grid;place-items:center;font-family:var(--display);font-size:28px;font-weight:800;color:#fff;box-shadow:0 12px 24px rgba(0,0,0,.25);background:linear-gradient(145deg,#60a5fa,#2563eb)}
.hero-slide__tile:nth-child(1){left:6%;top:8%}
.hero-slide__tile:nth-child(2){left:48%;top:0%;background:linear-gradient(145deg,#fb923c,#ea580c)}
.hero-slide__tile:nth-child(3){left:16%;top:46%;background:linear-gradient(145deg,#4ade80,#16a34a)}
.hero-slide__tile:nth-child(4){left:56%;top:40%;background:linear-gradient(145deg,#c084fc,#7c3aed)}
.hero-slide__link{position:absolute;inset:0;z-index:2}
.hero-carousel__prev,.hero-carousel__next{position:absolute;top:50%;transform:translateY(-50%);width:38px;height:38px;border:0;border-radius:50%;background:rgba(255,255,255,.92);color:#111;cursor:pointer;font-size:24px;line-height:1;z-index:5;box-shadow:0 4px 14px rgba(15,23,42,.18)}
.hero-carousel__prev{left:12px}.hero-carousel__next{right:12px}
.hero-carousel__dots{position:absolute;right:18px;bottom:16px;display:flex;gap:7px;z-index:5}
.hero-carousel__dots button{width:8px;height:8px;border-radius:50%;border:0;background:rgba(255,255,255,.45);padding:0;cursor:pointer}
.hero-carousel__dots button.is-active{background:#fff}

.special-offer{position:relative;display:flex;flex-direction:column;height:100%;border-radius:var(--hero-radius);overflow:hidden;box-shadow:var(--shadow);background:linear-gradient(180deg,#071f45 0%,#0a4a8f 48%,#1263b8 100%);color:#fff;text-align:center;padding:20px 14px 10px}
.special-offer__badge{position:relative;z-index:2;display:block;font-size:14px;font-weight:700;color:#e7c56a;margin-bottom:4px;text-shadow:0 1px 2px rgba(0,0,0,.35)}
.special-offer__title{position:relative;z-index:2;display:block;font-family:var(--display);font-size:28px;font-weight:800;color:#fff4b0;line-height:1.15;text-shadow:0 2px 8px rgba(0,0,0,.35)}
.special-offer__price{position:relative;z-index:2;display:block;margin-top:6px;font-size:16px;font-weight:800;color:#fff;text-shadow:0 1px 3px rgba(0,0,0,.4)}
.special-offer__media{position:relative;z-index:1;margin-top:auto;width:100%;height:58%;object-fit:contain;object-position:center bottom;pointer-events:none}

.home-panel__title{margin:0 0 14px;font-size:20px;font-weight:800;display:flex;align-items:center;gap:8px;color:#111827}
.home-panel__icon{font-size:16px}
.hot-cats{display:grid;grid-template-columns:repeat(4,1fr);gap:12px 10px;height:calc(100% - 38px);align-content:center}
.hot-cats a{display:flex;flex-direction:column;align-items:center;gap:8px;text-align:center;font-size:12px;font-weight:700;color:#1f2937}
.hot-cats__icon{width:88px;height:88px;border-radius:50%;background:#fff;border:1px solid #eef0f5;box-shadow:0 4px 14px rgba(15,23,42,.06);display:grid;place-items:center;overflow:hidden}
.hot-cats__icon img{width:72px;height:72px;object-fit:contain}
.best-pick__head{display:flex;justify-content:space-between;align-items:center;margin-bottom:10px}
.best-pick__head h2{margin:0;font-size:18px;font-weight:800}
.best-pick__head a{color:var(--blue);font-weight:700;font-size:13px;text-decoration:underline}
.best-pick__list{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:8px;height:calc(100% - 34px)}
.best-pick__list a{display:flex;gap:10px;align-items:center;padding:0;border:0;border-radius:0;height:auto;background:transparent}
.best-pick__list img{width:52px;height:60px;object-fit:contain;border-radius:4px;background:#f8fafc}
.best-pick__name{display:block;font-size:12px;font-weight:600;line-height:1.25;color:#111827;max-height:2.5em;overflow:hidden}
.best-pick__price{display:block;color:var(--blue-price);font-weight:800;font-size:13px;margin-top:2px}
.best-pick__price del{color:#94a3b8;font-weight:600;margin-right:4px}

.benefit-strip{margin:18px auto 28px;border-radius:22px 22px 10px 10px;background:linear-gradient(90deg,#0b1638 0%,#2a0b63 55%,#3b0f7a 100%);max-width:var(--container);width:min(calc(100% - 24px),var(--container));overflow:hidden}
.benefit-strip__inner{display:grid;grid-template-columns:repeat(5,1fr);gap:10px;padding:22px 10px}
.benefit-strip__item{display:flex;align-items:center;gap:12px;text-align:left;padding:4px 10px;color:#fff}
.benefit-strip__icon{width:40px;height:40px;border-radius:50%;background:rgba(139,92,246,.18);color:#c4b5fd;display:grid;place-items:center;flex:0 0 auto}
.benefit-strip__item strong{display:block;font-size:14px;margin-bottom:2px}
.benefit-strip__item span{display:block;font-size:11px;color:#cbd5e1;line-height:1.35}
.home-featured__layout{grid-template-columns:280px minmax(0,1fr);gap:16px}
.home-featured__main{padding:15px}
.home-featured__main ul.products.columns-5{grid-template-columns:repeat(6,minmax(0,1fr))}
.home-recommended ul.products.columns-6{grid-template-columns:repeat(6,minmax(0,1fr))}
.product-card{padding:9px;border-color:#e8e9ef;border-radius:10px;min-width:0}
.product-card__media{margin-bottom:8px}
.product-card__title{font-size:12px;min-height:3.9em}
.product-card__price{font-size:14px}
.product-card__actions .button,.product-card__actions .btn,.product-card .add_to_cart_button,.product-card .product_type_simple{font-size:11px!important;padding:7px 8px!important}
.product-card__buynow{font-size:11px;padding:6px 8px}
.product-card__wish{width:28px;height:28px}
.promo-band__link img{max-height:330px;object-fit:cover}

.shop-shell{display:grid;grid-template-columns:250px minmax(0,1fr);gap:18px;align-items:start}
.shop-filters{background:#fff;border:1px solid var(--line);border-radius:10px;overflow:hidden;position:sticky;top:56px}
.shop-filters summary{cursor:pointer;padding:13px 15px;font-weight:800;border-bottom:1px solid var(--line);list-style:none}
.shop-filters__body{padding:14px}
.shop-filter-search{display:flex;margin-bottom:18px}
.shop-filter-search input{min-width:0;width:100%;border:1px solid var(--line);border-radius:6px 0 0 6px;padding:9px}
.shop-filter-search button{border:0;background:var(--blue);color:#fff;border-radius:0 6px 6px 0;padding:0 10px;font-size:11px;font-weight:700}
.shop-filters h2{font-size:14px;margin:0 0 10px}
.shop-filter-cats a{display:flex;justify-content:space-between;padding:8px 0;border-bottom:1px solid #eef0f4;font-size:12px}
.shop-filter-cats small{color:var(--muted)}
.shop-filter-reset{display:inline-block;margin-top:12px;color:var(--blue);font-weight:700;font-size:12px}
.shop-results{min-width:0}
.shop-results ul.products.columns-5{grid-template-columns:repeat(5,minmax(0,1fr))}
.single-product__category{color:var(--purple);font-size:12px;font-weight:800;text-transform:uppercase;letter-spacing:.05em;margin-bottom:8px}
.single-wishlist{border:1px solid var(--line);background:#fff;border-radius:6px;padding:9px 12px;font-weight:700;color:#64748b;cursor:pointer}
.single-wishlist.is-active{color:#e11d48;border-color:#fecdd3}
.single-product .product{grid-template-columns:minmax(420px,.95fr) minmax(450px,1.05fr);padding:26px;gap:38px}
.single-product .product>.woocommerce-product-gallery{grid-column:1;grid-row:1;float:none!important;width:100%!important}
.single-product .product>.summary{grid-column:2;grid-row:1;float:none!important;width:100%!important}
.single-product .product>.woocommerce-tabs{grid-column:1/-1;grid-row:2}
.single-product .product>.related,.single-product .product>.upsells{grid-column:1/-1}
.woocommerce div.product .woocommerce-product-gallery__image{background:#f8f9fc;border-radius:10px;overflow:hidden}
.woocommerce div.product .woocommerce-product-gallery__image img{width:100%;object-fit:contain}
.woocommerce-product-gallery__wrapper{display:flex;flex-wrap:wrap;gap:8px}
.woocommerce-product-gallery__wrapper>.woocommerce-product-gallery__image:first-child{flex:0 0 100%}
.woocommerce-product-gallery__wrapper>.woocommerce-product-gallery__image:not(:first-child){flex:0 0 76px;width:76px!important;height:76px;border:1px solid var(--line);cursor:pointer;opacity:.76}
.woocommerce-product-gallery__wrapper>.woocommerce-product-gallery__image:not(:first-child):hover{opacity:1;border-color:var(--blue)}
.woocommerce-product-gallery__wrapper>.woocommerce-product-gallery__image:not(:first-child) img{width:76px!important;height:76px!important;object-fit:cover}
.spec-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:8px;margin:16px 0;padding:0;list-style:none}
.spec-grid__item{display:flex;align-items:center;gap:8px;background:#f8fafc;border:1px solid var(--line);border-radius:7px;padding:9px}
.spec-grid__label,.spec-grid__value{display:block}.spec-grid__label{font-size:10px;color:var(--muted);text-transform:uppercase}.spec-grid__value{font-size:12px;font-weight:700}
.trust-list{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:7px;margin:14px 0;padding:12px;background:#f8fafc;border:1px solid var(--line);border-radius:8px;list-style:none}
.trust-list__item{display:flex;align-items:center;gap:7px;font-size:11px}
.woocommerce-tabs{background:#fff;border:1px solid var(--line);border-radius:10px;padding:20px;margin-top:24px}
.woocommerce div.product .woocommerce-tabs ul.tabs{display:flex;flex-wrap:wrap;gap:8px;padding:0!important}
.woocommerce div.product .woocommerce-tabs ul.tabs li{border:1px solid var(--line)!important;border-radius:6px!important;background:#f8fafc!important;margin:0!important}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active{background:var(--navy)!important;color:#fff!important}
.woocommerce div.product .woocommerce-tabs ul.tabs::before{display:none!important}
.woocommerce-cart .cart-collaterals{display:grid;grid-template-columns:minmax(0,1fr) 420px;gap:24px}
.woocommerce-cart .cart_totals{width:auto!important;float:none!important;background:#f8fafc;border:1px solid var(--line);border-radius:10px;padding:18px}
.woocommerce-checkout form.checkout{display:grid;grid-template-columns:minmax(0,1fr) 470px;gap:28px}
.woocommerce-checkout #customer_details,.woocommerce-checkout #order_review_heading,.woocommerce-checkout #order_review{width:auto!important;float:none!important}
.woocommerce-checkout #order_review_heading,.woocommerce-checkout #order_review{grid-column:2}
.woocommerce-checkout #customer_details{grid-row:1/3}
.woocommerce-checkout #order_review{background:#f8fafc;border:1px solid var(--line);border-radius:10px;padding:18px}
.mobile-bottom-nav{display:none}

@media (max-width:1700px){
  :root{--container:1400px}
  .home-hero-store__grid{grid-template-columns:560fr 330fr 480fr;grid-template-rows:360px 148px;gap:16px}
  .home-hero-store__main{height:524px;max-height:524px}
  .home-hero-store__offer{height:360px}
  .home-hero-store__cats{height:360px}
  .best-pick{height:148px}
  .hero-slide__title{font-size:38px}
  .hot-cats__icon{width:78px;height:78px}.hot-cats__icon img{width:64px;height:64px}
}

@media (max-width:1100px){
  .header-main__inner{grid-template-columns:170px minmax(300px,1fr) 190px 105px}
  .header-hotline__mail{display:none}
  .home-hero-store__grid{grid-template-columns:1.15fr .85fr;grid-template-rows:auto auto auto;gap:14px}
  .home-hero-store__main{grid-column:1;grid-row:1;height:360px;max-height:none}
  .home-hero-store__offer{grid-column:2;grid-row:1;height:360px}
  .home-hero-store__cats{grid-column:1/-1;grid-row:2;height:auto}
  .best-pick{grid-column:1/-1;grid-row:3;height:auto}
  .hero-slide__title{font-size:32px}
  .hot-cats{height:auto}
  .home-featured__main ul.products.columns-5,.home-recommended ul.products.columns-6{grid-template-columns:repeat(4,minmax(0,1fr))}
  .shop-results ul.products.columns-5{grid-template-columns:repeat(3,minmax(0,1fr))}
}

@media (max-width:900px){
  .header-top{display:none}
  .header-main__inner{grid-template-columns:44px 1fr 44px;grid-template-areas:"burger logo empty" "search search search";gap:8px;min-height:96px;padding:8px 0}
  .header-burger{grid-area:burger;display:flex;border:0}
  .site-logo{grid-area:logo;justify-self:center}.site-logo img{width:145px}
  .header-search{grid-area:search;height:40px}.header-search__btn{height:36px;width:36px}
  .header-hotline,.header-cart{display:none}
  .header-catbar{height:7px;min-height:7px;position:static}.header-catbar__inner{min-height:7px}.header-catbar__utils{display:none}
  .home-hero-store{padding-top:16px}
  .home-hero-store__grid{grid-template-columns:1fr 1fr;grid-template-rows:auto}
  .home-hero-store__main{grid-column:1;grid-row:1;height:300px}.home-hero-store__offer{grid-column:2;grid-row:1;height:300px}
  .home-hero-store__cats{grid-column:1/-1;grid-row:2;height:auto}
  .best-pick{grid-column:1/-1;grid-row:3;height:auto}
  .hero-slide{padding:24px 20px}.hero-slide__title{font-size:26px}.hero-slide__copy{max-width:58%}
  .hero-slide__tile{width:64px;height:64px;font-size:24px;border-radius:16px}
  .hot-cats{grid-template-columns:repeat(4,1fr)}
  .benefit-strip{border-radius:16px}
  .home-featured__layout{grid-template-columns:1fr}
  .home-featured__main ul.products.columns-5,.home-recommended ul.products.columns-6{grid-template-columns:repeat(3,minmax(0,1fr))}
  .shop-shell{grid-template-columns:1fr}.shop-filters{position:static}.shop-filters:not([open]) .shop-filters__body{display:none}
  .shop-results ul.products.columns-5{grid-template-columns:repeat(3,minmax(0,1fr))}
  .single-product .product{grid-template-columns:1fr}
  .single-product .product>.woocommerce-product-gallery,.single-product .product>.summary,.single-product .product>.woocommerce-tabs{grid-column:1;grid-row:auto}
  .woocommerce-checkout form.checkout{grid-template-columns:1fr}.woocommerce-checkout #customer_details,.woocommerce-checkout #order_review_heading,.woocommerce-checkout #order_review{grid-column:1;grid-row:auto}
}

@media (max-width:640px){
  body{padding-bottom:58px}
  .container{width:calc(100% - 16px)}
  .home-hero-store__grid{display:grid;grid-template-columns:1fr;gap:12px}
  .home-hero-store__main{grid-column:1;grid-row:1;height:280px}.home-hero-store__offer{grid-column:1;grid-row:2;height:280px}
  .home-hero-store__cats{grid-column:1;grid-row:3;padding:14px 12px;overflow:hidden;height:auto}
  .best-pick{grid-column:1;grid-row:4;width:100%;max-width:100%;overflow:clip;contain:layout paint;height:auto}
  .best-pick__list{max-width:100%;overflow-x:auto;overflow-y:hidden;display:flex}
  .hero-slide__copy{max-width:70%}.hero-slide__title{font-size:24px}.hero-slide__eyebrow{font-size:13px}
  .hero-slide__art{width:42%;height:48%}
  .hero-slide__tile{width:52px;height:52px;font-size:20px;border-radius:14px}
  .special-offer__title{font-size:22px}.special-offer__media{max-height:52%}
  .hot-cats{display:grid;grid-auto-flow:column;grid-template-columns:none;grid-template-rows:repeat(2,120px);grid-auto-columns:120px;overflow-x:auto;scroll-snap-type:x mandatory;gap:10px;height:auto}
  .hot-cats li{scroll-snap-align:start}.hot-cats__icon{width:76px;height:76px}.hot-cats__icon img{width:60px;height:60px}
  .best-pick__list{display:flex;overflow-x:auto;gap:8px;scroll-snap-type:x mandatory}
  .best-pick__list li{min-width:230px;scroll-snap-align:start}
  .benefit-strip{width:calc(100% - 16px);border-radius:16px;margin-top:14px}
  .benefit-strip__inner{display:flex;overflow-x:auto;padding:16px 8px}.benefit-strip__item{min-width:200px}
  .home-sidebar{grid-template-columns:1fr}.home-sidebar__promo{display:none}
  .home-featured__main{padding:12px}
  .home-featured__main ul.products.columns-5,.home-recommended ul.products.columns-6,.shop-results ul.products.columns-5{grid-template-columns:repeat(2,minmax(0,1fr))}
  .product-card__title{font-size:11px}.product-card__price{font-size:13px}
  .shop-by-cats__list{display:flex;overflow-x:auto}.shop-by-cats__list li{min-width:95px}
  .promo-trio__card img{height:210px}
  .shop-toolbar{align-items:flex-start;flex-direction:column}
  .shop-filters{order:-1}
  .woocommerce-cart .cart-collaterals{grid-template-columns:1fr}
  .mobile-bottom-nav{position:fixed;left:0;right:0;bottom:0;height:58px;background:#fff;border-top:1px solid var(--line);display:grid;grid-template-columns:repeat(3,1fr);z-index:70;box-shadow:0 -5px 20px rgba(15,23,42,.08)}
  .mobile-bottom-nav a,.mobile-bottom-nav button{position:relative;border:0;background:#fff;color:var(--text);display:flex;flex-direction:column;align-items:center;justify-content:center;gap:1px;font-size:18px}
  .mobile-bottom-nav small{font-size:10px}.mobile-bottom-nav b{position:absolute;top:5px;right:calc(50% - 20px);background:var(--purple);color:#fff;border-radius:999px;min-width:15px;height:15px;font-size:9px;display:grid;place-items:center}
}

