/* 
   Cookie Consent Styles
   PolGaz - Porównanie firm gazowych w Polsce 
*/

.cookie-consent {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background-color: rgba(38, 50, 56, 0.95);
    color: #fff;
    padding: 1.5rem;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    font-size: 0.9375rem;
    transition: bottom 0.5s ease;
}

.cookie-consent.show {
    bottom: 0;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content h3 {
    color: #fff;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.cookie-content p {
    margin-bottom: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.cookie-settings {
    display: none;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-settings.show {
    display: block;
}

.cookie-settings h4 {
    color: #fff;
    margin-bottom: 1.25rem;
    font-size: 1.125rem;
}

.cookie-option {
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-option:last-child {
    border-bottom: none;
}

.cookie-option label {
    display: flex;
    align-items: center;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.cookie-option input[type="checkbox"] {
    margin-right: 0.75rem;
    width: 18px;
    height: 18px;
}

.cookie-option p {
    padding-left: 1.75rem;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.cookie-settings-buttons {
    margin-top: 1.5rem;
}

/* Media Queries */
@media screen and (max-width: 576px) {
    .cookie-consent {
        padding: 1.25rem;
        font-size: 0.875rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-buttons button {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .cookie-settings-buttons button {
        width: 100%;
    }
}
