  /* Cookie Banner Styles - Desktop */
  .cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 450px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    padding: 20px;
    border-radius: 12px;
    z-index: 9999;
    transform: translateY(calc(100% + 40px));
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

/* Mobile Styles */
@media (max-width: 768px) {
    .cookie-banner {
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        border-radius: 12px 12px 0 0;
        padding: 15px;
        transform: translateY(100%);
    }

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

.cookie-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cookie-content {
    flex: 1;
}

.cookie-title {
    font-size: 16px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cookie-icon {
    font-size: 20px;
}

.cookie-description {
    color: #4a5568;
    font-size: 13px;
    line-height: 1.5;
}

.cookie-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.cookie-link:hover {
    color: #764ba2;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex: 1;
    min-width: 80px;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.cookie-btn-accept:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.cookie-btn-decline {
    background: #e2e8f0;
    color: #4a5568;
}

.cookie-btn-decline:hover {
    background: #cbd5e0;
}

.cookie-btn-settings {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
}

.cookie-btn-settings:hover {
    background: #667eea;
    color: white;
}

/* Cookie Settings Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.cookie-modal.show {
    opacity: 1;
    visibility: visible;
}

.cookie-modal-content {
    background: white;
    border-radius: 12px;
    max-width: 500px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-modal-header {
    padding: 20px;
    border-bottom: 1px solid #e2e8f0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 12px 12px 0 0;
}

.cookie-modal-title {
    font-size: 18px;
    font-weight: 700;
}

.cookie-modal-body {
    padding: 20px;
}

.cookie-category {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
}

.cookie-category:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

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

.cookie-category-title {
    font-size: 15px;
    font-weight: 600;
    color: #2d3748;
}

.cookie-category-description {
    color: #718096;
    font-size: 13px;
    line-height: 1.5;
}

/* Custom Toggle Switch */
.cookie-switch {
    position: relative;
    width: 44px;
    height: 24px;
}

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

.cookie-switch-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #cbd5e0;
    transition: .3s;
    border-radius: 24px;
}

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

.cookie-switch input:checked + .cookie-switch-slider {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

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

.cookie-switch input:disabled + .cookie-switch-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-modal-footer {
    padding: 15px 20px;
    background: #f8f9fa;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    border-radius: 0 0 12px 12px;
}

/* Status Display */
.cookie-status {
    margin-top: 20px;
    padding: 15px;
    background: #f0fff4;
    border: 1px solid #9ae6b4;
    border-radius: 8px;
    color: #22543d;
}

.cookie-status h3 {
    margin-bottom: 10px;
    color: #22543d;
}

.cookie-status-item {
    padding: 5px 0;
    font-size: 14px;
}

/* Mobile specific adjustments */
@media (max-width: 480px) {
    .cookie-btn {
        font-size: 12px;
        padding: 8px 12px;
    }

    .cookie-title {
        font-size: 14px;
    }

    .cookie-description {
        font-size: 12px;
    }

    .cookie-modal-content {
        margin: 10px;
        max-height: 90vh;
    }
}