/* Cookie Consent Banner */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    border-top: 2px solid #C9A86F;
    padding: 1.5rem;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}

.cookie-consent-banner.show {
    transform: translateY(0);
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-consent-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 1rem;
}

.cookie-consent-header h3 {
    color: #F2F2F2;
    font-size: 1.5rem;
    margin: 0;
}

.cookie-consent-close {
    background: none;
    border: none;
    color: #F2F2F2;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s;
}

.cookie-consent-close:hover {
    color: #C9A86F;
}

.cookie-consent-text {
    color: #B8B8B8;
    flex: 1;
    margin: 0;
    line-height: 1.6;
}

.cookie-consent-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-consent-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 9999px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
}

.cookie-consent-btn-secondary {
    background: #2a2a2a;
    color: #F2F2F2;
    border: 1px solid #3a3a3a;
}

.cookie-consent-btn-secondary:hover {
    background: #3a3a3a;
    border-color: #C9A86F;
}

.cookie-consent-btn-accept-all,
.cookie-consent-btn-primary {
    background: #C9A86F;
    color: #0E0E0E;
}

.cookie-consent-btn-accept-all:hover,
.cookie-consent-btn-primary:hover {
    background: #E2C99C;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201, 168, 111, 0.4);
}

/* Cookie Consent Modal */
.cookie-consent-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s;
    overflow-y: auto;
}

.cookie-consent-modal.show {
    opacity: 1;
}

.cookie-consent-modal-content {
    background: #1a1a1a;
    border: 2px solid #C9A86F;
    border-radius: 1.5rem;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    transform: scale(0.9);
    transition: transform 0.3s;
}

.cookie-consent-modal.show .cookie-consent-modal-content {
    transform: scale(1);
}

.cookie-consent-modal-header {
    padding: 2rem;
    border-bottom: 1px solid #3a3a3a;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cookie-consent-modal-header h2 {
    color: #F2F2F2;
    margin: 0;
    font-size: 1.75rem;
}

.cookie-consent-modal-body {
    padding: 2rem;
    overflow-y: auto;
    flex: 1;
}

.cookie-consent-modal-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid #3a3a3a;
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

/* Cookie Category */
.cookie-category {
n.cookie-category-header {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.cookie-category-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2a2a2a;
    border-radius: 1rem;
    border: 2px solid #3a3a3a;
    flex-shrink: 0;
}
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #2a2a2a;
    border-radius: 1rem;
    border: 1px solid #3a3a3a;
}


.cookie-category-info {
    flex: 1;
}

.cookie-category-info h4 {
    color: #F2F2F2;
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.cookie-required {
    color: #C9A86F;
    font-size: 0.875rem;
    font-weight: normal;
}

.cookie-category-info p {
    color: #B8B8B8;
    margin: 0;
    line-height: 1.6;
}

/* Toggle Switch */
.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
    flex-shrink: 0;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #3a3a3a;
    transition: 0.3s;
    border-radius: 34px;
}

.cookie-toggle-slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: #F2F2F2;
    transition: 0.3s;
    border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background-color: #C9A86F;
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
    transform: translateX(26px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Cookie Details */
.cookie-category-details {
    margin-top: 1rem;
}

.cookie-details-toggle {
    background: none;
    border: none;
    color: #C9A86F;
    cursor: pointer;
    padding: 0.5rem 0;
    font-size: 0.875rem;
    text-decoration: underline;
}

.cookie-details-toggle:hover {
    color: #E2C99C;
}

.cookie-details {
    margin-top: 1rem;
    padding: 1rem;
    background: #1a1a1a;
    border-radius: 0.5rem;
}

.cookie-details table {
    width: 100%;
    border-collapse: collapse;
}

.cookie-details th,
.cookie-details td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid #3a3a3a;
}

.cookie-details th {
    color: #C9A86F;
    font-weight: 600;
}

.cookie-details td {
    color: #B8B8B8;
}

.cookie-details code {
    background: #2a2a2a;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    color: #C9A86F;
    font-size: 0.875rem;
}

/* Confirmation Message */
.cookie-consent-confirmation {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #1a1a1a;
    border: 2px solid #C9A86F;
    color: #F2F2F2;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    z-index: 10002;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.cookie-consent-confirmation.show {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
    }

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

    .cookie-consent-btn {
        width: 100%;
    }

    .cookie-consent-modal {
        padding: 1rem;
    }

    .cookie-consent-modal-content {
        max-height: 95vh;
    }

    .cookie-consent-modal-header,
    .cookie-consent-modal-body,
    .cookie-consent-modal-footer {
        padding: 1rem;
    }


    .cookie-consent-confirmation {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
    }
}

/* Cookie Category Icon */
.cookie-category-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2a2a2a;
    border-radius: 1rem;
    border: 2px solid #3a3a3a;
    flex-shrink: 0;
}


@media (max-width: 768px) {
    .cookie-category-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

/* Cookie Category Icon */
.cookie-category-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2a2a2a;
    border-radius: 1rem;
    border: 2px solid #3a3a3a;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .cookie-category-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}
