/**
 * Cookie Consent Styles
 */

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(245, 130, 32, 0.3);
    padding: 20px;
    display: none;
    justify-content: center;
    align-items: center;
}

.cookie-consent-inner {
    max-width: 1140px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-consent-content {
    flex: 1;
    min-width: 300px;
}

.cookie-consent-content h3 {
    color: #F58220;
    font-size: 1.1rem;
    margin: 0 0 10px 0;
    font-family: 'Libre Franklin', sans-serif;
}

.cookie-consent-content p {
    color: #fff;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

.cookie-consent-content a {
    color: #F58220;
    text-decoration: underline;
}

.cookie-consent-content a:hover {
    color: #FFBC7D;
}

/* Cookie Options */
.cookie-consent-options {
    display: none;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-option {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    cursor: pointer;
}

.cookie-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: #F58220;
    cursor: pointer;
}

.cookie-option input[type="checkbox"]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.cookie-option-label {
    display: flex;
    flex-direction: column;
}

.cookie-option-label strong {
    color: #fff;
    font-size: 0.9rem;
}

.cookie-option-label small {
    color: #BEBEBE;
    font-size: 0.8rem;
}

/* Actions */
.cookie-consent-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.cookie-consent-actions .btn {
    padding: 10px 20px;
    font-size: 0.85rem;
    white-space: nowrap;
}

.cookie-btn-reject {
    background: transparent;
    border-color: #BEBEBE;
    color: #BEBEBE;
}

.cookie-btn-reject:hover {
    background: #BEBEBE;
    color: #000;
}

.cookie-btn-customize {
    background: transparent;
    border-color: #fff;
    color: #fff;
}

.cookie-btn-customize:hover {
    background: #fff;
    color: #000;
}

.cookie-btn-accept,
.cookie-btn-save {
    background: #F58220;
    border-color: #F58220;
    color: #000;
}

.cookie-btn-accept:hover,
.cookie-btn-save:hover {
    background: #FFBC7D;
    border-color: #FFBC7D;
}

/* Responsive */
@media (max-width: 768px) {
    .cookie-consent {
        padding: 15px;
    }

    .cookie-consent-inner {
        flex-direction: column;
        text-align: center;
    }

    .cookie-consent-content {
        min-width: auto;
    }

    .cookie-consent-actions {
        width: 100%;
        justify-content: center;
    }

    .cookie-consent-actions .btn {
        flex: 1;
        min-width: 100px;
    }

    .cookie-option {
        text-align: left;
    }
}

/* Animation */
@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-consent[style*="flex"] {
    animation: slideUp 0.3s ease-out;
}