/*
 Theme Name:   Shoptimizer Child
 Description:  Motyw potomny dla Shoptimizer - modyfikacja linku miniaturki
 Author:       SlaX
 Template:     shoptimizer
 Version:      3.0.0
*/

/* 3. Brak efektu "ruszania obrazka"(hover-zoom) */
.woocommerce-product-gallery img {
    transition: transform 0.4s ease-in-out;
}

.woocommerce-product-gallery:hover img {
    transform: scale(1.06);
}

/* miniaturka kafelka z produktem */
ul.products li.product .woocommerce-LoopProduct-link img {
    width: 100%;
    aspect-ratio: 1 / 1;
    /* Możesz zmienić na np. 4 / 5 jeśli chcesz prostokąt */
    object-fit: cover;
    height: auto;
    display: block;
}

/* faq akordeon styl */
.faq-question {
    cursor: pointer;
    margin: 0;
    padding: 0.5em;
    background: #f5f5f5;
    border: 1px solid #ccc;
}

.faq-answer {
    display: none;
    padding: 0.5em;
    border: 1px solid #ddd;
    border-top: none;
    background: #fafafa;
}

.faq-item.active .faq-answer {
    display: block;
}

.product-faq-heading {
  max-width: 800px;
  margin: 2em auto 1em auto;
  text-align: center;
}

.product-faq {
  max-width: 800px;
  margin: 0 auto;
}

