/* Cookie Consent Styles */
#cc-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: hsl(var(--darker-bg));
    border-top: 1px solid hsla(var(--primary-gold), 0.3);
    color: hsl(var(--light-text));
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.5);
    display: none;
}

#cc-banner.cc-active {
    display: block;
}

.cc-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

@media (min-width: 768px) {
    .cc-banner-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.cc-banner-text {
    flex: 1;
    font-size: 0.9rem;
}

.cc-banner-text h3 {
    font-family: var(--font-heading);
    color: hsl(var(--primary-gold));
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.cc-banner-text p {
    margin-bottom: 5px;
}

.cc-banner-text a {
    color: hsl(var(--primary-gold));
    text-decoration: underline;
}

.cc-banner-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cc-btn {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cc-btn-primary {
    background: hsl(var(--primary-gold));
    color: hsl(var(--darker-bg));
}

.cc-btn-primary:hover {
    background: hsl(var(--light-text));
}

.cc-btn-secondary {
    background: transparent;
    border: 1px solid hsl(var(--primary-gold));
    color: hsl(var(--primary-gold));
}

.cc-btn-secondary:hover {
    background: hsla(var(--primary-gold), 0.1);
}

/* Modal Styles */
#cc-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

#cc-modal.cc-active {
    display: flex;
}

.cc-modal-content {
    background: hsl(var(--dark-bg));
    border: 1px solid hsla(var(--primary-gold), 0.3);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 8px;
    padding: 30px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.cc-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid hsla(var(--primary-gold), 0.2);
    padding-bottom: 15px;
}

.cc-modal-header h2 {
    font-family: var(--font-heading);
    color: hsl(var(--primary-gold));
}

.cc-close-btn {
    background: transparent;
    border: none;
    color: hsl(var(--light-text));
    font-size: 1.5rem;
    cursor: pointer;
}

.cc-category {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid hsla(var(--primary-gold), 0.1);
}

.cc-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.cc-category-header h3 {
    font-size: 1.1rem;
    color: hsl(var(--light-text));
}

.cc-category p {
    font-size: 0.9rem;
    color: hsl(var(--medium-text));
}

/* Toggle Switch */
.cc-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.cc-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cc-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #444;
    transition: .4s;
    border-radius: 24px;
}

.cc-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .cc-slider {
    background-color: hsl(var(--primary-gold));
}

input:disabled + .cc-slider {
    background-color: hsl(var(--primary-gold));
    opacity: 0.5;
    cursor: not-allowed;
}

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

.cc-modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 20px;
}
