.cookies-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(145deg, #131313 0%, #1a1a1a 100%);
    color: white;
    padding: 20px;
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
    border-top: 3px solid #00A5E0;
}

.cookies-popup.show {
    transform: translateY(0);
}

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

.cookies-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.cookies-icon {
    font-size: 24px;
    color: #273963;
}

.cookies-title {
    font-size: 18px;
    font-weight: 600;
    color: #00A5E0;
    margin: 0;
}

.cookies-text {
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 15px 0;
    opacity: 0.9;
}

.cookies-details {
    background: rgba(0, 165, 224, 0.1);
    border-radius: 6px;
    padding: 15px;
    margin: 10px 0;
    border-left: 3px solid #00A5E0;
    display: none;
}

.cookies-details.show {
    display: block;
}

.cookies-category {
    margin-bottom: 12px;
}

.cookies-category h4 {
    margin: 0 0 6px 0;
    color: #00A5E0;
    font-size: 14px;
    font-weight: 600;
}

.cookies-category p {
    margin: 0;
    font-size: 13px;
    opacity: 0.8;
    line-height: 1.5;
}

.cookies-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.cookies-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    min-width: 120px;
}

.cookies-btn-accept {
    background: #273963;
    color: white;
}

.cookies-btn-accept:hover {
    background: #0077A0;
    transform: translateY(-2px);
}

.cookies-btn-reject {
    background: transparent;
    color: #ccc;
    border: 1px solid #555;
}

.cookies-btn-reject:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.cookies-btn-settings {
    background: transparent;
    color: #00A5E0;
    border: 1px solid #00A5E0;
}

.cookies-btn-settings:hover {
    background: rgba(0, 165, 224, 0.1);
}

.cookies-link {
    color: #00A5E0;
    text-decoration: underline;
    cursor: pointer;
    font-size: 13px;
}

.cookies-link:hover {
    color: #0077A0;
}

.cookies-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cookies-toggle:last-child {
    border-bottom: none;
}

.cookies-toggle-info {
    flex: 1;
}

.cookies-toggle-title {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 4px 0;
}

.cookies-toggle-desc {
    font-size: 12px;
    opacity: 0.7;
    margin: 0;
}

.cookies-switch {
    position: relative;
    width: 50px;
    height: 24px;
    background: #555;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cookies-switch.active {
    background: #00A5E0;
}

.cookies-switch:before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.cookies-switch.active:before {
    transform: translateX(26px);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .cookies-popup {
        padding: 15px;
    }

    .cookies-content {
        gap: 12px;
    }

    .cookies-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .cookies-btn {
        width: 100%;
        min-width: unset;
    }

    .cookies-text {
        font-size: 13px;
    }

    .cookies-title {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .cookies-popup {
        padding: 12px;
    }

    .cookies-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}