/* Bordery pro platební metody a dopravu */

/* Základní border pro všechny custom radio labels */
.custom-radio-label {
    border: 2px solid #E0E0E0 !important;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Hover efekt */
.custom-radio-label:hover {
    border: 2px solid #E0E0E0 !important;
    background-color: #fafafa;
    transform: none !important;
    box-shadow: none !important;
}

/* Aktivní/vybraná položka */
.custom-radio-label:has(input:checked) {
    border: 2px solid #00466A !important;
    background-color: #f0f7ff;
    box-shadow: 0 2px 8px rgba(0, 70, 106, 0.1);
}

/* Zajistit správné zarovnání obsahu */
.shipping-text-wrapper,
.payment-text-wrapper {
    flex: 1;
}

.shipping-price,
.payment-price {
    font-weight: 600;
    color: #00466A;
    white-space: nowrap;
}

/* Ikony */
.shipping-icon,
.payment-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* Custom radio button styling */
.custom-radio {
    position: relative;
    width: 20px;
    height: 20px;
    border: 2px solid #E0E0E0;
    border-radius: 50%;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

/* Radio button když je vybraný */
.custom-radio-label input[type="radio"]:checked + .custom-radio {
    border-color: #00466A;
}

.custom-radio-label input[type="radio"]:checked + .custom-radio::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background-color: #00466A;
    border-radius: 50%;
}

/* Skrýt původní radio button */
.custom-radio-label input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

/* Sekce dopravy a platby */
.vyber-dopravy,
.vyber-platby {
    margin-bottom: 24px;
}

.vyber-dopravy h4,
.vyber-platby h4 {
    margin-bottom: 16px;
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
}