/* GDPR Cookie Banner Styles */
#gdpr-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(129, 39, 18, 0.95);
    color: white;
    z-index: 99999;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
    font-family: 'Rokkitt', serif;
}

.gdpr-cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.gdpr-cookie-text {
    flex: 1;
    min-width: 300px;
}

.gdpr-cookie-text p {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
}

.gdpr-cookie-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.gdpr-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Rokkitt', serif;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.gdpr-btn-accept-all {
    background: #4CAF50;
    color: white;
}

.gdpr-btn-accept-all:hover {
    background: #45a049;
}

.gdpr-btn-reject-all {
    background: #f44336;
    color: white;
}

.gdpr-btn-reject-all:hover {
    background: #da190b;
}

.gdpr-btn-customize {
    background: #ff9800;
    color: white;
}

.gdpr-btn-customize:hover {
    background: #e68900;
}

.gdpr-btn-save {
    background: #4CAF50;
    color: white;
}

.gdpr-btn-save:hover {
    background: #45a049;
}

.gdpr-btn-cancel {
    background: #9e9e9e;
    color: white;
}

.gdpr-btn-cancel:hover {
    background: #757575;
}

.gdpr-link {
    color: #fff;
    text-decoration: underline;
    font-size: 14px;
}

.gdpr-link:hover {
    color: #ddd;
}

/* Modal Styles */
#gdpr-customize-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.gdpr-modal-content {
    background: white;
    border-radius: 10px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.gdpr-modal-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gdpr-modal-header h3 {
    margin: 0;
    color: #812712;
    font-family: 'Rokkitt', serif;
    font-size: 24px;
}

.gdpr-modal-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gdpr-modal-close:hover {
    color: #812712;
}

.gdpr-modal-body {
    padding: 20px;
}

.gdpr-cookie-category {
    margin-bottom: 30px;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    background: #fafafa;
}

.gdpr-cookie-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.gdpr-cookie-header h4 {
    margin: 0;
    color: #812712;
    font-family: 'Rokkitt', serif;
    font-size: 18px;
}

.gdpr-cookie-category p {
    margin: 0;
    color: #666;
    line-height: 1.5;
    font-size: 14px;
}

/* Switch Toggle */
.gdpr-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.gdpr-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.gdpr-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 24px;
}

.gdpr-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .gdpr-slider {
    background-color: #812712;
}

input:disabled + .gdpr-slider {
    background-color: #812712;
    opacity: 0.7;
}

input:checked + .gdpr-slider:before {
    transform: translateX(26px);
}

.gdpr-modal-footer {
    padding: 20px;
    border-top: 1px solid #eee;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .gdpr-cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .gdpr-cookie-text {
        min-width: auto;
    }
    
    .gdpr-cookie-buttons {
        justify-content: center;
    }
    
    .gdpr-btn {
        padding: 12px 16px;
        font-size: 13px;
    }
    
    .gdpr-modal-content {
        margin: 10px;
        max-height: 95vh;
    }
    
    .gdpr-modal-footer {
        flex-direction: column;
    }
    
    .gdpr-modal-footer .gdpr-btn {
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    #gdpr-cookie-banner {
        padding: 15px;
    }
    
    .gdpr-cookie-text p {
        font-size: 14px;
    }
    
    .gdpr-cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .gdpr-btn {
        width: 100%;
        margin-bottom: 5px;
    }
} 