

.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background-color: #2d1810;
    color: white;
    padding: 1.5rem;
    z-index: 1000;
    transition: bottom 0.3s ease-in-out;
    border-top: 3px solid #d4af37;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

.cookie-banner.visible {
    bottom: 0;
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1.5rem;
    align-items: center;
}

.cookie-message {
    flex-grow: 1;
}

.cookie-message h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.cookie-message p {
    font-size: 0.95rem;
    line-height: 1.4;
    margin: 0;
    opacity: 0.95;
}

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-btn-primary {
    background-color: #d4af37;
    color: #2d1810;
}

.cookie-btn-primary:hover {
    background-color: #e8c547;
    transform: translateY(-2px);
}

.cookie-btn-secondary {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

.cookie-btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.cookie-btn-tertiary {
    background-color: transparent;
    color: #d4af37;
    border: 1px solid #d4af37;
}

.cookie-btn-tertiary:hover {
    background-color: rgba(212, 175, 55, 0.1);
}

.cookie-link {
    color: #d4af37;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 0.75rem 1.5rem;
    border: 1px solid #d4af37;
    border-radius: 4px;
}

.cookie-link:hover {
    text-decoration: underline;
    opacity: 0.8;
}

.cookie-customize-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 1rem;
}

.cookie-customize-modal.visible {
    opacity: 1;
    visibility: visible;
}

.cookie-modal-content {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 1rem;
}

.cookie-modal-header h2 {
    margin: 0;
    color: #2d1810;
    font-size: 1.5rem;
}

.cookie-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cookie-modal-close:hover {
    background-color: #f0f0f0;
    color: #2d1810;
}

.cookie-option-group {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: #f9f7f3;
    border-radius: 6px;
    border-left: 3px solid #d4af37;
}

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

.cookie-checkbox {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: #d4af37;
    flex-shrink: 0;
}

.cookie-checkbox:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

.cookie-option-text h4 {
    margin: 0 0 0.25rem 0;
    color: #2d1810;
    font-size: 1rem;
    font-weight: 600;
}

.cookie-option-text p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

.cookie-modal-footer {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e0e0e0;
}

.cookie-modal-footer button {
    flex: 1;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-modal-footer .btn-confirm {
    background-color: #d4af37;
    color: #2d1810;
}

.cookie-modal-footer .btn-confirm:hover {
    background-color: #e8c547;
}

.cookie-policy-link {
    display: inline-block;
    color: #2d1810;
    text-decoration: underline;
    font-size: 0.9rem;
    margin-top: 1rem;
}

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

@media (max-width: 768px) {
    .cookie-banner-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .cookie-buttons {
        justify-content: flex-start;
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
        min-width: 120px;
    }

    .cookie-modal-content {
        padding: 1.5rem;
    }

    .cookie-message p {
        font-size: 0.9rem;
    }

    .cookie-btn {
        padding: 0.65rem 1.2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .cookie-banner {
        padding: 1rem;
    }

    .cookie-banner-content {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cookie-btn {
        width: 100%;
        padding: 0.7rem 1rem;
    }

    .cookie-btn-primary,
    .cookie-btn-secondary,
    .cookie-btn-tertiary {
        width: 100%;
    }

    .cookie-link {
        display: block;
        width: 100%;
        padding: 0.7rem 1rem;
        text-align: center;
    }

    .cookie-modal-content {
        max-height: 80vh;
        padding: 1rem;
    }

    .cookie-modal-header {
        margin-bottom: 1rem;
        padding-bottom: 0.75rem;
    }

    .cookie-option-group {
        padding: 0.75rem;
        margin-bottom: 1rem;
    }

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

    .cookie-modal-footer button {
        width: 100%;
    }
}
