/*
Theme Name: Betheme Child
Theme URI: https://themes.muffingroup.com/betheme
Author: Muffin group
Author URI: https://muffingroup.com
Description: Child Theme for Betheme
Template: betheme
Version: 1.6.2
*/

/* Stylizacja formularza pakowania na prezent */
#gift-wrapping-options-form {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    padding: 20px;
    margin-top: 30px;
    clear: both;
}

#gift-wrapping-options-form h2 {
    margin-top: 0;
}

.gift-wrap-choices {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap; /* Umożliwia zawijanie na mniejszych ekranach */
}

.gift-wrap-item {
    position: relative;
    width: calc(33.333% - 10px); /* 3 elementy w rzędzie z odstępem */
}

.gift-wrap-item input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.gift-wrap-item label {
    display: block;
    border: 2px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.gift-wrap-item img {
    max-width: 100%;
    height: 100px; /* Stała wysokość obrazka */
    object-fit: cover;
    border-radius: 3px;
    margin-bottom: 10px;
}

.gift-wrap-item .gift-wrap-label {
    display: block;
    font-weight: bold;
}

/* Stylizacja po zaznaczeniu */
.gift-wrap-item input[type="radio"]:checked + label {
    border-color: #77a464; /* Kolor główny WooCommerce */
    box-shadow: 0 0 10px rgba(119, 164, 100, 0.5);
}

.gift-dedication-field textarea {
    width: 100%;
    margin-top: 5px;
}

#gift-wrapping-options-form .button {
    width: 100%;
    margin-top: 15px;
}

/* Dostosowanie do mniejszych ekranów */
@media (max-width: 768px) {
    .gift-wrap-item {
        width: 100%; /* Każdy element w nowej linii */
    }
}