.elementor-367 .elementor-element.elementor-element-9c54e53{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}body.elementor-page-367:not(.elementor-motion-effects-element-type-background), body.elementor-page-367 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;}/* Start custom CSS *//* ================================
   GLOBAL WOO DARK THEME
   ================================ */

.woocommerce,
.woocommerce-page {
  background: radial-gradient(900px 500px at 50% -20%, rgba(142,240,197,.08), transparent 60%),
              linear-gradient(180deg, #07080a 0%, #0d1014 100%);
  color: rgba(255,255,255,.9);
}

/* Zrušení bílých pozadí */
.woocommerce * {
  box-shadow: none;
}

/* Nadpisy */
.woocommerce h1,
.woocommerce h2,
.woocommerce h3 {
  color: #ffffff;
}

/* Texty */
.woocommerce p,
.woocommerce span,
.woocommerce label {
  color: rgba(255,255,255,.85);
}
/* =========================================
   SHOP PAGE – MICHALTOMAN.CZ
   ========================================= */

body.woocommerce-shop,
body.post-type-archive-product {
  background:
    radial-gradient(900px 500px at 50% -20%, rgba(142,240,197,.08), transparent 60%),
    linear-gradient(180deg, #07080a 0%, #0d1014 100%);
  color: rgba(255,255,255,.9);
}

/* ===== HLAVNÍ WRAP ===== */

.woocommerce-shop .woocommerce,
.post-type-archive-product .woocommerce {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 20px 120px;
}

/* ===== NADPIS STRÁNKY ===== */

.woocommerce-products-header__title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  margin-bottom: 50px;
  color: #ffffff;
}

/* ===== GRID PRODUKTŮ ===== */

ul.products {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 34px;
}

/* ===== KARTA PRODUKTU ===== */

ul.products li.product {
  background: rgba(255,255,255,.05);
  border-radius: 26px;
  padding: 26px;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow:
    0 30px 80px rgba(0,0,0,.45),
    inset 0 0 0 1px rgba(255,255,255,.04);
  transition: transform .25s ease, box-shadow .25s ease;
}

ul.products li.product:hover {
  transform: translateY(-6px);
  box-shadow:
    0 40px 100px rgba(0,0,0,.6),
    inset 0 0 0 1px rgba(255,255,255,.06);
}

/* ===== OBRÁZEK ===== */

ul.products li.product img {
  border-radius: 18px;
  margin-bottom: 20px;
}

/* ===== NÁZEV ===== */

ul.products li.product h2,
ul.products li.product .woocommerce-loop-product__title {
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
}

/* ===== CENA ===== */

ul.products li.product .price {
  font-size: 18px;
  font-weight: 800;
  color: #8EF0C5;
  margin-bottom: 22px;
}

/* ===== TLAČÍTKO ===== */

ul.products li.product .button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 16px;
  background: #8EF0C5;
  color: #0b0d10;
  font-weight: 800;
  border-radius: 16px;
  text-decoration: none;
  box-shadow: 0 20px 50px rgba(142,240,197,.35);
  transition: transform .2s ease, box-shadow .2s ease;
}

ul.products li.product .button:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 80px rgba(142,240,197,.45);
}

/* ===== SKRÝT ZBYTEČNOSTI ===== */

.woocommerce-result-count,
.woocommerce-ordering {
  display: none;
}

/* ===== MOBIL ===== */

@media (max-width: 768px) {
  .woocommerce-shop .woocommerce {
    padding: 50px 16px 80px;
  }
}/* End custom CSS */