/* Styly pro doručovací adresu */

/* Sekce doručovací adresy */
.dorucovaci-sekce {
    margin-top: 2rem;
}

/* Checkbox pro stejnou adresu */
.dorucovaci-checkbox {
    margin-bottom: 1.5rem;
}

.dorucovaci-checkbox label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    color: #333;
}

.dorucovaci-checkbox input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

/* Doručovací údaje používají stejné styly jako fakturační údaje */
.dorucovaci-udaje {
    animation: fadeIn 0.3s ease-in-out;
}

/* Grid layout pouze pro desktop */
@media (min-width: 769px) {
    /* Zajistit správný grid layout pro doručovací údaje */
    .dorucovaci-udaje.fakturacni-udaje {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }

    /* Správné rozložení inputů */
    .dorucovaci-udaje input[name="shipping_first_name"],
    .dorucovaci-udaje input[name="shipping_last_name"] {
        grid-column: span 1;
    }

    .dorucovaci-udaje input[name="shipping_street"] {
        grid-column: 1;
    }

    .dorucovaci-udaje input[name="shipping_house_number"] {
        grid-column: 2;
    }

    .dorucovaci-udaje input[name="shipping_city"] {
        grid-column: 1;
    }

    .dorucovaci-udaje input[name="shipping_postcode"] {
        grid-column: 2;
    }

    /* Země info na celou šířku */
    .dorucovaci-udaje .zeme-info {
        grid-column: 1 / -1;
        margin-top: 0;
    }
}

/* Animace */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

