/* --- ЗАГАЛЬНІ СТИЛІ --- */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: linear-gradient(rgba(253, 251, 247, 0.85), rgba(253, 251, 247, 0.95)), 
                url('../images/Задній_план.avif') no-repeat center center fixed;
    background-size: cover;
}

main { flex: 1; }

.navbar-brand { 
    font-weight: bold; 
    color: #198754 !important; 
}

/* --- СТОРІНКА: КАТАЛОГ (index.html) --- */
.product-card {
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.product-img {
    height: 200px;
    object-fit: cover;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.price-tag {
    font-size: 1.25rem;
    font-weight: bold;
    color: #198754;
}

/* --- СТОРІНКИ: ДОСТАВКА ТА ОФОРМЛЕННЯ --- */
.content-card {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
}

.info-icon {
    font-size: 2.5rem;
    color: #198754;
    background-color: #e8f5e9;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    height: 400px;
    width: 100%;
}

/* --- КОШИК (checkout.html) --- */
.cart-item {
    border-bottom: 1px dashed #dee2e6;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.cart-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.qty-btn {
    width: 30px;
    height: 30px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.delivery-option {
    border: 2px solid #dee2e6;
    border-radius: 10px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.delivery-option:hover {
    border-color: #198754;
    background-color: #f8fff9;
}

.delivery-option.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    border-color: #dee2e6 !important;
    background-color: #f8f9fa !important;
}

.form-check-input:checked + .form-check-label {
    font-weight: bold;
}