/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Mar 07 2026 | 11:06:04 */
/* Sklep - pusty koszyk */ 

/* Tytuł produktu */
.wc-block-grid__product-title {
    font-family: "Open Sans", sans-serif;
    font-size: 20px !important;
    font-weight: 500 !important;
    line-height: 1.4 !important;
    text-align: center !important;
    color: #34b913 !important;
    word-break: break-word !important;
    margin-bottom: 0.75rem !important;
    margin-top: 0px !important;
}

/* Link tytułu */
.wc-block-grid__product-link {
    display: block;
    text-align: center;
}

.wc-block-grid__product-link:hover .wc-block-grid__product-title {
    color: #34b913;
}

/* Cena */
.wc-block-grid__product-price {
    font-family: "Open Sans", sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: #3c4858;
    text-align: center;
    line-height: 21px;
}

/* Obrazek */
.wc-block-grid__product-image img {
    object-fit: cover;
    display: block;
    margin: 0 auto;
}

/* Styl bazowy przycisku - identyczny z zielonym wzorem */
.wc-block-grid__product-add-to-cart .wp-block-button__link {
    /* Kolory i tło */
    background-color: #34b913 !important;
    color: #fff !important;
    
    /* Kształt i układ */
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 9999px !important;
    padding: 12px 30px !important;
    border: none !important;
    position: relative !important;
    margin: 10px 1px !important;
    text-decoration: none !important;
    width: auto !important;
    height: auto !important;
    
    /* Typografia */
    font-family: "Open Sans", sans-serif !important;
    font-size: 12px !important;
    font-weight: 400 !important;
    text-transform: uppercase !important;
    letter-spacing: 0 !important;
    line-height: inherit !important;
    -webkit-font-smoothing: antialiased;

    /* Cień w stanie spoczynku (zgodnie z Twoim kodem) */
    box-shadow: 0 2px 2px 0 rgba(52, 185, 19, .14), 
                0 3px 1px -2px rgba(52, 185, 19, .2), 
                0 1px 5px 0 rgba(52, 185, 19, .12) !important;

    /* Animacja przejścia */
    transition: box-shadow .2s cubic-bezier(.4, 0, 1, 1), 
                background-color .2s cubic-bezier(.4, 0, .2, 1), 
                -webkit-box-shadow .2s cubic-bezier(.4, 0, 1, 1) !important;
}

/* Efekt HOVER - mocniejszy cień i zmiana tła */
.wc-block-grid__product-add-to-cart .wp-block-button__link:hover {
    background-color: #34b913 !important; /* Pozostaje zielony, ale dostaje potężny cień */
    color: #fff !important;
    outline: 0 !important;

    /* Rozbudowany cień po najechaniu (skopiowany z Twoich danych) */
    box-shadow: 0 14px 26px -12px rgba(52, 185, 19, .42), 
                0 4px 23px 0 rgba(0, 0, 0, .12), 
                0 8px 10px -5px rgba(52, 185, 19, .2) !important;
    
    /* Opcjonalny efekt lekkiego uniesienia, by wzmocnić wrażenie cienia */
    transform: translateY(-1px);
}


