/* Cookie Consent Banner */
.cookie-consent-overlay {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(201, 149, 106, 0.3);
    color: #fff;
    padding: 20px;
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
    font-family: 'Montserrat', sans-serif;
}

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

.cookie-consent-container {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    width: 100%;
    gap: 15px;
}

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

.cookie-content {
    flex: 1;
}

.cookie-content h3 {
    margin: 0 0 10px 0;
    color: #c9956a;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
}

.cookie-content p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #ccc;
}

.cookie-content a {
    color: #c9956a;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cookie-content a:hover {
    color: #fff;
}

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

.cookie-btn {
    padding: 10px 20px;
    border: 1px solid #c9956a;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    background: transparent;
    color: #c9956a;
}

.cookie-btn:hover {
    background: rgba(201, 149, 106, 0.1);
}

.cookie-btn.accept {
    background: #c9956a;
    color: #000;
}

.cookie-btn.accept:hover {
    background: #b8865d;
    box-shadow: 0 0 15px rgba(201, 149, 106, 0.4);
}

/* Common checkbox styling for forms compliance */
.privacy-checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: #666;
    text-align: left;
}

/* Dark mode adjustment for privacy checkbox */
.auth-form .privacy-checkbox-group, 
.newsletter-form-v2 .privacy-checkbox-group {
    color: #aaa;
}

.privacy-checkbox-group input[type="checkbox"] {
    margin-top: 3px;
    accent-color: #c9956a;
    width: 16px;
    height: 16px;
    cursor: pointer;
    flex-shrink: 0;
}

.privacy-checkbox-group label {
    line-height: 1.4;
    cursor: pointer;
}

.privacy-checkbox-group a {
    color: #c9956a;
    text-decoration: none;
}

.privacy-checkbox-group a:hover {
    text-decoration: underline;
}
