/* =========================================================
   LED Strip Studio – hlavný stylesheet
   ========================================================= */

/* ---------- 1. Premenné ---------- */
:root{
  --lss-red:#ff3131;
  --lss-red-dark:#e31f1f;
  --lss-black:#090909;
  --lss-ink:#131313;
  --lss-body:#3d3d44;
  --lss-muted:#6b6b6b; /* 4,5:1 na kartách #f0f0f0 (WCAG AA) */
  --lss-line:#e6e6e9;
  --lss-card:#f0f0f0;
  --lss-card-hover:#e9e9e9;
  --lss-white:#fff;
  --lss-star:#f9ae0e;
  --lss-blue:#0077ff;
  --lss-radius:18px;
  --lss-radius-sm:10px;
  --lss-shadow:0 2px 10px rgba(10,10,10,.06);
  --lss-shadow-lg:0 14px 40px rgba(10,10,10,.14);
  --lss-container:1444px;
  --lss-gap:24px;
  --lss-font:'Poppins','Helvetica Neue',Helvetica,Arial,-apple-system,BlinkMacSystemFont,sans-serif;
  --lss-header-h:82px;
}

/* ---------- 2. Reset ---------- */
*,*::before,*::after{box-sizing:border-box;}
html{-webkit-text-size-adjust:100%;scroll-behavior:smooth;}
body{
  margin:0;
  font-family:var(--lss-font);
  font-size:15px;
  line-height:1.6;
  color:var(--lss-body);
  background:var(--lss-white);
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;height:auto;display:block;}
a{color:inherit;text-decoration:none;}
button{font:inherit;cursor:pointer;border:0;background:none;color:inherit;}
h1,h2,h3,h4,h5,h6{margin:0 0 .5em;color:var(--lss-ink);font-weight:800;line-height:1.2;}
p{margin:0 0 1em;}
ul,ol{margin:0;padding:0;}
:focus-visible{outline:2px solid var(--lss-red);outline-offset:2px;}
.screen-reader-text{
  position:absolute!important;width:1px;height:1px;overflow:hidden;
  clip:rect(1px,1px,1px,1px);white-space:nowrap;
}
.skip-link{
  position:absolute;left:-9999px;top:0;z-index:9999;background:#000;color:#fff;padding:10px 18px;
}
.skip-link:focus{left:8px;top:8px;}

/* ---------- 3. Layout ---------- */
.lss-container{
  width:100%;max-width:var(--lss-container);
  margin-inline:auto;padding:0 32px;
}
.lss-section{margin-block:46px;}
.lss-section--tight{margin-block:30px;}
.lss-section__head{
  display:flex;align-items:center;justify-content:space-between;
  gap:16px;margin-bottom:16px;
}
.lss-section__title{
  font-size:17px;font-weight:800;letter-spacing:.01em;
  color:var(--lss-ink);margin:0;
}
.lss-section__link{
  font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:.08em;
  color:var(--lss-muted);display:inline-flex;align-items:center;gap:6px;
  transition:color .2s;
}
.lss-section__link:hover{color:var(--lss-red);}

/* ---------- 4. Tlačidlá ---------- */
.lss-btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  padding:11px 22px;border-radius:999px;
  font-size:12px;font-weight:700;letter-spacing:.02em;
  white-space:nowrap;
  transition:transform .18s ease,background .2s ease,color .2s ease,box-shadow .2s ease;
}
.lss-btn:hover{transform:translateY(-1px);}
.lss-btn--red{background:var(--lss-red);color:#fff;box-shadow:0 6px 18px rgba(238,49,36,.28);}
.lss-btn--red:hover{background:var(--lss-red-dark);color:#fff;}
.lss-btn--black{background:var(--lss-black);color:#fff;}
.lss-btn--black:hover{background:#26262b;color:#fff;}
.lss-btn--white{background:#fff;color:var(--lss-ink);}
.lss-btn--white:hover{background:#f1f1f1;}
.lss-btn--outline{border:1.5px solid var(--lss-ink);color:var(--lss-ink);}
.lss-btn--outline:hover{background:var(--lss-ink);color:#fff;}
.lss-btn--sm{padding:8px 16px;font-size:11px;}
.lss-btn--block{width:100%;}
.lss-btn.is-loading{opacity:.6;pointer-events:none;}
.lss-btn.is-added::after{content:'\2713';font-size:13px;}

/* ---------- 5. Top bar ---------- */
.lss-topbar{
  background:var(--lss-black);color:#cfcfd4;
  font-size:11px;letter-spacing:.04em;
}
.lss-topbar__inner{
  display:flex;align-items:center;justify-content:space-between;
  gap:16px;min-height:34px;
}
.lss-topbar__msg{display:flex;align-items:center;gap:8px;font-weight:500;}
.lss-topbar__links{display:flex;align-items:center;gap:18px;list-style:none;}
.lss-topbar__links a{transition:color .2s;}
.lss-topbar__links a:hover{color:#fff;}

/* ---------- 6. Hlavička ---------- */
.lss-header{
  background:#fff;border-bottom:1px solid var(--lss-line);
  position:sticky;top:0;z-index:200;
}
.lss-header__inner{
  display:flex;align-items:center;justify-content:space-between;
  gap:24px;min-height:var(--lss-header-h);
}
.lss-logo{display:flex;align-items:center;gap:10px;}
.lss-logo img{max-height:34px;width:auto;}
.lss-logo__mark{flex:none;}
.lss-logo__text{
  font-size:17px;font-weight:900;letter-spacing:.06em;
  text-transform:uppercase;color:var(--lss-ink);line-height:1;
}
.lss-nav{margin-left:auto;}
.lss-nav ul{list-style:none;display:flex;align-items:center;gap:26px;}
.lss-nav li{position:relative;}
.lss-nav a{
  font-size:13.5px;font-weight:500;color:var(--lss-ink);
  padding:8px 0;display:inline-block;transition:color .2s;
}
.lss-nav a:hover,
.lss-nav .current-menu-item > a{color:var(--lss-red);}
.lss-nav .sub-menu{
  position:absolute;top:100%;left:0;min-width:210px;
  background:#fff;border:1px solid var(--lss-line);border-radius:var(--lss-radius-sm);
  box-shadow:var(--lss-shadow-lg);padding:8px;display:block;
  opacity:0;visibility:hidden;transform:translateY(6px);
  transition:opacity .18s,transform .18s,visibility .18s;
}
.lss-nav li:hover > .sub-menu,
.lss-nav li:focus-within > .sub-menu{opacity:1;visibility:visible;transform:translateY(0);}
.lss-nav .sub-menu a{display:block;padding:8px 12px;border-radius:7px;font-size:13px;}
.lss-nav .sub-menu a:hover{background:var(--lss-card);}

.lss-header__actions{display:flex;align-items:center;gap:6px;}
.lss-iconbtn{
  width:38px;height:38px;border-radius:999px;
  display:inline-flex;align-items:center;justify-content:center;
  color:var(--lss-ink);transition:background .2s,color .2s;position:relative;
}
.lss-iconbtn:hover{background:var(--lss-card);color:var(--lss-red);}
.lss-cart-count{
  position:absolute;top:2px;right:2px;min-width:17px;height:17px;padding:0 4px;
  border-radius:999px;background:var(--lss-red);color:#fff;
  font-size:10px;font-weight:700;line-height:17px;text-align:center;
}
/* prihlásený používateľ – malá zelená bodka pri panáčikovi */
.lss-account-link.is-logged-in::after{
  content:'';position:absolute;top:6px;right:6px;width:8px;height:8px;border-radius:999px;
  background:#12a150;border:2px solid #fff;
}
.lss-burger{display:none;}

/* mobilné menu */
.lss-mobile-nav{
  position:fixed;inset:0 0 0 auto;width:min(320px,86vw);background:#fff;
  z-index:400;transform:translateX(100%);transition:transform .3s ease;
  padding:22px;overflow-y:auto;box-shadow:var(--lss-shadow-lg);
}
.lss-mobile-nav.is-open{transform:translateX(0);}
.lss-mobile-nav ul{list-style:none;}
.lss-mobile-nav a{display:block;padding:12px 0;border-bottom:1px solid var(--lss-line);font-weight:600;font-size:15px;}
.lss-mobile-nav .sub-menu a{padding-left:14px;font-weight:400;font-size:14px;color:var(--lss-body);}
.lss-mobile-nav__close{margin-bottom:10px;}
.lss-overlay{
  position:fixed;inset:0;background:rgba(10,10,10,.45);z-index:350;
  opacity:0;visibility:hidden;transition:opacity .3s,visibility .3s;
}
.lss-overlay.is-open{opacity:1;visibility:visible;}

/* ---------- 7. Hero slider ---------- */

/* Voliteľný obrázok nad nadpisom (napr. fotka produktu).
   Šírka sa udáva v % šírky banneru (cqw), výška je zastropovaná,
   aby sa obsah zmestil aj do nízkeho banneru. */

/* Strop výšky patrí na obrázok – percentá na ňom by sa nemali voči čomu
   vypočítať (rodič nemá pevnú výšku) a obrázok by pretiekol z banneru. */

/* Umiestnenie obsahu v banneri. */

.lss-btn--ghost{border:1.5px solid rgba(255,255,255,.7);color:#fff;}
.lss-btn--ghost:hover{background:#fff;color:var(--lss-ink);}

/* ---------- 8. Trust bar ---------- */

/* ---------- 9. Carousel (kategórie) ---------- */

.lss-cat{
  flex:0 0 calc((100% - (var(--lss-cat-per-view,6) - 1) * var(--lss-gap)) / var(--lss-cat-per-view,6));
  scroll-snap-align:start;
  background:var(--lss-card);border-radius:var(--lss-radius);
  padding:14px 14px 16px;transition:background .22s,transform .22s;
}
.lss-cat:hover{background:var(--lss-card-hover);transform:translateY(-3px);}
.lss-cat__media{
  aspect-ratio:1/.86;display:flex;align-items:center;justify-content:center;
  margin-bottom:14px;overflow:hidden;border-radius:var(--lss-radius-sm);
}
.lss-cat__media img{
  width:100%;height:100%;object-fit:contain;object-position:center;
  mix-blend-mode:var(--lss-media-blend,multiply);transition:transform .3s;
}
.lss-cat:hover .lss-cat__media img{transform:scale(1.05);}
.lss-cat__name{
  font-size:12.5px;font-weight:800;text-transform:uppercase;letter-spacing:.02em;
  color:var(--lss-ink);margin:0 0 4px;
}
.lss-cat__cta{
  font-size:9.5px;font-weight:700;letter-spacing:.09em;text-transform:uppercase;
  color:var(--lss-muted);display:inline-flex;align-items:center;gap:5px;
}
.lss-cat:hover .lss-cat__cta{color:var(--lss-red);}

/* ---------- 10. Featured produkty ---------- */

/* ---------- 11. Badge ---------- */
.lss-badge{
  position:absolute;top:12px;left:12px;z-index:3;
  padding:3px 9px;border-radius:5px;
  font-size:8.5px;font-weight:800;letter-spacing:.08em;text-transform:uppercase;
  color:#fff;background:var(--lss-red);line-height:1.5;
}
.lss-badge--new{background:var(--lss-black);}
.lss-badge--value{background:var(--lss-blue);}
.lss-badge--sale{background:#12a150;}

/* ---------- 12. Hviezdičky ---------- */
.lss-stars{display:inline-flex;align-items:center;gap:1px;color:var(--lss-star);line-height:1;}
.lss-stars svg{width:11px;height:11px;}
.lss-stars .is-empty{color:#d8d8dd;}

/* ---------- 13. Produktový grid ---------- */
.lss-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:var(--lss-gap);}
.lss-grid--4{grid-template-columns:repeat(4,1fr);}
.lss-grid--3{grid-template-columns:repeat(3,1fr);}
.lss-grid--2{grid-template-columns:repeat(2,1fr);}
.lss-grid--6{grid-template-columns:repeat(6,1fr);}

.lss-pcard{
  position:relative;display:flex;flex-direction:column;
  background:var(--lss-card);border-radius:var(--lss-radius);
  padding:16px 16px 18px;transition:background .22s,transform .22s,box-shadow .22s;
}
.lss-pcard:hover{background:var(--lss-card-hover);transform:translateY(-4px);box-shadow:var(--lss-shadow);}
.lss-pcard__media{
  aspect-ratio:1/.78;display:flex;align-items:center;justify-content:center;
  margin-bottom:14px;overflow:hidden;
}
.lss-pcard__media img{max-height:100%;width:auto;object-fit:contain;mix-blend-mode:multiply;transition:transform .3s;}
.lss-pcard:hover .lss-pcard__media img{transform:scale(1.06);}
.lss-pcard__title{
  font-size:12.5px;font-weight:800;text-transform:uppercase;
  color:var(--lss-ink);margin:0 0 3px;line-height:1.25;min-height:2.5em;
}
.lss-pcard__price{font-size:13.5px;font-weight:800;color:var(--lss-ink);margin-bottom:3px;}
.lss-pcard__price del{color:var(--lss-muted);font-weight:500;font-size:11.5px;margin-right:5px;}
.lss-pcard__price ins{text-decoration:none;color:var(--lss-red);}
.lss-pcard__excerpt{
  font-size:9.5px;line-height:1.5;color:var(--lss-muted);margin:6px 0 14px;
  display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;
}
/* Rezervované miesto na popis, aby karty bez neho nemali tlačidlo vyššie. */
.lss-pcard__excerpt{min-height:calc(3 * 17px);}
.lss-pcard__excerpt:empty{margin-top:6px;}
.lss-pcard__actions{margin-top:auto;display:flex;align-items:center;gap:8px;}
.lss-pcard__actions .lss-btn{flex:1;}

/* ---------- 14. Promo bannery ---------- */
.lss-promos{display:grid;grid-template-columns:1.15fr 1fr;gap:var(--lss-gap);}
.lss-promo{
  position:relative;border-radius:var(--lss-radius);overflow:hidden;
  min-height:190px;display:flex;align-items:center;
  padding:26px 30px;color:#fff;isolation:isolate;
}
.lss-promo--red{background:var(--lss-red);}
.lss-promo--black{background:#0b0b0d;}
.lss-promo__content{position:relative;z-index:2;max-width:58%;}
.lss-promo__title{
  color:#fff;font-size:clamp(20px,2vw,30px);font-weight:900;margin:0 0 8px;line-height:1.05;
}
.lss-promo__text{font-size:11.5px;line-height:1.55;color:rgba(255,255,255,.86);margin:0 0 16px;max-width:300px;}
.lss-promo__media{
  position:absolute;right:0;top:0;bottom:0;width:52%;z-index:1;
  display:flex;align-items:center;justify-content:flex-end;
}
.lss-promo__media img{height:100%;width:100%;object-fit:cover;object-position:center;}
.lss-promo--red .lss-promo__media img{object-fit:contain;object-position:right center;}

/* ---------- 15. Newsletter ---------- */
.lss-newsletter{
  background:var(--lss-card);border-radius:var(--lss-radius);
  padding:34px;display:grid;grid-template-columns:1fr auto;gap:24px;align-items:center;
}
.lss-newsletter h3{font-size:20px;margin:0 0 4px;}
.lss-newsletter p{font-size:12.5px;color:var(--lss-muted);margin:0;}
.lss-newsletter form{display:flex;gap:8px;align-items:center;}
.lss-newsletter form .lss-btn{height:44px;padding:0 26px;}
.lss-newsletter__text{align-self:center;}
.lss-newsletter__msg,
.lss-newsletter__success{grid-column:1/-1;font-size:12.5px;font-weight:600;margin:0;}
.lss-newsletter__success{color:#12a150;}
/* Poznámka patrí k textu vľavo, nie do samostatného riadka pod formulárom. */
.lss-newsletter p.lss-newsletter__fine-print{font-size:11px;line-height:1.45;color:var(--lss-muted);margin:10px 0 0;}
/* Skrytý rám na odoslanie do externej služby (Brevo a pod.). */
.lss-newsletter__frame{display:none;width:0;height:0;border:0;}
.lss-newsletter__msg:empty{display:none;}
.lss-newsletter__msg.is-success{color:#12a150;}
.lss-newsletter__msg.is-error{color:var(--lss-red);}
.lss-newsletter input[type=email]{
  min-width:260px;height:44px;padding:0 20px;border-radius:999px;border:1px solid var(--lss-line);
  background:#fff;font:inherit;font-size:13px;
}

/* ---------- 16. Pätička ---------- */
.lss-footer{background:var(--lss-black);color:#a9a9b2;margin-top:60px;padding:52px 0 0;font-size:12.5px;}
.lss-footer__cols{display:grid;grid-template-columns:1.6fr repeat(3,1fr);gap:34px;}
.lss-footer h4{color:#fff;font-size:12px;text-transform:uppercase;letter-spacing:.09em;margin:0 0 16px;}
.lss-footer ul{list-style:none;}
.lss-footer li{margin-bottom:9px;}
.lss-footer a{transition:color .2s;}
.lss-footer a:hover{color:#fff;}
.lss-footer__about p{font-size:12.5px;line-height:1.7;max-width:320px;color:#8d8d96;}
.lss-footer__logo{margin-bottom:16px;display:flex;align-items:center;gap:10px;}
.lss-footer__logo .lss-logo__text{color:#fff;}
.lss-footer__social{display:flex;gap:10px;margin-top:18px;}
.lss-footer__social a{
  width:34px;height:34px;border-radius:999px;background:rgba(255,255,255,.08);
  display:flex;align-items:center;justify-content:center;color:#fff;transition:background .2s;
}
.lss-footer__social a:hover{background:var(--lss-red);}
.lss-footer__bottom{
  margin-top:40px;border-top:1px solid rgba(255,255,255,.1);
  padding:18px 0;display:flex;justify-content:space-between;gap:16px;
  font-size:11.5px;color:#8b8b95;flex-wrap:wrap;
}

/* ---------- 17. Vnútorné stránky ---------- */
.lss-page{margin-block:40px 60px;}
.lss-page__header{margin-bottom:28px;}
.lss-page__title{font-size:clamp(26px,3vw,38px);text-transform:uppercase;}
.lss-breadcrumb{font-size:11px;color:var(--lss-muted);margin-bottom:10px;}
.lss-breadcrumb a:hover{color:var(--lss-red);}
.lss-entry{max-width:820px;font-size:15px;color:var(--lss-body);}
.lss-entry h2{font-size:24px;margin-top:1.4em;}
.lss-entry h3{font-size:19px;margin-top:1.3em;}
.lss-entry img{border-radius:var(--lss-radius-sm);}
.lss-entry blockquote{
  border-left:3px solid var(--lss-red);margin:1.4em 0;padding:4px 0 4px 20px;
  font-size:17px;color:var(--lss-ink);
}
.lss-postcard{
  background:var(--lss-card);border-radius:var(--lss-radius);overflow:hidden;
  transition:transform .22s,box-shadow .22s;
}
.lss-postcard:hover{transform:translateY(-3px);box-shadow:var(--lss-shadow);}
.lss-postcard__media{aspect-ratio:16/10;overflow:hidden;background:#e9e9ec;}
.lss-postcard__media img{width:100%;height:100%;object-fit:cover;}
.lss-postcard__body{padding:18px;}
.lss-postcard__meta{font-size:10.5px;text-transform:uppercase;letter-spacing:.08em;color:var(--lss-muted);margin-bottom:6px;}
.lss-postcard__title{font-size:15px;margin:0 0 8px;}
.lss-pagination{display:flex;gap:8px;justify-content:center;margin-top:36px;}
.lss-pagination .page-numbers{
  min-width:38px;height:38px;padding:0 12px;border-radius:999px;background:var(--lss-card);
  display:inline-flex;align-items:center;justify-content:center;font-size:13px;font-weight:600;color:var(--lss-ink);
}
.lss-pagination .page-numbers.current,
.lss-pagination .page-numbers:hover{background:var(--lss-black);color:#fff;}

/* ---------- 18. WooCommerce ---------- */
.woocommerce-notices-wrapper{margin-top:18px;}
/* Hláška typu „produkt bol pridaný do košíka“.
   WooCommerce ju stavia na `padding-left` a plávajúce tlačidlo – prepíname
   na flex, aby text aj tlačidlo sedeli na jednej osi. */
.woocommerce .woocommerce-message,
.woocommerce .woocommerce-info,
.woocommerce .woocommerce-error{
  display:flex;align-items:center;gap:14px;
  border-top-color:var(--lss-red);border-radius:var(--lss-radius-sm);
  background:var(--lss-card);
  padding:16px 20px 16px 46px;margin-bottom:22px;
  font-size:14px;font-weight:400;line-height:1.45;color:var(--lss-ink);
}
.woocommerce .woocommerce-message::before,
.woocommerce .woocommerce-info::before,
.woocommerce .woocommerce-error::before{
  color:var(--lss-red);top:50%;left:18px;transform:translateY(-50%);margin:0;
}
.woocommerce .woocommerce-message .button,
.woocommerce .woocommerce-info .button,
.woocommerce .woocommerce-error .button{
  margin-left:auto;float:none;flex:none;
  height:38px;padding:0 22px;font-size:12.5px;font-weight:600;
}
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce a.button.alt,
.woocommerce button.button.alt{
  background:var(--lss-black);color:#fff;border-radius:999px;
  padding:12px 24px;font-size:12px;font-weight:700;
}
.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce a.button.alt:hover{background:var(--lss-red);color:#fff;}
.woocommerce div.product .price,
.woocommerce ul.products li.product .price{color:var(--lss-ink);font-weight:800;}
.woocommerce span.onsale{
  background:var(--lss-red);border-radius:5px;font-size:10px;font-weight:800;
  letter-spacing:.06em;min-height:auto;min-width:auto;padding:4px 10px;line-height:1.4;
}
.woocommerce ul.products{display:grid;grid-template-columns:repeat(5,1fr);gap:var(--lss-gap);margin:0;}
.lss-shop-layout:not(.lss-shop-layout--full) .woocommerce ul.products,
.woocommerce .lss-shop-layout:not(.lss-shop-layout--full) ul.products{grid-template-columns:repeat(4,1fr);}
.woocommerce ul.products::before,
.woocommerce ul.products::after{display:none;}
.woocommerce ul.products li.product{width:100%!important;margin:0!important;float:none!important;display:flex;}
/* Karta vyplní celú bunku – bez toho sa produkt bez popisu „zdvihne“. */
.woocommerce ul.products li.product > .lss-pcard{width:100%;height:100%;}
.woocommerce-product-gallery__image img{border-radius:var(--lss-radius-sm);}
.woocommerce div.product .product_title{text-transform:uppercase;font-size:clamp(22px,2.6vw,32px);}
.lss-shop-toolbar{
  display:flex;align-items:center;justify-content:space-between;gap:16px;
  margin-bottom:22px;flex-wrap:wrap;
}
.lss-shop-layout{display:grid;grid-template-columns:250px 1fr;gap:40px;align-items:start;}
.lss-shop-layout--full{grid-template-columns:1fr;}
.lss-sidebar .widget{margin-bottom:30px;}
.lss-sidebar .widget-title{font-size:12px;text-transform:uppercase;letter-spacing:.08em;margin-bottom:12px;}
.lss-sidebar ul{list-style:none;font-size:13px;}
.lss-sidebar li{padding:6px 0;border-bottom:1px solid var(--lss-line);}

/* ---------- 19. Reveal ---------- */
.lss-reveal{opacity:0;transform:translateY(16px);}
.lss-reveal.is-visible{opacity:1;transform:none;transition:opacity .6s ease,transform .6s ease;}
@media (prefers-reduced-motion:reduce){
  .lss-reveal{opacity:1;transform:none;}
  *{animation-duration:.001ms!important;transition-duration:.001ms!important;}
}

/* ---------- 20. Responzivita ---------- */
@media (max-width:1180px){
  .lss-grid{grid-template-columns:repeat(4,1fr);}
  
}
@media (max-width:1024px){
  .lss-nav{display:none;}
  .lss-burger{display:inline-flex;}
  .lss-grid,.lss-grid--6,.lss-grid--4,.woocommerce ul.products{grid-template-columns:repeat(3,1fr);}
  
  
  
  
  .lss-shop-layout{grid-template-columns:1fr;}
  .lss-footer__cols{grid-template-columns:1fr 1fr;}
}
@media (max-width:820px){
  
  .lss-promos{grid-template-columns:1fr;}
  .lss-promo__content{max-width:64%;}
  .lss-newsletter{grid-template-columns:1fr;}
  .lss-newsletter input[type=email]{min-width:0;flex:1;}
}
@media (max-width:680px){
  .lss-container{padding:0 16px;}
  .lss-grid,.lss-grid--6,.lss-grid--4,.lss-grid--3,.woocommerce ul.products{grid-template-columns:repeat(2,1fr);gap:14px;}
  
  
  .lss-topbar__links{display:none;}
  
  
  
  
  
  
  
  .lss-footer__cols{grid-template-columns:1fr;gap:26px;}
  .lss-pcard__title{min-height:0;}
}
@media (max-width:420px){
  .lss-grid,.lss-grid--6,.lss-grid--4,.lss-grid--3,.lss-grid--2,.woocommerce ul.products{grid-template-columns:1fr;}
  .lss-promo__content{max-width:100%;}
  .lss-promo__media{opacity:.25;width:100%;}
}

/* ---------- 21. Stránka produktu ---------- */
.woocommerce ul.products,.woocommerce div.product .woocommerce-tabs ul.tabs,.woocommerce div.product div.images .flex-control-thumbs{list-style:none;}
.woocommerce div.product.lss-product{
  display:grid;grid-template-columns:minmax(0,46fr) minmax(0,54fr);
  column-gap:64px;row-gap:56px;margin-top:40px;align-items:start;
}
.woocommerce div.product.lss-product div.images,
.woocommerce div.product.lss-product div.summary{width:100%;float:none;margin:0;}
.lss-product__gallery{position:relative;}
.lss-product__badge{top:0;left:0;}
.woocommerce-product-gallery__wrapper{margin:0;}
.woocommerce-product-gallery__image img{border-radius:0;background:#fff;}
.woocommerce-product-gallery__trigger{display:none;}
.woocommerce div.product div.images .flex-control-thumbs{
  display:flex;gap:14px;margin:34px 0 0;padding:0;list-style:none;
}
.woocommerce div.product div.images .flex-control-thumbs li{
  width:auto!important;flex:0 0 calc((100% - 42px) / 4);float:none;margin:0;
}
.woocommerce div.product div.images .flex-control-thumbs img{
  border-radius:14px;background:#dcdcdf;padding:14px;aspect-ratio:1;object-fit:contain;
  opacity:1;transition:background .2s,transform .2s;
}
.woocommerce div.product div.images .flex-control-thumbs img.flex-active,
.woocommerce div.product div.images .flex-control-thumbs img:hover{background:#cfcfd4;transform:translateY(-2px);}

/* odznaky pod galériou */
.lss-product__trust{
  display:flex;align-items:center;flex-wrap:wrap;
  gap:clamp(16px,3.6%,38px);margin-top:clamp(32px,5vw,68px);
  padding-left:clamp(0px,3%,40px);color:var(--lss-red);
}
/* WooCommerce má `.woocommerce img(height:auto)` – potrebujeme vyššiu špecificitu. */
.lss-product__trust .lss-product__trust-img{
  height:clamp(30px,3.2vw,48px);width:auto;max-width:100%;
}
.lss-product__trust-box{
  display:inline-flex;flex-direction:column;justify-content:center;
  border:2px solid var(--lss-red);border-radius:5px;padding:4px 9px;line-height:1.05;text-align:center;
  font-weight:800;letter-spacing:.06em;font-size:11px;
}
.lss-product__trust-box .l2{font-size:7px;font-weight:700;letter-spacing:.18em;margin-top:2px;}
.lss-product__trust-box.is-single{font-size:16px;padding:6px 11px;}

/* súhrn */
.lss-product__summary{padding-top:8px;}
.lss-product__crumbs{font-size:11.5px;color:var(--lss-red);margin-bottom:22px;}
.lss-product__crumbs a{color:var(--lss-red);}
.lss-product__crumbs a:hover{text-decoration:underline;}
.woocommerce div.product .lss-product__summary .product_title{
  font-size:clamp(26px,3vw,38px);font-weight:900;text-transform:uppercase;letter-spacing:.005em;margin:0 0 8px;line-height:1.1;
}
.lss-product__rating{display:flex;align-items:center;gap:14px;margin-bottom:38px;}
.lss-product__rating .lss-stars svg{width:20px;height:20px;}
.lss-product__rating-avg,.lss-product__rating-count{font-size:15px;font-weight:700;color:var(--lss-ink);}
.lss-product__rating-count{margin-left:8px;}
.woocommerce div.product .lss-product__summary .woocommerce-product-details__short-description{
  font-size:15.5px;line-height:1.6;color:#454550;margin-bottom:40px;
}
.woocommerce div.product .lss-product__summary .woocommerce-product-details__short-description p{margin:0 0 1.2em;}

/* varianty ako pilulky */
.woocommerce div.product form.cart table.variations{margin:0 0 30px;border:0;}
.woocommerce div.product form.cart table.variations tr{display:block;margin-bottom:18px;}
.woocommerce div.product form.cart table.variations th,
.woocommerce div.product form.cart table.variations td{
  display:block;padding:0;border:0;line-height:1.4;
  /* <th> je v prehliadači centrované – variant musí byť zarovnaný vľavo. */
  text-align:left;
}
.woocommerce div.product form.cart table.variations th.label{margin-bottom:12px;}
.woocommerce div.product form.cart table.variations label{font-size:16px;font-weight:700;color:var(--lss-ink);}
.lss-tip{
  display:inline-flex;align-items:center;justify-content:center;width:18px;height:18px;
  border:1.5px solid var(--lss-ink);border-radius:999px;font-size:11px;font-weight:700;font-style:normal;
  margin-left:6px;vertical-align:1px;cursor:help;position:relative;
}
.lss-tip::after{
  content:attr(data-tip);position:absolute;left:50%;bottom:calc(100% + 8px);transform:translateX(-50%);
  background:var(--lss-ink);color:#fff;font-size:12px;font-weight:500;line-height:1.4;padding:8px 12px;border-radius:8px;
  width:max-content;max-width:260px;text-align:left;opacity:0;visibility:hidden;transition:opacity .15s;z-index:10;pointer-events:none;
}
.lss-tip:hover::after,.lss-tip:focus::after{opacity:1;visibility:visible;}
.lss-has-swatches select{display:none!important;}
.lss-swatches{display:flex;flex-wrap:wrap;gap:12px;}
.lss-swatch{
  min-width:150px;padding:10px 26px;border:1px solid #c9c9ce;border-radius:999px;background:#fff;
  font-size:15px;font-weight:500;text-transform:uppercase;color:var(--lss-ink);letter-spacing:.01em;
  transition:background .2s,color .2s,border-color .2s,transform .15s;
}
.lss-swatch:hover{border-color:var(--lss-ink);transform:translateY(-1px);}
.lss-swatch.is-active{background:var(--lss-red);border-color:var(--lss-red);color:#fff;}
.lss-swatch[disabled]{opacity:.35;cursor:not-allowed;text-decoration:line-through;}
.woocommerce div.product form.cart .reset_variations{font-size:11px;color:var(--lss-muted);margin-left:8px;}

/* cena */
.lss-product__price,
.woocommerce div.product .woocommerce-variation.single_variation{
  display:flex;align-items:baseline;gap:34px;flex-wrap:wrap;margin:0 0 42px;
}
.woocommerce div.product .lss-product__summary .price,
.woocommerce div.product .woocommerce-variation-price .price{
  font-size:clamp(30px,3.4vw,42px);font-weight:900;color:var(--lss-ink);line-height:1;margin:0;
}
.woocommerce div.product .lss-product__summary .price del{font-size:.5em;font-weight:500;color:var(--lss-muted);}
.woocommerce div.product .lss-product__summary .price ins{text-decoration:none;color:var(--lss-red);}
.lss-product__price-note,
.woocommerce div.product .woocommerce-variation-description{font-size:15px;color:#454550;margin:0;}
.woocommerce div.product .woocommerce-variation-description p{margin:0;}
.woocommerce div.product .woocommerce-variation-availability{width:100%;font-size:12px;}

/* množstvo + košík */
.woocommerce div.product form.cart{margin:0;}
.woocommerce div.product form.cart .woocommerce-variation-add-to-cart,
.woocommerce div.product form.cart.lss-simple-cart{display:flex;align-items:center;gap:20px;}
.lss-qty{
  display:inline-flex;align-items:center;border:1px solid #d3d3d8;border-radius:10px;height:54px;overflow:hidden;background:#fff;
}
.lss-qty__btn{
  width:38px;height:100%;display:inline-flex;align-items:center;justify-content:center;
  font-size:20px;color:#8a8a92;transition:color .2s,background .2s;
}
.lss-qty__btn:hover{color:var(--lss-ink);background:var(--lss-card);}
.woocommerce .lss-qty .quantity{margin:0;float:none;}
.woocommerce .lss-qty .quantity .qty{
  width:66px;height:52px;border:0;border-left:1px solid #e6e6e9;border-right:1px solid #e6e6e9;
  font:inherit;font-size:16px;font-weight:700;text-align:center;-moz-appearance:textfield;
}
.woocommerce .lss-qty .quantity .qty::-webkit-outer-spin-button,
.woocommerce .lss-qty .quantity .qty::-webkit-inner-spin-button{-webkit-appearance:none;margin:0;}
.woocommerce div.product form.cart .button.single_add_to_cart_button{
  flex:1;height:54px;border-radius:999px;background:var(--lss-red);color:#fff;
  font-size:18px;font-weight:600;padding:0 32px;white-space:nowrap;box-shadow:0 8px 22px rgba(238,49,36,.26);
  transition:background .2s,transform .15s;
}
.woocommerce div.product form.cart .button.single_add_to_cart_button:hover{background:var(--lss-red-dark);transform:translateY(-1px);}
.woocommerce div.product form.cart .button.single_add_to_cart_button.disabled{opacity:.5;}

/* expresné platby (Stripe / PayPal / WooPayments tlačidlá) */
.lss-product__express{display:flex;flex-direction:column;gap:10px;margin:22px 0 0 0;max-width:460px;}
.lss-product__express:empty{display:none;}
.lss-product__express > *,
.wc-stripe-payment-request-wrapper,
#wc-stripe-express-checkout-element,
.wcpay-express-checkout-wrapper,
.wcpay-payment-request-wrapper,
.ppcp-express-buttons-wrapper{width:100%;max-width:460px;margin-top:12px;}
.woocommerce div.product .lss-product__summary .product_meta{display:none;}

/* záložky */
.woocommerce div.product .lss-product__below{grid-column:1/-1;}
.woocommerce div.product .woocommerce-tabs{margin:20px 0 0;}
.woocommerce div.product .woocommerce-tabs ul.tabs{
  /* Zarovnané zľava – pri dvoch záložkách by ich space-between odtlačilo
     na opačné okraje. Oddeľuje ich medzera a tenká zvislá linka. */
  display:flex;justify-content:flex-start;flex-wrap:wrap;
  gap:0 40px;margin:0 0 40px;padding:0!important;overflow:visible;
  border-bottom:1px solid var(--lss-line);
}
.woocommerce div.product .woocommerce-tabs ul.tabs::before,
.woocommerce div.product .woocommerce-tabs ul.tabs::after,
.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after{display:none;}
.woocommerce div.product .woocommerce-tabs ul.tabs li{
  position:relative;background:none;border:0;border-radius:0;margin:0;padding:0;box-shadow:none;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li + li::before{
  content:'';position:absolute;left:-20px;top:50%;transform:translateY(-50%);
  width:1px;height:16px;background:var(--lss-line);
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a{
  display:block;padding:16px 2px;font-size:16px;font-weight:500;color:var(--lss-ink);
  border-bottom:2px solid transparent;margin-bottom:-1px;transition:color .2s,border-color .2s;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover{color:var(--lss-red);}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a{color:var(--lss-red);border-bottom-color:var(--lss-red);}
.woocommerce div.product .woocommerce-tabs .panel{
  margin:0;padding:0 0 0 0;font-size:15.5px;line-height:1.6;color:#454550;box-shadow:none;
}
.woocommerce div.product .woocommerce-tabs .panel > h2:first-child{display:none;}
.woocommerce div.product .woocommerce-tabs .panel ul{padding-left:22px;margin:0 0 1.4em;}
.woocommerce div.product .woocommerce-tabs .panel li{margin-bottom:8px;font-weight:700;color:var(--lss-ink);}
.woocommerce div.product .woocommerce-tabs .panel table.shop_attributes{border:0;font-size:14px;}
.woocommerce div.product .woocommerce-tabs .panel table.shop_attributes th,
.woocommerce div.product .woocommerce-tabs .panel table.shop_attributes td{border:0;border-bottom:1px solid var(--lss-line);padding:10px 12px;}
.woocommerce div.product .woocommerce-tabs .panel table.shop_attributes th{width:220px;color:var(--lss-ink);}

/* výzva na prihlásenie namiesto formulára recenzie */
.woocommerce #reviews .must-log-in{margin:0;}
.lss-review-login{
  display:flex;flex-direction:column;align-items:flex-start;gap:8px;
  background:var(--lss-card);border-radius:var(--lss-radius);padding:26px 28px;max-width:560px;
}
.lss-review-login strong{font-size:17px;color:var(--lss-ink);}
.lss-review-login span{font-size:14px;line-height:1.55;color:var(--lss-body);}
.lss-review-login .lss-btn{margin-top:8px;height:40px;padding:0 24px;font-size:13px;}

/* médiá pod záložkami */
.lss-product__media{
  margin:40px 0 0;border-radius:26px;overflow:hidden;background:#737373;aspect-ratio:16/7;
  display:flex;align-items:center;justify-content:center;
}
.lss-product__media iframe,.lss-product__media video,.lss-product__media img{width:100%;height:100%;object-fit:cover;border:0;display:block;}

/* súvisiace */
.woocommerce div.product .related.products,
.woocommerce div.product .upsells.products{margin-top:70px;}
.woocommerce div.product .related.products > h2,
.woocommerce div.product .upsells.products > h2{font-size:17px;font-weight:800;margin:0 0 16px;}
.woocommerce div.product .related ul.products,
.woocommerce div.product .upsells ul.products{grid-template-columns:repeat(4,1fr);}

/* recenzie */
.woocommerce #reviews #comments ol.commentlist li img.avatar{border-radius:999px;border:0;padding:0;background:none;width:44px;}
.woocommerce #reviews #comments ol.commentlist li .comment-text{border-radius:var(--lss-radius);border:0;background:var(--lss-card);margin-left:60px;}
.woocommerce #review_form #respond textarea,
.woocommerce #review_form #respond input[type=text],
.woocommerce #review_form #respond input[type=email]{border:1px solid var(--lss-line);border-radius:10px;padding:10px 14px;font:inherit;}
.woocommerce p.stars a{color:var(--lss-star);}

@media (max-width:1024px){
  .woocommerce div.product.lss-product{grid-template-columns:1fr;column-gap:0;row-gap:36px;}
  .lss-product__trust{margin-top:28px;gap:22px;}
  .woocommerce div.product .woocommerce-tabs ul.tabs{
    padding:0!important;gap:0 24px;flex-wrap:nowrap;overflow-x:auto;justify-content:flex-start;
  }
  .woocommerce div.product .woocommerce-tabs ul.tabs li + li::before{left:-12px;}
  .woocommerce div.product .woocommerce-tabs ul.tabs li a{white-space:nowrap;font-size:15px;}
  .woocommerce div.product .related ul.products,
  .woocommerce div.product .upsells ul.products{grid-template-columns:repeat(3,1fr);}
}
@media (max-width:680px){
  .woocommerce div.product form.cart .woocommerce-variation-add-to-cart,
  .woocommerce div.product form.cart.lss-simple-cart{flex-wrap:wrap;}
  .woocommerce div.product form.cart .button.single_add_to_cart_button{flex:1 1 100%;}
  .lss-swatch{min-width:0;flex:1;padding:10px 14px;font-size:13px;}
  .lss-product__media{border-radius:16px;aspect-ratio:16/9;}
  .woocommerce div.product .related ul.products,
  .woocommerce div.product .upsells ul.products{grid-template-columns:repeat(2,1fr);}
}

/* =========================================================
   22. Presné metriky podľa návrhu (1440 px) – prepisujú základné hodnoty vyššie
   ========================================================= */
.lss-topbar__inner{min-height:48px;}
.lss-header{border-bottom:0;}
.lss-logo img{max-height:30px;width:auto;}
.lss-footer__logo .lss-logo img{max-height:26px;}
.lss-logo--img .lss-logo__text{display:none;}
.lss-nav ul{gap:28px;}
.lss-nav a{font-size:16px;font-weight:600;letter-spacing:-.01em;}
.lss-header__actions .lss-iconbtn:not(.lss-burger){display:none;}
/* Ikony z pluginu (hľadanie, účet, košík) – hamburger sem nepatrí, ten
   riadi len šírka obrazovky (≤ 1024 px: tablet a mobil). */
body.lss-header-icons .lss-header__actions .lss-iconbtn:not(.lss-burger){display:inline-flex;}
.lss-header__actions .lss-burger{display:none;}
@media (max-width:1024px){
  .lss-header__actions .lss-burger,body.lss-header-icons .lss-header__actions .lss-burger{display:inline-flex;}
  .lss-nav{display:none;}
}

/* hero */

/* Zvolený pomer strán (napr. 16/9) má prednosť pred pevnou výškou. */

/* výhody */

/* sekcie */
.lss-section{margin-block:40px 0;}
.lss-section__head{margin-bottom:20px;}
.lss-section__title{font-size:20px;letter-spacing:-.01em;}
.lss-section__link{display:none;}
.lss-section__more{display:flex;justify-content:center;margin-top:30px;}
.lss-section__more .lss-btn{
  height:40px;padding:0 34px;font-size:14px;border-width:1.5px;letter-spacing:.01em;
}
.lss-section--categories{margin-block-start:44px;}
.lss-section--promos{margin-block-start:44px;}
.lss-section--promos + .lss-section{margin-block-start:60px;}
.lss-section--products.lss-section--noheading{margin-block-start:150px;}
.lss-section--newsletter{margin-block-start:80px;}

/* kategórie */

.lss-cat{
  flex:0 0 calc((100% - (var(--lss-cat-per-view,6) - 1) * 20px) / var(--lss-cat-per-view,6));
  padding:0 0 22px;border-radius:18px;overflow:hidden;
}
.lss-cat__media{aspect-ratio:202/190;margin:0 0 18px;border-radius:0;}
.lss-cat__media{display:block;padding:14px;aspect-ratio:auto;}
.lss-cat__media img{
  width:100%;height:auto;aspect-ratio:174/148;
  object-fit:var(--lss-card-fit,contain);object-position:center;
}
.lss-cat__name{font-size:19px;text-transform:none;letter-spacing:-.01em;margin:0 0 8px;padding:0 14px;}
.lss-cat__cta{font-size:11px;color:var(--lss-ink);letter-spacing:.06em;padding:0 14px;gap:10px;}
.lss-cat__cta svg{width:16px;height:16px;}

/* featured */

/* Tlačidlo sa prispôsobí šírke karty – pevná šírka by pri troch stĺpcoch
   na užšom monitore vytlačila ikonu košíka mimo kartu. */

/* Cena z rozsahu (650 € – 1 250 €) sa nesmie lámať uprostred čísla. */
.lss-pcard__price .amount{white-space:nowrap;}

/* štítky */
.lss-badge{border-radius:999px;padding:4px 14px;font-size:11px;letter-spacing:.02em;line-height:1.3;}

/* hviezdičky v mriežke */
.lss-pcard .lss-stars svg{width:16px;height:16px;}
.lss-stars{gap:2px;}

/* mriežka produktov */
.lss-grid{gap:22px 24px;}
.lss-pcard{padding:0 14px 21px;border-radius:18px;overflow:hidden;min-height:390px;}
.lss-pcard__media{aspect-ratio:256/190;margin:0 -14px 16px;}
.lss-pcard__media{display:block;padding:16px 14px;aspect-ratio:auto;}
.lss-pcard__media img{
  width:100%;height:auto;max-height:none;aspect-ratio:256/158;
  object-fit:var(--lss-card-fit,contain);object-position:center;
}
.lss-pcard__excerpt{min-height:calc(3 * 17px);}
.lss-pcard__title{font-size:19px;text-transform:none;letter-spacing:-.01em;line-height:1.15;min-height:0;margin:0 0 6px;}
.lss-pcard__price{font-size:18px;margin-bottom:8px;}
.lss-pcard__excerpt{font-size:13px;line-height:17px;margin:8px 0 26px;color:var(--lss-ink);-webkit-line-clamp:3;}
.lss-pcard__actions{gap:12px;}
.lss-pcard__actions .lss-btn{flex:0 0 auto;width:146px;height:32px;padding:0;font-size:14px;}

.lss-pcard .lss-badge{top:14px;left:14px;}

/* promo */
.lss-promos{grid-template-columns:repeat(var(--lss-promo-count,2),minmax(0,1fr));gap:16px;}
.lss-promo{min-height:215px;padding:30px 38px;border-radius:18px;}
.lss-promo--red{background:linear-gradient(90deg,#ff3232 0%,#ff3a3a 40%,#f66c6c 100%);}
.lss-promo--black{background:#000;}
.lss-promo__content{max-width:62%;}
.lss-promo__title{font-size:30px;margin:0 0 10px;text-shadow:0 2px 10px rgba(0,0,0,.45),0 1px 2px rgba(0,0,0,.35);}
/* Text leží cez fotku – tieň ho drží čitateľný aj na svetlom mieste obrázka. */
.lss-promo__text{font-size:13px;line-height:18px;max-width:262px;margin:0 0 22px;color:inherit;opacity:.95;text-shadow:0 1px 8px rgba(0,0,0,.5),0 1px 2px rgba(0,0,0,.4);}
.lss-promo--cover .lss-promo__content{max-width:70%;}
.lss-promo--cover::before{content:'';position:absolute;inset:0;background:linear-gradient(90deg,rgba(0,0,0,.55),rgba(0,0,0,.1));z-index:1;}
.lss-promo .lss-btn{height:32px;padding:0 20px;font-size:13px;box-shadow:0 6px 18px rgba(0,0,0,.28);}
.lss-promo__media{width:auto;right:0;}
.lss-promo__media img{
  height:100%;width:auto;object-fit:cover;object-position:right center;
  /* Doladenie polohy produktu na fotke (plugin LSS Home Builder). */
  transform:translateX(var(--lss-promo-x,0));
}
.lss-promo--red .lss-promo__media img{object-fit:cover;}

/* názvy produktov sa zobrazujú tak, ako sú napísané (návrh mieša verzálky a Title Case) */
.lss-pcard__title{text-transform:none;}

@media (max-width:1100px){
  .lss-cat{flex:0 0 calc((100% - 3 * 20px) / 4);}
  
  
  
  .lss-section--products.lss-section--noheading{margin-top:40px;}
  
  
  
  
}

@media (max-width:680px){
  
  
  
  
  .lss-cat{flex:0 0 calc((100% - 20px) / 2);}
  
  
  .lss-pcard__actions .lss-btn{width:auto;flex:1;}
  
  
  
  
  
  
}

/* =========================================================
   23. Prázdne sekcie, lišta administrácie, drobnosti
   ========================================================= */

/* Upozornenie viditeľné len prihlásenému administrátorovi. */
.lss-empty{
  display:flex;align-items:center;gap:16px;flex-wrap:wrap;
  border:1px dashed #c9c9ce;border-radius:var(--lss-radius);
  padding:20px 24px;background:#fafafa;font-size:13px;color:var(--lss-muted);
}
.lss-empty strong{font-size:15px;color:var(--lss-ink);}
.lss-empty span{flex:1;min-width:220px;}

/* Sticky hlavička nesmie zaliezť pod lištu administrácie. */
body.admin-bar .lss-header{top:32px;}
@media screen and (max-width:782px){
  body.admin-bar .lss-header{top:46px;}
}
@media screen and (max-width:600px){
  body.admin-bar .lss-header{top:0;}
}

/* Obrázky produktov aj kategórií sa vždy zobrazia celé a vycentrované.
   Na svetlých kartách sa biele pozadie fotky „stratí“ vďaka mix-blend-mode.
   Ak používate fotky na tmavom pozadí, pridajte do vlastného CSS:
   :root( --lss-media-blend:normal; )                                     */
.lss-pcard__media img{mix-blend-mode:var(--lss-media-blend,multiply);}

/* =========================================================
   24. Poistka centrovania
   Vodorovné centrovanie kontajnera nesmie zrušiť žiadna neskoršia
   skratka `margin` – preto je deklarované ako !important na jednom mieste.
   ========================================================= */
.lss-container{margin-left:auto!important;margin-right:auto!important;}

/* =========================================================
   25. Archív obchodu a kategórií
   ========================================================= */

/* WooCommerce necháva prázdny obal po vlastnom nadpise. */
.woocommerce-products-header{margin:0;padding:0;}

.lss-archive-head{
  display:grid;grid-template-columns:1fr;gap:24px;align-items:center;
  margin:0 0 34px;
}
.lss-archive-head--media{grid-template-columns:1fr 300px;}
.lss-archive-head__title{
  font-size:clamp(28px,3.4vw,42px);font-weight:900;text-transform:uppercase;
  line-height:1.05;margin:0 0 10px;
}
.lss-archive-head__desc{max-width:620px;font-size:14.5px;line-height:1.6;color:var(--lss-body);}
.lss-archive-head__desc p:last-child{margin-bottom:0;}
.lss-archive-head__count{
  margin:12px 0 0;font-size:11px;font-weight:700;letter-spacing:.09em;
  text-transform:uppercase;color:var(--lss-muted);
}
.lss-archive-head__media{
  border-radius:var(--lss-radius);overflow:hidden;background:var(--lss-card);
  aspect-ratio:300/190;display:flex;align-items:center;justify-content:center;padding:16px;
}
.lss-archive-head__media img{
  width:100%;height:100%;object-fit:contain;
  mix-blend-mode:var(--lss-media-blend,multiply);
}

/* panel s radením */
.lss-shop-toolbar{
  border-top:1px solid var(--lss-line);padding-top:18px;margin-bottom:24px;
}
.woocommerce .lss-shop-toolbar .woocommerce-ordering{margin:0;float:none;}
.woocommerce .lss-shop-toolbar select{
  height:38px;padding:0 34px 0 16px;border:1px solid var(--lss-line);border-radius:999px;
  background:#fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23141416' stroke-width='2.4' stroke-linecap='round'%3E%3Cpolyline points='5 9 12 16 19 9'/%3E%3C/svg%3E") no-repeat right 14px center;
  font:inherit;font-size:12.5px;font-weight:600;color:var(--lss-ink);
  appearance:none;-webkit-appearance:none;cursor:pointer;
}
.woocommerce .lss-shop-toolbar select:hover{border-color:var(--lss-ink);}

/* podkategórie v mriežke vyzerajú ako karty na domovskej */
.woocommerce ul.products li.product-category{list-style:none;}
.woocommerce ul.products li.product-category .lss-cat{display:block;height:100%;}
.woocommerce ul.products li.product-category .lss-cat__media{aspect-ratio:1/.86;}

/* stránkovanie */
.woocommerce nav.woocommerce-pagination{margin:44px 0 0;}
.woocommerce nav.woocommerce-pagination ul{border:0;display:flex;gap:8px;justify-content:center;}
.woocommerce nav.woocommerce-pagination ul li{border:0;margin:0;overflow:visible;}
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span{
  min-width:38px;height:38px;padding:0 12px;border-radius:999px;background:var(--lss-card);
  display:inline-flex;align-items:center;justify-content:center;
  font-size:13px;font-weight:600;color:var(--lss-ink);transition:background .2s,color .2s;
}
.woocommerce nav.woocommerce-pagination ul li span.current,
.woocommerce nav.woocommerce-pagination ul li a:hover{background:var(--lss-black);color:#fff;}

@media (max-width:900px){
  .lss-archive-head--media{grid-template-columns:1fr;}
  .lss-archive-head__media{max-width:260px;}
}
@media (max-width:680px){
  .lss-archive-head{margin-bottom:24px;}
  .lss-shop-toolbar{padding-top:14px;margin-bottom:18px;}
}

/* ---------- Tabuľka parametrov v záložke produktu ---------- */
.lss-specs{width:100%;border-collapse:collapse;margin:0 0 1.5em;font-size:14.5px;}
.lss-specs th,
.lss-specs td{
  padding:12px 14px;border-bottom:1px solid var(--lss-line);
  text-align:left;vertical-align:top;
}
.lss-specs th{width:38%;font-weight:600;color:var(--lss-ink);}
.lss-specs td{color:var(--lss-body);}
.lss-specs tr:last-child th,
.lss-specs tr:last-child td{border-bottom:0;}
.lss-specs__group th{
  padding-top:26px;border-bottom:2px solid var(--lss-ink);
  font-size:11px;font-weight:800;letter-spacing:.1em;text-transform:uppercase;
}
.lss-specs__group:first-child th{padding-top:0;}
@media (max-width:600px){
  .lss-specs th{width:46%;}
  .lss-specs th,.lss-specs td{padding:10px 8px;font-size:13.5px;}
}

/* ---------- Dokumenty na stiahnutie v záložke produktu (plugin LSS Product Tabs) ---------- */
.lss-docs{
  display:grid;grid-template-columns:repeat(auto-fill,minmax(240px,1fr));gap:36px 32px;
  margin:10px 0 1.5em;justify-items:center;
}
.lss-doc{display:flex;flex-direction:column;align-items:center;text-align:center;width:100%;max-width:340px;}
.lss-doc__cover{
  display:flex;align-items:center;justify-content:center;width:100%;aspect-ratio:210/297;
  border-radius:4px;overflow:hidden;background:var(--lss-card);
  box-shadow:0 10px 30px rgba(0,0,0,.12);transition:transform .25s,box-shadow .25s;
}
.lss-doc__cover img{width:100%;height:100%;object-fit:contain;display:block;background:#fff;}
.lss-doc:hover .lss-doc__cover{transform:translateY(-4px);box-shadow:0 18px 40px rgba(0,0,0,.18);}
.lss-doc__cover--placeholder{flex-direction:column;gap:10px;background:linear-gradient(160deg,#ff4a4a,#e31f1f);color:#fff;}
.lss-doc__cover--placeholder svg{width:38%;height:auto;opacity:.95;}
.lss-doc__cover--placeholder span{font-size:14px;font-weight:800;letter-spacing:.14em;}
.lss-doc__title{font-size:20px;font-weight:500;color:var(--lss-ink);margin:22px 0 4px;line-height:1.25;}
.lss-doc__meta{font-size:12px;color:var(--lss-muted);margin:0 0 14px;letter-spacing:.04em;}
.lss-doc__title + .lss-doc__actions{margin-top:14px;}
.lss-doc__actions{display:flex;flex-direction:column;gap:10px;width:100%;max-width:300px;}
.lss-doc__actions .lss-btn{height:46px;font-size:16px;font-weight:500;gap:12px;padding:0 26px;width:100%;}
.lss-doc__actions .lss-btn svg{width:20px;height:20px;flex:none;}
.lss-doc__actions .lss-btn--red{box-shadow:none;}
@media (max-width:680px){
  .lss-docs{grid-template-columns:repeat(auto-fill,minmax(150px,1fr));gap:26px 14px;}
  .lss-doc__title{font-size:16px;margin-top:14px;}
  .lss-doc__actions{gap:8px;}
  .lss-doc__actions .lss-btn{height:40px;font-size:13.5px;padding:0 14px;gap:8px;}
  .lss-doc__actions .lss-btn svg{width:16px;height:16px;}
}

/* =========================================================
   26. Vyhľadávanie v modálnom okne
   Otvára sa nad obsahom, takže nič neposúva.
   ========================================================= */

.lss-search-modal{
  position:fixed;inset:0;z-index:400;
  display:flex;align-items:flex-start;justify-content:center;
  padding:clamp(60px,12vh,140px) 20px 20px;
}
.lss-search-modal[hidden]{display:none;}
.lss-search-modal__backdrop{
  position:absolute;inset:0;background:rgba(10,10,10,.55);
  backdrop-filter:blur(3px);animation:lss-fade .18s ease;
}
.lss-search-modal__panel{
  position:relative;width:100%;max-width:720px;
  background:#fff;border-radius:18px;padding:24px;
  box-shadow:0 30px 80px rgba(0,0,0,.35);
  animation:lss-pop .22s cubic-bezier(.2,.8,.3,1);
}
.lss-search-modal__close{
  position:absolute;top:14px;right:14px;
  width:34px;height:34px;border-radius:999px;
  display:inline-flex;align-items:center;justify-content:center;
  color:var(--lss-muted);transition:background .2s,color .2s;
}
.lss-search-modal__close:hover{background:var(--lss-card);color:var(--lss-ink);}
.lss-search-modal .lss-searchform{padding-right:44px;}
.lss-search-modal input[type=search]{height:52px;font-size:15px;}
.lss-search-modal .lss-btn{height:52px;}

body.lss-search-open{overflow:hidden;}

@keyframes lss-fade{from{opacity:0}to{opacity:1}}
@keyframes lss-pop{from{opacity:0;transform:translateY(-12px)}to{opacity:1;transform:none}}

@media (max-width:680px){
  .lss-search-modal{padding:80px 14px 14px;}
  .lss-search-modal__panel{padding:18px;}
  .lss-search-modal .lss-searchform{flex-wrap:wrap;padding-right:36px;}
  .lss-search-modal input[type=search]{flex:1 1 100%;}
  .lss-search-modal .lss-btn{flex:1;}
}

/* =========================================================
   27. Tablet a mobil
   Metriky návrhu (sekcia 22) sú stavané na 1440 px. Tu sú na jednom
   mieste všetky prepisy pre menšie obrazovky – neskoršie pravidlo vyhráva,
   preto blok patrí na koniec súboru.
   ========================================================= */

/* ---- domovská stránka: produktová sekcia má vždy jeden riadok ----
   Pri menšom počte stĺpcov sa produkty navyše schovajú (nikdy nepadajú
   do druhého riadku) a tlačidlo „Show more“ sa zobrazí automaticky. */
.lss-section__more--auto{display:none;}
.lss-grid--row.lss-grid--2 > :nth-child(n+3),
.lss-grid--row.lss-grid--3 > :nth-child(n+4),
.lss-grid--row.lss-grid--4 > :nth-child(n+5),
.lss-grid--row:not(.lss-grid--2):not(.lss-grid--3):not(.lss-grid--4):not(.lss-grid--6) > :nth-child(n+6),
.lss-grid--row.lss-grid--6 > :nth-child(n+7){display:none;}
.lss-section--products:has(.lss-grid--row.lss-grid--2 > :nth-child(3)) .lss-section__more--auto,
.lss-section--products:has(.lss-grid--row.lss-grid--3 > :nth-child(4)) .lss-section__more--auto,
.lss-section--products:has(.lss-grid--row.lss-grid--4 > :nth-child(5)) .lss-section__more--auto,
.lss-section--products:has(.lss-grid--row.lss-grid--6 > :nth-child(7)) .lss-section__more--auto{display:flex;}
@media (max-width:1180px){
  .lss-grid--row > :nth-child(n+5){display:none;}
  .lss-section--products:has(.lss-grid--row > :nth-child(5)) .lss-section__more--auto{display:flex;}
}
@media (max-width:1024px){
  .lss-grid--row > :nth-child(n+4){display:none;}
  .lss-section--products:has(.lss-grid--row > :nth-child(4)) .lss-section__more--auto{display:flex;}
}
@media (max-width:680px){
  .lss-grid--row > :nth-child(n+3){display:none;}
  .lss-section--products:has(.lss-grid--row > :nth-child(3)) .lss-section__more--auto{display:flex;}
}

/* ---- tablet (≤ 1024 px) ---- */
@media (max-width:1024px){
  /* Postupné odhalenie na dotykových zariadeniach vypíname – rýchly
     posun prstom ho nestíha a karty by ostali priehľadné. */
  .lss-reveal{opacity:1;transform:none;transition:none;}

  .lss-section--products.lss-section--noheading{margin-block-start:70px;}
  /* Pevná šírka Quick Add sa do troch stĺpcov nezmestí. */
  .lss-pcard__actions .lss-btn{flex:1 1 auto;width:auto;min-width:0;}
}

/* ---- mobil (≤ 680 px) ---- */
@media (max-width:680px){
  :root{--lss-gap:12px;--lss-radius:14px;--lss-header-h:64px;}

  /* top bar – krátky, vycentrovaný, môže sa zalomiť */
  .lss-topbar{font-size:10.5px;letter-spacing:.02em;}
  .lss-topbar__inner{min-height:0;padding:7px 0;justify-content:center;text-align:center;}
  .lss-topbar__msg{display:block;line-height:1.35;}

  /* hlavička */
  .lss-header__inner{min-height:64px;gap:10px;}
  .lss-logo img{max-height:24px;}
  .lss-header__actions{gap:0;}
  .lss-iconbtn{width:38px;height:38px;}
  .lss-mobile-nav{padding:16px 20px 30px;}
  .lss-mobile-nav a{font-size:16px;padding:13px 0;}

  /* hero – na výšku telefónu je široký pomer priúzky, banner sa natiahne
     a obsah ide zospodu; obrázkové slidy sa orežú zo stredu */
  
  
  
  
  /* Ak sú všetky slidy len obrázok (text je v grafike), ostáva zvolený
     pomer strán – nič sa neoreže, banner sa iba zmenší. */
  
  
  
  
  
  
  
  
  
  
  
  

  /* výhody – 2×2 */
  
  
  
  
  
  

  /* sekcie */
  .lss-section{margin-block:30px 0;}
  .lss-section--categories,.lss-section--promos{margin-block-start:30px;}
  .lss-section--promos + .lss-section{margin-block-start:34px;}
  .lss-section--products.lss-section--noheading{margin-block-start:34px;}
  .lss-section--newsletter{margin-block-start:40px;}
  .lss-section__head{margin-bottom:12px;}
  .lss-section__title{font-size:18px;}
  .lss-section__more{margin-top:16px;}
  .lss-section__more .lss-btn{height:38px;padding:0 24px;font-size:13px;}

  /* kategórie – dve na šírku, ostatné posunom prsta */
  
  .lss-cat{flex:0 0 calc((100% - 12px) / 2);padding:0 0 14px;border-radius:14px;}
  .lss-cat__media{padding:10px;margin:0 0 8px;}
  .lss-cat__name{font-size:15px;padding:0 12px;margin:0 0 4px;}
  .lss-cat__cta{font-size:10px;padding:0 12px;gap:6px;}
  .lss-cat__cta svg{width:13px;height:13px;}

  /* featured – vodorovná karta v jednom stĺpci */
  
  
  
  
  
  
  
  
  
  

  /* mriežka produktov – vždy dva stĺpce, kompaktná karta */
  .lss-grid,.lss-grid--6,.lss-grid--4,.lss-grid--3,.lss-grid--2,
  .woocommerce ul.products{grid-template-columns:repeat(2,minmax(0,1fr));gap:12px;}
  .lss-pcard{padding:0 12px 14px;border-radius:14px;min-height:0;}
  .lss-pcard__media{padding:12px 10px;margin:0 -12px 10px;}
  .lss-pcard__title{
    font-size:14px;line-height:1.2;margin:0 0 4px;min-height:2.4em;
    display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;
  }
  .lss-pcard__price{font-size:15px;margin-bottom:4px;}
  .lss-pcard__price del{font-size:11px;}
  .lss-pcard .lss-stars svg{width:12px;height:12px;}
  /* Popis by v úzkom stĺpci zaberal tretinu karty – na telefóne ho nezobrazujeme. */
  .lss-pcard__excerpt{display:none;}
  .lss-pcard__actions{gap:8px;margin-top:12px;}
  .lss-pcard__actions .lss-btn{flex:1 1 auto;width:auto;min-width:0;height:34px;padding:0 10px;font-size:12.5px;}
  
  
  .lss-badge{padding:3px 10px;font-size:9.5px;}
  .lss-pcard .lss-badge{top:10px;left:10px;}

  /* promo bannery */
  .lss-promos{grid-template-columns:1fr;gap:12px;}
  .lss-promo{min-height:170px;padding:22px 20px;border-radius:14px;}
  .lss-promo__content,.lss-promo--cover .lss-promo__content{max-width:66%;}
  .lss-promo__title{font-size:22px;margin:0 0 6px;}
  .lss-promo__text{font-size:12px;line-height:16px;margin:0 0 14px;max-width:100%;}
  .lss-promo .lss-btn{height:32px;padding:0 16px;font-size:12px;}
  .lss-promo__media{width:44%;opacity:1;}
  /* Posun obrázka je ladený na desktop – v úzkom banneri ho nepoužívame. */
  .lss-promo__media img{height:100%;width:100%;object-fit:cover;object-position:center;transform:none;}

  /* newsletter */
  .lss-newsletter{padding:22px 18px;gap:16px;border-radius:14px;}
  .lss-newsletter h3{font-size:18px;}
  .lss-newsletter p{font-size:12.5px;}
  .lss-newsletter form{flex-wrap:wrap;gap:8px;}
  .lss-newsletter input[type=email]{flex:1 1 100%;min-width:0;height:44px;padding:0 16px;}
  .lss-newsletter form .lss-btn{flex:1 1 100%;height:44px;}

  /* pätička – 2 stĺpce, „O nás“ na celú šírku */
  .lss-footer{margin-top:40px;padding:34px 0 0;}
  .lss-footer__cols{grid-template-columns:1fr 1fr;gap:26px 18px;}
  .lss-footer__about{grid-column:1/-1;}
  .lss-footer__about p{max-width:100%;}
  .lss-footer__bottom{margin-top:26px;justify-content:center;text-align:center;}

  /* vnútorné stránky a archív */
  .lss-page{margin-block:22px 40px;}
  .lss-archive-head{margin:0 0 18px;gap:14px;}
  .lss-archive-head__title{font-size:26px;}
  .lss-archive-head__desc{font-size:13.5px;}
  .lss-archive-head__media{max-width:100%;aspect-ratio:16/9;}
  .lss-shop-toolbar{padding-top:12px;margin-bottom:14px;}
  .woocommerce .lss-shop-toolbar .woocommerce-ordering{width:100%;}
  .woocommerce .lss-shop-toolbar select{width:100%;}
  .woocommerce nav.woocommerce-pagination{margin-top:26px;}

  /* stránka produktu */
  .woocommerce div.product.lss-product{margin-top:14px;row-gap:22px;}
  .woocommerce div.product div.images .flex-control-thumbs{gap:8px;margin-top:12px;}
  .woocommerce div.product div.images .flex-control-thumbs li{flex:0 0 calc((100% - 24px) / 4);}
  .woocommerce div.product div.images .flex-control-thumbs img{padding:8px;border-radius:10px;}
  .lss-product__trust{margin-top:16px;padding-left:0;gap:14px;}
  .lss-product__trust .lss-product__trust-img{height:30px;}
  .lss-product__summary{padding-top:0;}
  .lss-product__crumbs{margin-bottom:10px;font-size:11px;}
  .woocommerce div.product .lss-product__summary .product_title{font-size:24px;}
  .lss-product__rating{margin-bottom:16px;gap:10px;}
  .lss-product__rating .lss-stars svg{width:16px;height:16px;}
  .lss-product__rating-avg,.lss-product__rating-count{font-size:13px;}
  .woocommerce div.product .lss-product__summary .woocommerce-product-details__short-description{font-size:14px;margin-bottom:22px;}
  .woocommerce div.product form.cart table.variations{margin:0 0 18px;}
  .woocommerce div.product form.cart table.variations label{font-size:14px;}
  .lss-product__price,
  .woocommerce div.product .woocommerce-variation.single_variation{gap:14px;margin:0 0 22px;}
  .woocommerce div.product .lss-product__summary .price,
  .woocommerce div.product .woocommerce-variation-price .price{font-size:30px;}
  .lss-product__price-note,.woocommerce div.product .woocommerce-variation-description{font-size:13.5px;}
  .lss-qty{height:48px;}
  .woocommerce .lss-qty .quantity .qty{height:46px;width:56px;}
  .woocommerce div.product form.cart .button.single_add_to_cart_button{height:50px;font-size:16px;}
  .woocommerce div.product .woocommerce-tabs ul.tabs{margin-bottom:20px;}
  .woocommerce div.product .woocommerce-tabs .panel{font-size:14.5px;}
  .lss-product__media{margin-top:22px;border-radius:14px;aspect-ratio:16/9;}
  .woocommerce div.product .related.products,
  .woocommerce div.product .upsells.products{margin-top:36px;}

  .woocommerce #review_form #respond input[type=text],
  .woocommerce #review_form #respond input[type=email],
  .woocommerce #review_form #respond textarea{width:100%;}

  /* vyhľadávanie */
  .lss-search-modal{padding:70px 12px 12px;}
}

/* ---- malé telefóny (≤ 400 px) ---- */
@media (max-width:400px){
  /* Vedľa Quick Add už nie je miesto na okrúhlu ikonu – názov aj fotka
     vedú na produkt, nič sa nestráca. */
  
  .lss-promo__content,.lss-promo--cover .lss-promo__content{max-width:100%;}
  .lss-promo__media{opacity:.22;width:100%;}
}

/* =========================================================
   28. Prihlásenie, registrácia a Môj účet
   ========================================================= */

/* stránka Môj účet – nadpis stránky nechávame, formulár má vlastné nadpisy */
.lss-auth{
  display:grid;grid-template-columns:1fr;gap:24px;
  max-width:520px;margin:8px auto 40px;
}
.lss-auth--two{grid-template-columns:1fr 1fr;max-width:1040px;}
.lss-auth__card{
  background:var(--lss-card);border-radius:var(--lss-radius);padding:38px 40px 36px;
  display:flex;flex-direction:column;
}
.lss-auth__card--register{background:#fff;border:1px solid var(--lss-line);}
.lss-auth__head{margin-bottom:26px;}
.lss-auth__title{font-size:26px;font-weight:900;letter-spacing:-.01em;margin:0 0 6px;line-height:1.1;}
.lss-auth__lead{font-size:14px;line-height:1.55;color:var(--lss-muted);margin:0;}
/* WooCommerce dáva formuláru vlastný rám a odsadenie – karta ho už má. */
.woocommerce .lss-auth form.login,.woocommerce .lss-auth form.register,
.woocommerce-page .lss-auth form.login,.woocommerce-page .lss-auth form.register{
  border:0;padding:0;margin:0;border-radius:0;background:none;box-shadow:none;
}
.lss-auth__form{display:flex;flex-direction:column;gap:18px;}
.lss-auth__form p{margin:0;}

/* polia (spoločné pre prihlásenie, registráciu aj zabudnuté heslo) */
.woocommerce .lss-field label,
.woocommerce form .lss-field label,
.woocommerce-ResetPassword label,
.woocommerce-EditAccountForm label{
  display:block;font-size:12px;font-weight:700;letter-spacing:.04em;text-transform:uppercase;
  color:var(--lss-ink);margin:0 0 8px;
}
.woocommerce .lss-field .required,.woocommerce-ResetPassword .required{color:var(--lss-red);text-decoration:none;}
.woocommerce .lss-auth .input-text,
.woocommerce .lss-auth input[type=text],
.woocommerce .lss-auth input[type=email],
.woocommerce .lss-auth input[type=password],
.woocommerce .woocommerce-ResetPassword .input-text,
.woocommerce .woocommerce-EditAccountForm .input-text,
.woocommerce .woocommerce-address-fields .input-text{
  width:100%;height:50px;padding:0 18px;border:1px solid #d3d3d8;border-radius:12px;background:#fff;
  font:inherit;font-size:15px;color:var(--lss-ink);box-shadow:none;
  transition:border-color .2s,box-shadow .2s;
}
.woocommerce .lss-auth .input-text:focus,
.woocommerce .woocommerce-ResetPassword .input-text:focus,
.woocommerce .woocommerce-EditAccountForm .input-text:focus{
  outline:0;border-color:var(--lss-ink);box-shadow:0 0 0 3px rgba(19,19,19,.08);
}
.woocommerce .lss-auth .input-text.lss-field__pw-input{padding-right:52px;}
.lss-field__pw{position:relative;display:block;}
.lss-field__pw .input-text{padding-right:52px!important;}
.lss-field__eye{
  position:absolute;right:6px;top:50%;transform:translateY(-50%);
  width:38px;height:38px;border-radius:999px;display:inline-flex;align-items:center;justify-content:center;
  color:var(--lss-muted);transition:color .2s,background .2s;
}
.lss-field__eye:hover,.lss-field__eye.is-on{color:var(--lss-ink);background:#fff;}
.lss-field__eye.is-on svg{opacity:.55;}

/* riadok „zapamätať / zabudnuté heslo“ */
.lss-auth__row{display:flex;align-items:center;justify-content:space-between;gap:12px;flex-wrap:wrap;margin-top:-4px;}
.lss-check{display:inline-flex;align-items:center;gap:8px;font-size:13.5px;color:var(--lss-body);cursor:pointer;}
.woocommerce .lss-check input[type=checkbox]{
  width:18px;height:18px;margin:0;accent-color:var(--lss-red);cursor:pointer;
}
.lss-auth__lost{font-size:13.5px;font-weight:600;color:var(--lss-ink);text-decoration:underline;text-underline-offset:3px;}
.lss-auth__lost:hover{color:var(--lss-red);}

/* tlačidlá */
.woocommerce .lss-auth .lss-btn,
.woocommerce .lss-auth button.button.lss-btn{
  height:50px;font-size:15px;font-weight:700;border-radius:999px;padding:0 28px;
  width:100%;margin-top:6px;line-height:1;
}
.woocommerce .lss-auth button.button.lss-btn--red{background:var(--lss-red);color:#fff;box-shadow:0 8px 22px rgba(255,49,49,.26);}
.woocommerce .lss-auth button.button.lss-btn--red:hover{background:var(--lss-red-dark);color:#fff;}
.woocommerce .lss-auth button.button.lss-btn--black{background:var(--lss-black);color:#fff;}
.woocommerce .lss-auth button.button.lss-btn--black:hover{background:#26262b;color:#fff;}
.lss-auth__submit{margin-top:auto!important;}
.lss-auth__hint{font-size:13px;color:var(--lss-muted);background:#fff;border:1px dashed var(--lss-line);border-radius:10px;padding:12px 14px;margin:0;}
.lss-auth__card--register .lss-auth__hint{background:var(--lss-card);border-color:transparent;}
.lss-auth__note{font-size:13px;color:var(--lss-muted);margin:22px 0 0;line-height:1.55;}
.woocommerce .lss-auth .woocommerce-privacy-policy-text{font-size:12.5px;line-height:1.5;color:var(--lss-muted);}
.woocommerce .lss-auth .woocommerce-privacy-policy-text p{margin:0;}

/* hlášky nad formulárom (chybné heslo a pod.) */
.woocommerce .woocommerce-error,.woocommerce .woocommerce-message,.woocommerce .woocommerce-info{
  border:0;border-radius:12px;background:var(--lss-card);color:var(--lss-ink);
  padding:14px 18px 14px 48px;margin:0 0 22px;font-size:14px;line-height:1.5;
}
.woocommerce .woocommerce-error{background:#fff1f1;color:#a11a1a;}
.woocommerce .woocommerce-error::before{color:var(--lss-red);top:14px;left:18px;}
.woocommerce .woocommerce-message::before,.woocommerce .woocommerce-info::before{top:14px;left:18px;color:var(--lss-ink);}
.woocommerce .woocommerce-error li{margin:0;}

/* zabudnuté heslo / nové heslo */
.woocommerce .woocommerce-ResetPassword,
.woocommerce form.lost_reset_password{
  max-width:520px;margin:8px auto 40px;background:var(--lss-card);border-radius:var(--lss-radius);padding:38px 40px 36px;
}
.woocommerce .woocommerce-ResetPassword p:first-child{font-size:14px;line-height:1.55;color:var(--lss-muted);margin-bottom:22px;}
.woocommerce .woocommerce-ResetPassword .form-row{margin:0 0 18px;padding:0;float:none;width:100%;}
.woocommerce .woocommerce-ResetPassword button.button{
  width:100%;height:50px;border-radius:999px;background:var(--lss-red);color:#fff;font-size:15px;font-weight:700;
}
.woocommerce .woocommerce-ResetPassword button.button:hover{background:var(--lss-red-dark);color:#fff;}

/* ---------- Môj účet (prihlásený) ----------
   Navigácia vľavo ako pilulky, obsah vpravo. Rozloženie sa viaže na
   spoločného rodiča navigácie (:has), takže nezáleží na tom, čím
   WooCommerce alebo stránka obal zabalí. */
.woocommerce-account.logged-in .lss-entry{max-width:none;}
.woocommerce-account.logged-in .lss-entry :has(> .woocommerce-MyAccount-navigation){
  display:grid;grid-template-columns:240px minmax(0,1fr);gap:40px 48px;align-items:start;
}
.woocommerce-account.logged-in .lss-entry :has(> .woocommerce-MyAccount-navigation) > .woocommerce-notices-wrapper{grid-column:1/-1;}
/* Clearfix WooCommerce (.woocommerce::before/::after) by sa v gride stal
   prvou položkou a odsunul navigáciu do druhého stĺpca. */
.woocommerce-account.logged-in .lss-entry :has(> .woocommerce-MyAccount-navigation)::before,
.woocommerce-account.logged-in .lss-entry :has(> .woocommerce-MyAccount-navigation)::after{display:none;content:none;}
.woocommerce-account.logged-in .woocommerce-MyAccount-navigation{grid-column:1;grid-row:1;}
.woocommerce-account.logged-in .woocommerce-MyAccount-content{grid-column:2;grid-row:1;}
.woocommerce-account .woocommerce-MyAccount-navigation,
.woocommerce-account .woocommerce-MyAccount-content{float:none;width:auto;min-width:0;margin:0;}
.woocommerce-account .woocommerce-MyAccount-navigation{position:sticky;top:calc(var(--lss-header-h) + 20px);}
.woocommerce-MyAccount-navigation ul{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:6px;}
.woocommerce-MyAccount-navigation li{margin:0;}
.woocommerce-MyAccount-navigation li a{
  display:flex;align-items:center;gap:10px;padding:12px 18px;border-radius:999px;
  font-size:14px;font-weight:600;color:var(--lss-ink);background:var(--lss-card);
  transition:background .2s,color .2s;
}
.woocommerce-MyAccount-navigation li a::before{content:'';width:6px;height:6px;border-radius:999px;background:currentColor;opacity:.35;flex:none;}
.woocommerce-MyAccount-navigation li a:hover{background:var(--lss-card-hover);}
.woocommerce-MyAccount-navigation li.is-active a{background:var(--lss-black);color:#fff;}
.woocommerce-MyAccount-navigation li.is-active a::before{background:var(--lss-red);opacity:1;}
.woocommerce-MyAccount-navigation li.woocommerce-MyAccount-navigation-link--customer-logout{margin-top:10px;}
.woocommerce-MyAccount-navigation li.woocommerce-MyAccount-navigation-link--customer-logout a{
  background:transparent;color:var(--lss-red);border:1.5px solid var(--lss-line);
}
.woocommerce-MyAccount-navigation li.woocommerce-MyAccount-navigation-link--customer-logout a:hover{border-color:var(--lss-red);background:#fff1f1;}
.woocommerce-MyAccount-navigation li.woocommerce-MyAccount-navigation-link--customer-logout a::before{display:none;}

/* obsah */
.woocommerce-MyAccount-content{font-size:15px;line-height:1.6;color:var(--lss-body);}
.woocommerce-MyAccount-content > p{margin:0 0 1em;}
.woocommerce-MyAccount-content > p:first-of-type{font-size:17px;color:var(--lss-ink);}
.woocommerce-MyAccount-content > p:first-of-type strong{font-weight:800;}
.woocommerce-MyAccount-content a:not(.button){color:var(--lss-ink);font-weight:600;text-decoration:underline;text-underline-offset:3px;}
.woocommerce-MyAccount-content a:not(.button):hover{color:var(--lss-red);}
.woocommerce-MyAccount-content h2,.woocommerce-MyAccount-content h3,
.woocommerce-MyAccount-content legend{font-size:18px;font-weight:800;margin:0 0 14px;color:var(--lss-ink);}

/* hlášky s tlačidlom (žiadne objednávky / súbory…) */
.woocommerce-MyAccount-content .woocommerce-info,
.woocommerce-MyAccount-content .woocommerce-message,
.woocommerce-MyAccount-content .woocommerce-error{
  display:flex;align-items:center;justify-content:space-between;gap:16px;flex-wrap:wrap;
  padding:18px 22px;margin:0 0 18px;border-radius:14px;background:var(--lss-card);
}
.woocommerce-MyAccount-content .woocommerce-info::before,
.woocommerce-MyAccount-content .woocommerce-message::before{display:none;}
.woocommerce-MyAccount-content .woocommerce-info .button,
.woocommerce-MyAccount-content .woocommerce-message .button{margin:0;order:2;}

/* tlačidlá v účte */
.woocommerce-account .woocommerce-MyAccount-content .button,
.woocommerce-account .woocommerce-MyAccount-content button.button,
.woocommerce-account .woocommerce-MyAccount-content a.button{
  display:inline-flex;align-items:center;justify-content:center;height:42px;padding:0 22px;
  border-radius:999px;background:var(--lss-black);color:#fff;font-size:13.5px;font-weight:700;line-height:1;
  border:0;transition:background .2s,transform .15s;
}
.woocommerce-account .woocommerce-MyAccount-content .button:hover{background:#26262b;color:#fff;transform:translateY(-1px);}
.woocommerce-account .woocommerce-MyAccount-content button.button[name="save_account_details"],
.woocommerce-account .woocommerce-MyAccount-content button.button[name="save_address"]{background:var(--lss-red);box-shadow:0 8px 22px rgba(255,49,49,.22);}
.woocommerce-account .woocommerce-MyAccount-content button.button[name="save_account_details"]:hover,
.woocommerce-account .woocommerce-MyAccount-content button.button[name="save_address"]:hover{background:var(--lss-red-dark);}

/* objednávky – tabuľka */
.woocommerce-account table.woocommerce-orders-table,
.woocommerce-account table.woocommerce-table--order-details,
.woocommerce-account table.shop_table{border:0;border-collapse:separate;border-spacing:0;font-size:14px;border-radius:14px;overflow:hidden;background:var(--lss-card);}
.woocommerce-account table.shop_table th,.woocommerce-account table.shop_table td{border:0;padding:14px 16px;text-align:left;}
.woocommerce-account table.shop_table thead th{font-size:11px;font-weight:800;letter-spacing:.08em;text-transform:uppercase;color:var(--lss-muted);background:#e9e9ec;}
.woocommerce-account table.shop_table tbody tr + tr td{border-top:1px solid #e3e3e6;}
.woocommerce-account table.shop_table td.woocommerce-orders-table__cell-order-number a{font-weight:800;text-decoration:none;}
.woocommerce-account table.shop_table td.woocommerce-orders-table__cell-order-actions .button{height:34px;padding:0 16px;font-size:12.5px;margin:0 6px 0 0;}
.woocommerce-account table.shop_table tfoot th,.woocommerce-account table.shop_table tfoot td{border-top:1px solid #e3e3e6;font-weight:700;}
.woocommerce-account .woocommerce-pagination{margin-top:18px;display:flex;gap:8px;}

/* sťahovanie */
.woocommerce-account table.woocommerce-table--order-downloads td .button{height:34px;padding:0 16px;font-size:12.5px;}

/* adresy – dve karty */
.woocommerce-account .woocommerce-Addresses{display:grid;grid-template-columns:1fr 1fr;gap:18px;}
.woocommerce-account .woocommerce-Addresses::before,.woocommerce-account .woocommerce-Addresses::after{display:none;content:none;}
.woocommerce-account .woocommerce-Address-title a.edit{white-space:nowrap;}
.woocommerce-account .woocommerce-Addresses .woocommerce-Address{
  float:none;width:auto;max-width:none;background:var(--lss-card);border-radius:14px;padding:22px 24px;
}
.woocommerce-account .woocommerce-Address-title{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-bottom:12px;}
.woocommerce-account .woocommerce-Address-title h2,.woocommerce-account .woocommerce-Address-title h3{margin:0;font-size:16px;float:none;}
.woocommerce-account .woocommerce-Address-title a.edit{float:none;font-size:12.5px;font-weight:700;text-transform:uppercase;letter-spacing:.06em;}
.woocommerce-account .woocommerce-Address address{font-style:normal;line-height:1.6;color:var(--lss-body);}
.woocommerce-account .woocommerce-address-fields,
.woocommerce-account .woocommerce-EditAccountForm{background:var(--lss-card);border-radius:14px;padding:28px 30px;max-width:720px;}

/* formuláre v účte – dve polia vedľa seba (meno / priezvisko) */
.woocommerce-account .woocommerce-MyAccount-content .form-row{float:none;width:100%;margin:0 0 16px;padding:0;}
.woocommerce-account .woocommerce-MyAccount-content .form-row-first,
.woocommerce-account .woocommerce-MyAccount-content .form-row-last{width:calc(50% - 8px);display:inline-block;vertical-align:top;}
.woocommerce-account .woocommerce-MyAccount-content .form-row-first{margin-right:16px;}
.woocommerce-account .woocommerce-MyAccount-content .form-row label{
  display:block;font-size:12px;font-weight:700;letter-spacing:.04em;text-transform:uppercase;color:var(--lss-ink);margin:0 0 8px;
}
.woocommerce-account .woocommerce-MyAccount-content .form-row .required{color:var(--lss-red);text-decoration:none;}
.woocommerce-account .woocommerce-MyAccount-content .form-row .input-text,
.woocommerce-account .woocommerce-MyAccount-content .form-row select,
.woocommerce-account .woocommerce-MyAccount-content .form-row .select2-container .select2-selection--single{
  width:100%;height:48px;padding:0 16px;border:1px solid #d3d3d8;border-radius:12px;background:#fff;font:inherit;font-size:15px;color:var(--lss-ink);
}
.woocommerce-account .woocommerce-MyAccount-content .form-row .select2-container .select2-selection--single .select2-selection__rendered{line-height:46px;padding-left:0;}
.woocommerce-account .woocommerce-MyAccount-content .form-row .select2-container .select2-selection--single .select2-selection__arrow{height:46px;right:10px;}
.woocommerce-account .woocommerce-MyAccount-content .form-row .input-text:focus,
.woocommerce-account .woocommerce-MyAccount-content .form-row select:focus{outline:0;border-color:var(--lss-ink);box-shadow:0 0 0 3px rgba(19,19,19,.08);}
.woocommerce-account .woocommerce-MyAccount-content fieldset{border:0;padding:0;margin:26px 0 0;}
.woocommerce-account .woocommerce-MyAccount-content .show-password-input{top:12px;right:14px;}
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-form-row span em{display:block;font-size:12px;color:var(--lss-muted);margin-top:6px;font-style:normal;}
.woocommerce-account .woocommerce-MyAccount-content .wc-password-strength-meter,.woocommerce-account .woocommerce-MyAccount-content .woocommerce-password-hint{font-size:12.5px;}

@media (max-width:820px){
  .lss-auth--two{grid-template-columns:1fr;max-width:520px;}
  .lss-auth__card{padding:28px 22px 26px;}
  .lss-auth__title{font-size:22px;}
  .woocommerce-account.logged-in .lss-entry :has(> .woocommerce-MyAccount-navigation){grid-template-columns:1fr;gap:22px;}
  .woocommerce-account.logged-in .woocommerce-MyAccount-navigation{grid-column:1;grid-row:1;}
  .woocommerce-account.logged-in .woocommerce-MyAccount-content{grid-column:1;grid-row:2;}
  .woocommerce-account .woocommerce-MyAccount-navigation{position:static;}
  .woocommerce-MyAccount-navigation ul{flex-direction:row;flex-wrap:nowrap;overflow-x:auto;gap:8px;padding-bottom:4px;scrollbar-width:none;}
  .woocommerce-MyAccount-navigation ul::-webkit-scrollbar{display:none;}
  .woocommerce-MyAccount-navigation li{flex:none;}
  .woocommerce-MyAccount-navigation li a{padding:10px 16px;font-size:13px;}
  .woocommerce-MyAccount-navigation li.woocommerce-MyAccount-navigation-link--customer-logout{margin-top:0;}
  .woocommerce-account .woocommerce-Addresses{grid-template-columns:1fr;}
  .woocommerce-account .woocommerce-MyAccount-content .form-row-first,
  .woocommerce-account .woocommerce-MyAccount-content .form-row-last{width:100%;display:block;margin-right:0;}
  .woocommerce-account .woocommerce-address-fields,.woocommerce-account .woocommerce-EditAccountForm{padding:20px 18px;}
  .woocommerce-account table.shop_table thead{display:none;}
  .woocommerce-account table.shop_table tbody td{display:block;padding:8px 16px;}
  .woocommerce-account table.shop_table tbody td::before{content:attr(data-title);display:block;font-size:11px;font-weight:800;letter-spacing:.08em;text-transform:uppercase;color:var(--lss-muted);margin-bottom:2px;}
  .woocommerce-account table.shop_table tbody tr + tr td:first-child{border-top:1px solid #e3e3e6;padding-top:14px;}
  .woocommerce-account table.shop_table tbody td:last-child{padding-bottom:14px;}
  .woocommerce .woocommerce-ResetPassword,.woocommerce form.lost_reset_password{padding:28px 22px 26px;}
}

/* =========================================================
   29. Košík a pokladňa (bloky WooCommerce) v dizajne témy
   ========================================================= */
body.lss-wide-page .lss-entry{max-width:none;font-size:inherit;}
body.lss-wide-page .lss-page{margin-block:28px 60px;}
body.lss-wide-page .lss-page__header{margin-bottom:22px;}
.wp-block-woocommerce-cart.alignwide,.wp-block-woocommerce-checkout.alignwide{max-width:none;margin-inline:0;}

/* ---- prázdny košík ---- */
.lss-cart-empty{padding:10px 0 0;}
.lss-cart-empty__hero{
  display:flex;flex-direction:column;align-items:center;text-align:center;
  background:var(--lss-card);border-radius:22px;padding:clamp(44px,6vw,72px) 24px;
}
.lss-cart-empty__icon{
  position:relative;width:88px;height:88px;border-radius:999px;background:#fff;
  display:flex;align-items:center;justify-content:center;color:var(--lss-ink);
  box-shadow:0 12px 30px rgba(0,0,0,.08);margin-bottom:26px;
}
.lss-cart-empty__icon svg{width:36px;height:36px;}
.lss-cart-empty__icon i{position:absolute;top:8px;right:8px;width:16px;height:16px;border-radius:999px;background:var(--lss-red);border:3px solid #fff;}
.lss-cart-empty__title{font-size:clamp(24px,3vw,34px);font-weight:900;letter-spacing:-.01em;margin:0 0 10px;line-height:1.1;}
.lss-cart-empty__text{font-size:15px;line-height:1.6;color:var(--lss-muted);max-width:520px;margin:0 0 26px;}
.lss-cart-empty__actions{display:flex;gap:12px;flex-wrap:wrap;justify-content:center;}
.lss-cart-empty__actions .lss-btn{height:46px;padding:0 26px;font-size:14px;}
.lss-cart-empty__products{margin-top:52px;}
.lss-cart-empty__products .lss-section__head{margin-bottom:20px;}
.lss-cart-empty__products .lss-section__title{font-size:22px;}
.lss-cart-empty .lss-section__link.lss-cart-empty__all{display:inline-flex;font-size:12px;color:var(--lss-ink);}
.lss-cart-empty .lss-section__link.lss-cart-empty__all:hover{color:var(--lss-red);}

/* ---- plný košík: položky vľavo, súhrn ako karta vpravo ---- */
.wc-block-cart .wc-block-components-sidebar-layout{gap:0;}
.wc-block-cart .wc-block-components-main{padding-right:32px;}
.wc-block-cart .wc-block-components-sidebar{
  padding:0;background:var(--lss-card);border-radius:20px;align-self:flex-start;
  position:sticky;top:calc(var(--lss-header-h) + 20px);
}
.wc-block-cart .wc-block-components-sidebar > *{padding-left:26px;padding-right:26px;}
.wc-block-cart .wc-block-components-sidebar .wp-block-woocommerce-cart-order-summary-block{padding-top:24px;}
.wc-block-cart .wc-block-cart__totals-title{
  text-align:left;border:0;padding:0;margin:0 0 14px;text-transform:none;letter-spacing:-.01em;
  font-size:18px;font-weight:800;color:var(--lss-ink);
}
.wc-block-cart .wc-block-components-totals-item,.wc-block-cart .wc-block-components-totals-coupon,
.wc-block-cart .wc-block-components-totals-shipping{padding-left:0;padding-right:0;font-size:14px;color:var(--lss-body);}
.wc-block-cart .wc-block-components-totals-footer-item{font-size:16px;color:var(--lss-ink);padding-left:0;padding-right:0;}
.wc-block-cart .wc-block-components-totals-footer-item .wc-block-components-totals-item__value{font-size:24px;font-weight:900;}
.wc-block-cart .wc-block-components-totals-wrapper{border-top:1px solid #e1e1e5;padding:14px 0;}
.wc-block-cart .wc-block-components-totals-wrapper:first-child{border-top:0;padding-top:0;}
.wc-block-cart .wc-block-components-panel__button{font-weight:600;color:var(--lss-ink);}
.wc-block-cart .wc-block-cart__submit{margin:0;}
.wc-block-cart .wc-block-cart__submit-container{padding:18px 0 8px;background:none;}
.wc-block-cart .wc-block-cart__submit-container::before{display:none;}
.wc-block-cart .wc-block-cart__submit-button,
.wc-block-checkout .wc-block-components-checkout-place-order-button{
  background:var(--lss-red)!important;color:#fff!important;border:0!important;border-radius:999px!important;
  height:52px;font-size:16px;font-weight:700;box-shadow:0 8px 22px rgba(255,49,49,.26);
  transition:background .2s,transform .15s;
}
.wc-block-cart .wc-block-cart__submit-button:hover,
.wc-block-checkout .wc-block-components-checkout-place-order-button:hover{background:var(--lss-red-dark)!important;transform:translateY(-1px);}
.wc-block-cart .wc-block-cart__payment-options{padding-top:0;padding-bottom:22px;}
.wc-block-cart .wc-block-cart__payment-options:empty{padding:0 0 12px;}
.wc-block-cart .wp-block-woocommerce-cart-accepted-payment-methods-block:empty{display:none;}
.wc-block-cart .wc-block-components-express-payment--cart{padding-top:16px;}
@media (max-width:820px){
  .wc-block-cart .wc-block-components-main{padding-right:0;}
  .wc-block-cart .wc-block-components-sidebar{width:100%!important;flex-basis:100%!important;position:static;margin-top:8px;}
  .wc-block-cart .wc-block-components-sidebar > *{padding-left:18px;padding-right:18px;}
}

/* položky */
.wc-block-cart table.wc-block-cart-items{border-collapse:separate;border-spacing:0;border:0;}
.wc-block-cart table.wc-block-cart-items::after,.wc-block-cart .wc-block-cart-items tbody{border:0;}
.wc-block-cart .wc-block-cart-items thead{display:none;}
.wc-block-cart .wc-block-cart-items .wc-block-cart-items__row{
  border:0;background:var(--lss-card);border-radius:18px;padding:0;margin:0 0 14px;
  display:grid;grid-template-columns:110px 1fr auto;gap:0 20px;align-items:center;
}
.wc-block-cart .wc-block-cart-items .wc-block-cart-items__row td{border:0;padding:18px 0;vertical-align:middle;}
.wc-block-cart .wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__image{padding-left:18px;}
.wc-block-cart .wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__image img{
  border-radius:12px;background:#fff;padding:8px;width:92px;height:92px;object-fit:contain;mix-blend-mode:multiply;
}
.wc-block-cart .wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__total{padding-right:22px;text-align:right;}
.wc-block-cart .wc-block-cart-item__product .wc-block-components-product-name{
  font-size:16px;font-weight:700;color:var(--lss-ink);text-decoration:none;line-height:1.3;
}
.wc-block-cart .wc-block-cart-item__product .wc-block-components-product-name:hover{color:var(--lss-red);}
.wc-block-cart .wc-block-cart-item__product .wc-block-components-product-metadata{font-size:12.5px;color:var(--lss-muted);}
.wc-block-cart .wc-block-cart-item__prices{font-size:14px;color:var(--lss-body);margin:4px 0 8px;}
.wc-block-cart .wc-block-cart-item__quantity{display:flex;align-items:center;gap:16px;flex-wrap:wrap;margin-top:8px;}
.wc-block-cart .wc-block-components-quantity-selector{
  margin:0;border:1px solid #d3d3d8;border-radius:10px;background:#fff;height:40px;width:118px;box-shadow:none;
}
.wc-block-cart .wc-block-components-quantity-selector::after{display:none;}
.wc-block-cart .wc-block-components-quantity-selector input{font:inherit;font-weight:700;font-size:14px;}
.wc-block-cart .wc-block-components-quantity-selector button{color:#8a8a92;font-size:18px;}
.wc-block-cart .wc-block-components-quantity-selector button:hover{color:var(--lss-ink);}
.wc-block-cart .wc-block-cart-item__remove-link{font-size:12.5px;color:var(--lss-muted);text-decoration:underline;text-underline-offset:3px;}
.wc-block-cart .wc-block-cart-item__remove-link:hover{color:var(--lss-red);}
.wc-block-cart .wc-block-cart-item__total .wc-block-components-product-price{font-size:18px;font-weight:800;color:var(--lss-ink);}
.wc-block-cart .wc-block-components-product-badge{border-radius:999px;font-size:10px;padding:3px 9px;}

/* cross-sells („You may be interested in…“) */
.wc-block-cart .wp-block-woocommerce-product-collection{margin-top:44px;}
.wc-block-cart .wp-block-woocommerce-product-collection h2{font-size:22px;font-weight:800;margin:0 0 20px;}
.wc-block-cart .wc-block-product,.wc-block-cart .wc-block-grid__product{
  background:var(--lss-card);border-radius:18px;padding:0 14px 20px;overflow:hidden;
}
.wc-block-cart .wc-block-product .wc-block-components-product-image,
.wc-block-cart .wc-block-grid__product-image{margin:0 -14px 14px;padding:16px 14px;background:transparent;}
.wc-block-cart .wc-block-product .wc-block-components-product-image img,
.wc-block-cart .wc-block-grid__product-image img{aspect-ratio:256/158;object-fit:contain;mix-blend-mode:multiply;}
.wc-block-cart .wc-block-product .wp-block-post-title,.wc-block-cart .wc-block-grid__product-title{font-size:15px;font-weight:800;text-align:left;margin:0 0 6px;}
.wc-block-cart .wc-block-product .wp-block-post-title a{color:var(--lss-ink);text-decoration:none;}
.wc-block-cart .wc-block-product .wc-block-components-product-price,.wc-block-cart .wc-block-grid__product-price{text-align:left;font-size:16px;font-weight:800;color:var(--lss-ink);}
.wc-block-cart .wc-block-product .wp-block-button__link,
.wc-block-cart .wc-block-grid__product-add-to-cart .wp-block-button__link{
  background:var(--lss-black);color:#fff;border-radius:999px;height:32px;padding:0 20px;font-size:13.5px;font-weight:700;
  display:inline-flex;align-items:center;margin-top:12px;
}
.wc-block-cart .wc-block-product .wp-block-button{text-align:left;}

/* pokladňa – polia a karty */
.wc-block-checkout .wc-block-components-checkout-step__container,.wc-block-checkout .wc-block-components-checkout-step{padding-left:0;}
.wc-block-checkout .wc-block-components-checkout-step::before,.wc-block-checkout .wc-block-components-checkout-step__container::after{display:none;}
.wc-block-checkout .wc-block-components-checkout-step__title{font-size:18px;font-weight:800;}
.wc-block-checkout .wc-block-components-text-input input,.wc-block-checkout .wc-block-components-combobox .components-combobox-control__input,
.wc-block-checkout .wc-block-components-textarea{border-radius:12px;border-color:#d3d3d8;}
.wc-block-checkout .wc-block-components-radio-control__option,.wc-block-checkout .wc-block-components-radio-control-accordion-option{border-color:#e1e1e5;}
.wc-block-checkout .wc-block-checkout__sidebar .wp-block-woocommerce-checkout-order-summary-block{background:var(--lss-card);border-radius:20px;padding:22px;border:0;}
.wc-block-checkout .wc-block-components-order-summary .wc-block-components-panel__button{font-weight:800;font-size:18px;}
.wc-block-checkout .wc-block-components-totals-footer-item .wc-block-components-totals-item__value{font-size:24px;font-weight:900;}

@media (max-width:700px){
  .wc-block-cart .wc-block-cart-items .wc-block-cart-items__row{grid-template-columns:84px 1fr;gap:0 14px;}
  .wc-block-cart .wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__image{padding-left:12px;}
  .wc-block-cart .wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__image img{width:70px;height:70px;padding:6px;}
  .wc-block-cart .wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__total{grid-column:2;padding:0 14px 14px 0;text-align:left;}
  .wc-block-cart .wc-block-cart-items .wc-block-cart-items__row td{padding:14px 0;}
  .lss-cart-empty__hero{padding:36px 18px;border-radius:16px;}
  .lss-cart-empty__actions .lss-btn{width:100%;}
  .lss-cart-empty__products{margin-top:34px;}
}

/* ---------- Výsledky vyhľadávania ---------- */
.lss-search-count{margin:-14px 0 22px;}
.lss-search-none{max-width:560px;margin:10px 0 40px;}
.lss-search-none__title{font-size:22px;font-weight:800;color:var(--lss-ink);margin:0 0 6px;}
.lss-search-none__text{font-size:14.5px;color:var(--lss-muted);margin:0 0 18px;}
.lss-search-none__form{margin:0 0 16px;}
.lss-search-none__form .lss-searchform{display:flex;gap:8px;}

/* ---------- H1 úvodnej stránky – nadpis sekcie kategórií ----------
   Malý červený štítok („Shop by Category“) + H1 v mierke ostatných nadpisov
   sekcií (len o niečo väčší) + nepovinný sivý podnadpis. Žiadny samostatný
   blok – H1 je priamo hlavička sekcie, takže stránka pôsobí kompaktne. */
.lss-section--h1{margin-block:44px 0;}
.lss-section__head--h1{margin-bottom:22px;align-items:flex-end;}

@media (max-width:680px){
  .lss-section--h1{margin-block:30px 0;}
  .lss-section__head--h1{margin-bottom:14px;}
  
  
  
}

/* pruh výhod – počet položiek z pluginu, položka môže byť odkaz */

/* =========================================================
   30. Hero na tablete (681–1100 px)
   Pri širokom pomere strán (2.54:1) je banner na tablete nízky a obsah
   (obrázok nad nadpisom + nadpis + text + tlačidlo) sa doň nezmestí – ostal
   zarovnaný na spodok a vrch sa orezal. Na tablete preto výšku určuje obsah
   a nadpis sa škáluje podľa šírky. Čisto obrázkové slidy si pomer nechávajú.
   ========================================================= */
@media (min-width:681px) and (max-width:1100px){
  
  
  
  
  
  
  /* nadpis podľa šírky – nastavená veľkosť z pluginu je horný strop */
  
  
  /* šípky by prekrývali nadpis – na tablete stačia bodky a posun prstom */
  
  
  
}

/* Obrázok nad nadpisom na tablete a mobile: obe slidy dostanú rovnaký rám
   (šírka podľa nastavenia, pevná výška) a fotka sa doň vpíše – produkt na
   výšku aj na šírku pôsobí rovnako veľký, nič sa neoreže. */

