/*
Theme Name: Motopro (Blocksy Child)
Template: blocksy
*/


/* Grid layout pro WooCommerce produkty */
body.search ul.products {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)) !important;
    gap: 20px !important;
    padding: 0;
    list-style: none;
}

/* Každý produkt */
body.search ul.products li.product {
    width: auto !important; /* OPRAVA - NE width: 100% */
    margin: 0;
    padding: 10px;
    border: 1px solid #eee;
    background-color: #fff;
    text-align: center;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

/* Hover efekt */
body.search ul.products li.product:hover {
    transform: scale(1.02);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Nadpis */
body.search h1.page-title {
    font-size: 26px;
    color: #f47c20;
    font-weight: bold;
    margin-bottom: 30px;
}

body.search h1.page-title span {
    color: black;
}
body.search .page-title {
    font-size: 26px !important;
    font-weight: bold;
    color: #f47c20 !important;
    margin-top: 20px;
    margin-bottom: 20px;
}

body.search .page-title::before {
    content: "🔍 ";
}
/* Vizuální opravy pro vyhledávání */
body.search ul.products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}

body.search ul.products li.product {
    box-shadow: 0 0 5px rgba(0,0,0,0.05);
    padding: 10px;
    background: #fff;
    text-align: center;
}/* === Kategorie a podkategorie - moderní přehledný vzhled === */

/* Načtení Roboto */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;600&display=swap');

/* === MOTOPRO NAVBAR – HLAVNÍ LIŠTA === */
.motopro-navbar-wrapper {
  width: 100%;
  background: #f47c20; /* hlavní oranžová */
  color: #fff;
  position: relative;
  z-index: 100;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  font-family: "Roboto", sans-serif;
}

/* Kontejner navigace */
.motopro-navbar {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0;
}

/* Hlavní menu */
.motopro-menu {
  list-style: none;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  margin: 0;
  padding: 0;
}

.motopro-menu > li {
  position: relative;
  margin: 0;
}

.motopro-menu > li > a {
  display: block;
  padding: 14px 22px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 15px;
  transition: background 0.2s ease;
}

.motopro-menu > li:hover > a {
  background: #d86815;
}

/* === PODMENU (subkategorie) === */
.motopro-menu .submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  color: #000;
  min-width: 220px;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  z-index: 999;
  padding: 8px 0;
}

.motopro-menu .submenu li {
  list-style: none;
}

.motopro-menu .submenu a {
  display: block;
  padding: 10px 16px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
}

.motopro-menu .submenu a:hover {
  background: #f5f5f5;
  color: #f47c20;
}

/* Aktivace submenu na hover */
.motopro-menu > li:hover > .submenu {
  display: block;
}

/* Odkaz "Všechny kategorie" */
.motopro-menu .submenu-all a {
  color: #f47c20;
  font-weight: bold;
  border-top: 1px solid #eee;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .motopro-menu {
    flex-wrap: wrap;
    justify-content: center;
  }
  .motopro-menu > li > a {
    padding: 10px 14px;
    font-size: 14px;
  }
  .motopro-menu .submenu {
    position: static;
    box-shadow: none;
  }
}

/* === MOTOPRO TOPBAR (horní lišta) === */
.motopro-topbar {
  width: 100%;
  background: #f8f8f8;
  border-bottom: 1px solid #e0e0e0;
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  color: #333;
}

.motopro-topbar-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 6px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* Levá část */
.motopro-topbar-left a {
  color: #333;
  text-decoration: none;
  margin-right: 18px;
  transition: color 0.2s ease;
}

.motopro-topbar-left a:hover {
  color: #f47c20;
}

/* Pravá část */
.motopro-topbar-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.motopro-topbar-right a {
  color: #333;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s ease;
}

.motopro-topbar-right a:hover {
  color: #f47c20;
}

/* Speciální zvýraznění odkazu Kontaktujte nás */
.motopro-topbar-contact {
  font-weight: 600;
  border-left: 1px solid #ddd;
  padding-left: 12px;
}

/* Ikony dashicons */
.motopro-topbar-right .dashicons {
  font-size: 14px;
  width: 14px;
  height: 14px;
  line-height: 14px;
}

/* Responsivita */
@media (max-width: 768px) {
  .motopro-topbar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .motopro-topbar-right {
    flex-wrap: wrap;
    gap: 10px;
  }
}

/* === MOTOPRO HOMEPAGE === */
.motopro-hero {
  background: linear-gradient(to right, #f47c20, #ff9a44);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}
.motopro-hero h1 {
  font-size: 46px;
  margin-bottom: 10px;
  font-weight: 700;
}
.motopro-hero p {
  font-size: 20px;
  margin-bottom: 30px;
}
.motopro-hero-buttons a {
  display: inline-block;
  margin: 5px 10px;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
}
.btn-primary {
  background: #fff;
  color: #f47c20;
}
.btn-primary:hover {
  background: #f5f5f5;
}
.btn-secondary {
  border: 2px solid #fff;
  color: #fff;
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.2);
}

/* Kategorie */
.motopro-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 40px 20px;
}
.motopro-cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}
.motopro-cat-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: #eee;
  text-align: center;
  color: #000;
  text-decoration: none;
}
.motopro-cat-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform .4s ease;
}
.motopro-cat-item:hover img {
  transform: scale(1.05);
}
.motopro-cat-item h3 {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  text-shadow: 0 2px 5px rgba(0,0,0,0.4);
}

/* Sekce doporučujeme */
.motopro-products h2 {
  text-align: center;
  font-size: 28px;
  color: #f47c20;
  margin-bottom: 20px;
}

/* Výhody */
.motopro-benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: center;
}
.motopro-benefit-grid .benefit {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  padding: 30px 20px;
}
.motopro-benefit-grid .emoji {
  font-size: 32px;
  display: block;
  margin-bottom: 10px;
}
.motopro-benefit-grid h3 {
  color: #f47c20;
  margin-bottom: 10px;
}


/* === MOTOPRO STICKY HEADER (vylepšená verze) === */
.motopro-sticky-header {
  position: fixed;
  top: -100px;
  left: 0;
  width: 100%;
  background: #f47c20;
  color: #fff;
  z-index: 9999;
  transition: top 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 0 rgba(0,0,0,0);
  opacity: 0;
  pointer-events: none;
}

.motopro-sticky-header.sticky-active {
  top: 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  opacity: 1;
  pointer-events: all;
}

.motopro-sticky-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 5px 15px; /* menší výška */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

/* Logo vlevo */
.sticky-left {
  flex-shrink: 0;
}
.sticky-left img {
  height: 30px;
  width: auto;
  display: block;
}

/* Střední část (menu) */
.sticky-center {
  flex: 1;
  display: flex;
  justify-content: center;
}

.sticky-center ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 14px;
}

.sticky-center li {
  position: relative;
}

.sticky-center a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
  padding: 8px 4px;
  display: block;
  transition: opacity 0.2s ease;
}

.sticky-center a:hover {
  opacity: 0.85;
}

/* Submenu */
.sticky-center li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  color: #000;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  z-index: 10000;
  min-width: 180px;
}

.sticky-center li:hover > ul {
  display: block;
}

.sticky-center li ul li a {
  color: #333;
  padding: 8px 14px;
  font-size: 13px;
}

.sticky-center li ul li a:hover {
  background: #f5f5f5;
  color: #f47c20;
}

/* Pravá část (vyhledávání + košík) */
.sticky-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Vyhledávání */
.sticky-search form {
  display: flex;
  align-items: center;
}

.sticky-search input[type="search"] {
  background: #fff;
  color: #333;
  padding: 6px 10px;
  border: none;
  border-radius: 4px 0 0 4px;
  width: 140px;
}

.sticky-search input::placeholder {
  color: #666;
}

.sticky-search button,
.sticky-search input[type="submit"] {
  background: #fff;
  color: #f47c20;
  border: none;
  padding: 6px 10px;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
}

/* Košík */
.sticky-cart a {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}

.sticky-cart .dashicons {
  font-size: 18px;
}

/* Responsivita */
@media (max-width: 900px) {
  .motopro-sticky-inner {
    flex-wrap: wrap;
    justify-content: center;
  }
  .sticky-center ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  .sticky-search input[type="search"] {
    width: 100px;
  }
}

/* === MOTOPRO STICKYBAR === */
.motopro-stickybar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 42px;
  background: #f47c20;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  z-index: 9999;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.motopro-stickybar.visible {
  transform: translateY(0);
}

.motopro-stickybar .motopro-menu > li > a {
  font-size: 13px;
  padding: 8px 10px;
  color: #fff;
}

.motopro-stickybar .sticky-logo {
  position: absolute;
  left: 18px;
  height: 100%;
  display: flex;
  align-items: center;
}

.motopro-stickybar .sticky-logo img {
  height: 26px;
  width: auto;
  display: block;
}

.motopro-stickybar .sticky-right {
  position: absolute;
  right: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.motopro-stickybar .sticky-search input {
  height: 26px;
  border-radius: 4px;
  border: none;
  padding: 3px 8px;
  font-size: 13px;
}

.motopro-stickybar .sticky-cart {
  font-size: 18px;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}

.motopro-stickybar .sticky-cart .cart-total {
  font-size: 14px;
  color: #fff;
  opacity: 0.85;
}

/* === MOTOPRO HOMEPAGE === */

.motopro-hero {
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 120px 20px;
  position: relative;
}
.motopro-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}
.motopro-hero .container {
  position: relative;
  z-index: 1;
}
.motopro-hero h1 {
  font-size: 46px;
  font-weight: 800;
  margin-bottom: 15px;
}
.motopro-hero p { font-size: 18px; }
.hero-buttons {
  margin-top: 25px;
}
.btn-orange {
  background: #f47c20;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}
.btn-white {
  background: white;
  color: #f47c20;
  margin-left: 10px;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

/* Kategorie */
.main-cats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 25px;
  margin: 60px 0;
}
.cat-box {
  background: white;
  border: 2px solid #f47c20;
  border-radius: 12px;
  text-align: center;
  padding: 25px;
  transition: 0.3s;
}
.cat-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.cat-box img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  margin-bottom: 10px;
}
.btn-orange-outline {
  border: 2px solid #f47c20;
  color: #f47c20;
  padding: 8px 16px;
  display: inline-block;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
}

/* Sekce */
.motopro-products, .motopro-about, .motopro-news {
  margin: 80px auto;
}
.motopro-about .about-logos img {
  max-height: 40px;
  margin: 0 10px;
  opacity: 0.8;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.news-item img {
  border-radius: 10px;
  margin-bottom: 10px;
}
.news-item h3 {
  font-size: 18px;
  color: #000;
}

.motopro-home-products {
  max-width: 1300px;
  margin: 60px auto;
  padding: 0 20px;
}

.motopro-home-title {
  font-size: 26px;
  font-weight: 700;
  color: #111;
  border-left: 6px solid #f47c20;
  padding-left: 12px;
  margin-bottom: 20px;
}

.motopro-home-products ul.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
}

@media (max-width: 768px) {
  .motopro-home-products ul.products {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* === HOMEPAGE PRODUCT GRID === */
.motopro-home-products {
  max-width: 1300px;
  margin: 60px auto;
  padding: 0 20px;
}

.motopro-home-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-left: 12px;
  border-left: 6px solid #f47c20;
}

.motopro-home-title a {
  color: #111;
  text-decoration: none;
}

.motopro-home-title a:hover {
  color: #f47c20;
}

/* Grid */
.motopro-home-products ul.products {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
}

/* Product card improvements */
.motopro-home-products ul.products li.product {
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 15px !important;
  background: #fff;
  transition: box-shadow .25s, transform .25s;
}

.motopro-home-products ul.products li.product:hover {
  transform: translateY(-4px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

/* WRAPPER */
.motopro-archive-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* SIDEBAR */
.motopro-sidebar {
  border-right: 1px solid #eee;
  padding-right: 20px;
}

.motopro-sidebar ul {
  list-style: none;
  padding: 0;
}

.motopro-sidebar li {
  margin-bottom: 8px;
}

.motopro-sidebar a {
  color: #222;
  text-decoration: none;
  font-weight: 500;
}

.motopro-sidebar a:hover {
  color: #f47c20;
}

/* SUBCATEGORY GRID */
.motopro-subcat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 25px;
}

.motopro-subcat-card {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform .25s;
}

.motopro-subcat-card:hover {
  transform: translateY(-5px);
}

.motopro-subcat-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.motopro-subcat-card span {
  display: block;
  padding: 10px 0;
  font-weight: 600;
}

/* SUBCATEGORY TEXT LINKS */
.motopro-subcat-links {
  margin-bottom: 30px;
}

.motopro-subcat-links a {
  margin-right: 12px;
  font-size: 14px;
  color: #f47c20;
}

/* BRAND BAR FIX */
.motopro-brand-bar {
  margin-top: 60px;
}

.motopro-brand-bar img {
  height: 36px;
  width: auto;
  object-fit: contain;
}

/* Global container width */
.container, .site-container, body .ct-container {
    max-width: 1400px !important;
}

/* ------------------------------------------- */
/* TRUST BLOCK */
/* ------------------------------------------- */

.motopro-trust-wrapper {
  padding: 50px 0;
  background: #fafafa;
  margin-top: 40px;
}

/* WHY grid */
.why-inner {
  max-width: 1400px;
  margin: 0 auto 50px;
  text-align: center;
}

.why-inner h2 {
  font-size: 28px;
  margin-bottom: 30px;
  color: #111;
}

.why-inner h2 span {
  color: #ff6a00;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 15px;
}

.why-item {
  background: #fff;
  border: 1px solid #eee;
  padding: 18px;
  border-radius: 8px;
}

.why-item img {
  height: 48px;
  margin-bottom: 10px;
}

/* Brand strip */
.motopro-brand-strip {
  padding: 20px 0;
  border-top: 2px solid #ff6a00;
  background: #fff;
}

.brand-strip-inner {
  max-width: 1400px;
  margin: auto;
  overflow: hidden;
  padding-top: 10px;
}

.brand-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  align-items: center;
  gap: 20px;
  padding: 10px 0;
}

.brand-row img {
  max-height: 40px;
  width: auto;
  filter: grayscale(0%);
  opacity: 0.95;
  transition: .2s;
}

.brand-row img:hover {
  transform: scale(1.05);
  filter: none;
}

/* Product card alignment */
.motopro-home-products ul.products {
  display: grid !important;
  grid-template-columns: repeat(4,1fr);
  gap: 25px;
}

/* ===== Šablonové (klikací) swatche – obarvení přes JS třídy ===== */
.mp-swatch--instock,
.mp-swatch--instock .variable-item-span {
  color: #1f7a1f !important;
  border-color: #1f7a1f !important;
  background: #eef9ee !important;
  font-weight: 700 !important;
}

.mp-swatch--leadtime,
.mp-swatch--leadtime .variable-item-span {
  color: #2f9b2f !important;
  border-color: #89c989 !important;
  background: #f5fcf5 !important;
  font-weight: 500 !important;
}

.mp-swatch--inquiry,
.mp-swatch--inquiry .variable-item-span {
  color: #1f5fa8 !important;
  border-color: #8eb4e3 !important;
  background: #f3f8ff !important;
  font-weight: 500 !important;
}

.mp-swatch--disabled,
.mp-swatch--disabled .variable-item-span {
  color: #b52828 !important;
  border-color: #e5aaaa !important;
  background: #fff6f6 !important;
  text-decoration: line-through !important;
  font-weight: 500 !important;
  opacity: .95 !important;
}

/* ===== variation-swatches-woo (cfvsw) swatche ===== */
.cfvsw-swatches-option.mp-swatch--instock {
  border: 1px solid #1f7a1f !important;
  background: #eef9ee !important;
}
.cfvsw-swatches-option.mp-swatch--instock .cfvsw-swatch-inner {
  color: #1f7a1f !important;
  font-weight: 700 !important;
}

.cfvsw-swatches-option.mp-swatch--leadtime {
  border: 1px solid #89c989 !important;
  background: #f5fcf5 !important;
}
.cfvsw-swatches-option.mp-swatch--leadtime .cfvsw-swatch-inner {
  color: #2f9b2f !important;
  font-weight: 500 !important;
}

.cfvsw-swatches-option.mp-swatch--inquiry {
  border: 1px solid #8eb4e3 !important;
  background: #f3f8ff !important;
}
.cfvsw-swatches-option.mp-swatch--inquiry .cfvsw-swatch-inner {
  color: #1f5fa8 !important;
  font-weight: 500 !important;
}

.cfvsw-swatches-option.mp-swatch--disabled {
  border: 1px solid #e5aaaa !important;
  background: #fff6f6 !important;
  opacity: .95 !important;
}
.cfvsw-swatches-option.mp-swatch--disabled .cfvsw-swatch-inner {
  color: #b52828 !important;
  text-decoration: line-through !important;
  font-weight: 500 !important;
}

/* ===== Šablonové (klikací) varianty na detailu produktu ===== */
.single-product .variable-items-wrapper,
.single-product .variations .value {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.single-product .variable-items-wrapper .variable-item,
.single-product .variable-items-wrapper .variable-item .variable-item-span,
.single-product .variations .value > span,
.single-product .variations .value > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  padding: 3px 8px;
  border: 1px solid #d4d7dc;
  border-radius: 2px;
  background: #fff;
  color: #444;
  font-size: 12px;
  line-height: 1.25;
  text-decoration: none;
}

.single-product .variable-items-wrapper .variable-item {
  padding: 0;
  overflow: hidden;
}

.single-product .variable-items-wrapper .variable-item .variable-item-span {
  padding: 3px 8px;
}

/* leadtime / dodavatel */
.single-product .variable-item.onbackorder,
.single-product .variable-item.backorder,
.single-product .variable-item.available-on-backorder,
.single-product [data-stock-state="leadtime"],
.single-product [data-stock-status="leadtime"],
.single-product [data-stock-state="onbackorder"],
.single-product [data-stock-status="onbackorder"],
.single-product [data-availability="lead"] {
  color: #2f9b2f !important;
  border-color: #89c989 !important;
  background: #f5fcf5 !important;
  font-weight: 500 !important;
}

/* inquiry */
.single-product .variable-item.inquiry,
.single-product [data-stock-state="inquiry"],
.single-product [data-stock-status="inquiry"],
.single-product [data-availability="inquiry"] {
  color: #1f5fa8 !important;
  border-color: #8eb4e3 !important;
  background: #f3f8ff !important;
  font-weight: 500 !important;
}

/* disabled */
.single-product .variable-item.disabled,
.single-product .variable-item.out-of-stock,
.single-product .variable-item.outofstock,
.single-product [data-stock-state="disabled"],
.single-product [data-stock-status="disabled"],
.single-product [data-stock-state="outofstock"],
.single-product [data-stock-status="outofstock"],
.single-product [data-availability="outofstock"] {
  color: #b52828 !important;
  border-color: #e5aaaa !important;
  background: #fff6f6 !important;
  text-decoration: line-through !important;
  font-weight: 500 !important;
  opacity: .95;
}

/* fallback dostupné = skladem u nás */
.single-product [data-stock-state="instock"],
.single-product [data-stock-status="instock"],
.single-product [data-availability="instock"],
.single-product .variable-item:not(.disabled):not(.out-of-stock):not(.outofstock):not(.backorder):not(.onbackorder):not(.available-on-backorder):not(.inquiry) {
  color: #1f7a1f !important;
  border-color: #1f7a1f !important;
  background: #eef9ee !important;
  font-weight: 700 !important;
}
