/* Odstranění výchozího stylu seznamu */
.woocommerce ul.products {
  list-style: none;
  margin: 0;
  padding: 0;
  
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
}

/* Každý produkt (li) jako box vedle sebe */
.woocommerce ul.products li.product {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  text-align: center;
  width: calc(25% - 20px); /* 4 produkty vedle sebe */
  box-sizing: border-box;
  transition: transform 0.2s ease;
}

/* Hover efekt */
.woocommerce ul.products li.product:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Obrázek */
.woocommerce ul.products li.product img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 10px;
}

/* Název */
.woocommerce-loop-product__title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin: 10px 0;
  min-height: 2.6em;
}

/* Cena */
.price {
  display: block;
  font-size: 1rem;
  color: #007cba;
  font-weight: bold;
  margin-bottom: 10px;
}

/* Tlačítko */
.woocommerce ul.products li.product .button {
  background-color: #007cba;
  color: white;
  border: none;
  padding: 8px 14px;
  font-size: 0.9rem;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.woocommerce ul.products li.product .button:hover {
  background-color: #005d91;
}

/* Responsivita */
@media (max-width: 1024px) {
  .woocommerce ul.products li.product {
    width: calc(50% - 20px);
  }
}

@media (max-width: 600px) {
  .woocommerce ul.products li.product {
    width: 100%;
  }
}



.fullwidth-image {
  width: 100vw;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.fullwidth-wrapper {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
  overflow: hidden;
}


.product-image-fullwidth {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.product-image-fullwidth img {
    width: 100%;
    height: auto;
    object-fit: cover;
}


