/* Golden Cookie Banner Styles */
.gcb-float-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    z-index: 999998;
    transition: all 0.3s ease;
    border: 2px solid #fff;
}

.gcb-float-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

.gcb-float-button svg {
    width: 26px;
    height: 26px;
    fill: #000;
}

.gcb-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    max-width: 400px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 2px solid #D4AF37;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 999999;
    animation: slideInLeft 0.5s ease;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.gcb-banner-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.gcb-banner-title {
    color: #D4AF37;
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.gcb-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s;
}

.gcb-close:hover {
    color: #D4AF37;
}

.gcb-banner-content {
    color: #fff;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.gcb-banner-buttons {
    display: flex;
    gap: 10px;
}

.gcb-btn {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gcb-btn-accept {
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
    color: #000;
}

.gcb-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.gcb-btn-reject {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.gcb-btn-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

.gcb-btn-settings {
    width: 100%;
    margin-top: 10px;
    padding: 10px;
    background: transparent;
    color: #D4AF37;
    border: 1px solid #D4AF37;
}

.gcb-btn-settings:hover {
    background: rgba(212, 175, 55, 0.1);
}

.gcb-settings-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.gcb-settings-content {
    background: #1a1a1a;
    border: 2px solid #D4AF37;
    border-radius: 16px;
    padding: 30px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.gcb-settings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    border-bottom: 2px solid #D4AF37;
    padding-bottom: 16px;
}

.gcb-settings-title {
    color: #D4AF37;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.gcb-cookie-category {
    background: #2d2d2d;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
}

.gcb-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.gcb-category-title {
    color: #D4AF37;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.gcb-toggle {
    position: relative;
    width: 50px;
    height: 26px;
}

.gcb-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.gcb-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #555;
    transition: 0.4s;
    border-radius: 34px;
}

.gcb-toggle-slider:before {
    position: absolute;
    content: '';
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

.gcb-toggle input:checked + .gcb-toggle-slider {
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
}

.gcb-toggle input:checked + .gcb-toggle-slider:before {
    transform: translateX(24px);
}

.gcb-toggle input:disabled + .gcb-toggle-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

.gcb-category-description {
    color: #ccc;
    font-size: 14px;
    line-height: 1.5;
}

.gcb-settings-buttons {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.gcb-cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.gcb-cookie-table th {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #D4AF37;
    padding: 16px;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid #D4AF37;
}

.gcb-cookie-table td {
    padding: 14px 16px;
    color: #333;
    border-bottom: 1px solid #eee;
}

.gcb-cookie-table tr:last-child td {
    border-bottom: none;
}

.gcb-cookie-table tr:hover {
    background: #f9f9f9;
}

.gcb-hidden {
    display: none !important;
}

@media (max-width: 768px) {
    .gcb-banner {
        left: 10px;
        right: 10px;
        bottom: 10px;
        max-width: none;
    }
    
    .gcb-settings-content {
        padding: 20px;
        width: 95%;
    }
    
    .gcb-cookie-table {
        font-size: 14px;
    }
    
    .gcb-cookie-table th,
    .gcb-cookie-table td {
        padding: 10px;
    }
}