/**
 * Cookie Banner Styles
 * 
 * CSS styles for the cookie consent banner
 * 
 * @package HelloElementor
 * @version 1.0.0
 */

/* Cookie Banner Container */
#hello-elementor-cookie-banner.cookie-banner {
    position: fixed;
    bottom: 0;
    z-index: 9999;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    animation: slideInUp 0.5s ease-out;
    border: 1px solid rgba(255, 255, 255, 0.60);
    background: linear-gradient(92deg, rgba(255, 255, 255, 0.80) 0%, rgba(255, 255, 255, 0.40) 100%);
    backdrop-filter: blur(2px);
    width: 100%;
    display: flex;
    padding: 30px 16px;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    left: 0;
}

/* Cookie Banner Content */
#hello-elementor-cookie-banner .cookie-banner-content {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Cookie Banner Text */
#hello-elementor-cookie-banner .cookie-banner-text h3 {
    margin: 0 0 12px 0;
    color: #262628;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 128.023%; /* 28.165px */
}

#hello-elementor-cookie-banner .cookie-banner-text p {
    margin: 0;
    color: #262628;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 128.023%; /* 20.484px */
}

/* Learn More Link */
#hello-elementor-cookie-banner .cookie-learn-more {
    text-decoration: underline;
    transition: color 0.3s ease;
    color: #262628;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 128.023%;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

#hello-elementor-cookie-banner .cookie-learn-more:hover {
    color: #005a87;
}

/* Cookie Banner Buttons */
#hello-elementor-cookie-banner .cookie-banner-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

#hello-elementor-cookie-banner .cookie-btn {
    padding: 12px 24px;
    border: none;
    transition: all 0.3s ease;
    min-width: 120px;
    text-align: center;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 146.523%; /* 23.444px */
}

/* Accept All Button */
#hello-elementor-cookie-banner .cookie-accept-all {
    color: white;
    box-shadow: 0 2px 4px rgba(0, 115, 170, 0.2);
    width: 164px;
    height: 46px;
    flex-shrink: 0;
    border-radius: 50px;
    background: #0F1A2B;
}

#hello-elementor-cookie-banner .cookie-accept-all:hover {
        background-color: #FFFFFF00;
    color: var(--e-global-color-primary);
    border: 1px solid var(--e-global-color-primary);
}

#hello-elementor-cookie-banner .cookie-accept-all:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 115, 170, 0.2);
}

/* Only Necessary Button */
#hello-elementor-cookie-banner .cookie-necessary-only {
    border-radius: 50px;
    background: #FAFAFA;
    width: 164px;
    height: 46px;
    flex-shrink: 0;
    color: #575757;
    text-align: center;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 146.523%; /* 23.444px */
}

#hello-elementor-cookie-banner .cookie-necessary-only:hover {
    background: #f8f8f8;
    border-color: #0073aa;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

#hello-elementor-cookie-banner .cookie-necessary-only:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 1200px) {
   
}

@media (max-width: 768px) {
    
}

@media (max-width: 480px) {
    
}

/* Animation */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cookie-banner.hide {
    animation: slideOutDown 0.3s ease-in forwards;
}

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

