/* Cookie Notice Styles */
.sw-cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    padding: 20px;
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.sw-cookie-notice-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.sw-cookie-notice-content {
    flex: 1;
}

.sw-cookie-notice-text {
    margin: 0;
    color: #333;
    font-size: 15px;
    line-height: 1.6;
}

.sw-cookie-notice-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.sw-cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    white-space: nowrap;
}

.sw-cookie-accept {
    background-color: #6a9b5c;
    color: #ffffff;
}

.sw-cookie-accept:hover {
    background-color: #5a8a4d;
    transform: translateY(-1px);
}

.sw-cookie-terms {
    background-color: transparent;
    color: #6a9b5c;
    border: 2px solid #6a9b5c;
}

.sw-cookie-terms:hover {
    background-color: #6a9b5c;
    color: #ffffff;
    transform: translateY(-1px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .sw-cookie-notice {
        padding: 16px;
    }
    
    .sw-cookie-notice-container {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .sw-cookie-notice-buttons {
        width: 100%;
        flex-direction: column;
        gap: 10px;
    }
    
    .sw-cookie-btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 15px;
    }
    
    .sw-cookie-notice-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .sw-cookie-notice {
        padding: 14px;
    }
    
    .sw-cookie-notice-text {
        font-size: 13px;
    }
    
    .sw-cookie-btn {
        padding: 12px 18px;
        font-size: 14px;
    }
}

/* Animation for hiding */
.sw-cookie-notice.hiding {
    animation: slideDown 0.4s ease-in forwards;
}

@keyframes slideDown {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(100%);
        opacity: 0;
    }
}
