/*
 Theme Name:   Woodmart Child
 Description:  Woodmart Child Theme
 Author:       XTemos
 Author URI:   http://xtemos.com
 Template:     woodmart
 Version:      1.0.0
 Text Domain:  woodmart
*/


.packaging-options {
    margin-top: 20px;
}

.packaging-options h3 {
    margin-bottom: 15px;
    font-size: 18px;
    color: #333;
}

.packaging-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Dvi stulpeliai */
    gap: 20px; /* Tarpai tarp stulpelių ir eilučių */
}

.packaging-item {
    text-align: center;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 5px;
    background-color: #f9f9f9;
    transition: box-shadow 0.3s ease;
}

.packaging-item:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.packaging-item img {
    width: 80px !important; /* Nuotraukos dydis sumažintas */
    height: auto;
    margin-bottom: 10px;
    border-radius: 5px;
}

.packaging-label {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    font-size: 14px;
    color: #555;
}

.packaging-label input[type="radio"] {
    margin-right: 10px;
}


