.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    padding: 32px;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: none;
    border-top: 3px solid #4A7C59;
}

.cookie-banner.show {
    display: block;
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: 24px;
}

.cookie-text h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2C3E35;
    margin-bottom: 8px;
}

.cookie-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #5A6B5E;
}

.cookie-banner-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-policy-link {
    display: inline-block;
    margin-top: 8px;
    font-size: 14px;
    color: #4A7C59;
    text-decoration: underline;
}

.cookie-policy-link:hover {
    color: #3d6749;
}

.cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cookie-btn-accept {
    background-color: #4A7C59;
    color: white;
}

.cookie-btn-accept:hover {
    background-color: #3d6749;
}

.cookie-btn-reject {
    background-color: #E8735C;
    color: white;
}

.cookie-btn-reject:hover {
    background-color: #d5644a;
}

.cookie-btn-customize {
    background-color: transparent;
    color: #4A7C59;
    border: 2px solid #4A7C59;
}

.cookie-btn-customize:hover {
    background-color: #4A7C59;
    color: white;
}

.cookie-btn-secondary {
    background-color: #F4F1EA;
    color: #2C3E35;
}

.cookie-btn-secondary:hover {
    background-color: #e8e4da;
}

.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background-color: white;
    border-radius: 12px;
    padding: 32px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.cookie-modal-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: #2C3E35;
    margin-bottom: 16px;
}

.cookie-modal-description {
    font-size: 14px;
    line-height: 1.6;
    color: #5A6B5E;
    margin-bottom: 24px;
}

.cookie-option {
    margin-bottom: 20px;
    padding: 16px;
    background-color: #F4F1EA;
    border-radius: 8px;
}

.cookie-option-label {
    display: flex;
    align-items: start;
    gap: 12px;
    cursor: pointer;
}

.cookie-option-label input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    cursor: pointer;
}

.cookie-option-label input[type="checkbox"]:disabled {
    cursor: not-allowed;
}

.cookie-option-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cookie-option-text strong {
    font-size: 16px;
    color: #2C3E35;
    font-weight: 600;
}

.cookie-option-text small {
    font-size: 13px;
    color: #5A6B5E;
    line-height: 1.4;
}

.cookie-modal-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .cookie-banner {
        padding: 24px 16px;
    }

    .cookie-banner-actions {
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }

    .cookie-modal {
        padding: 16px;
    }

    .cookie-modal-content {
        padding: 24px;
    }

    .cookie-modal-actions {
        flex-direction: column;
    }

    .cookie-modal-actions .cookie-btn {
        width: 100%;
    }
}
