/* 
* Tradievang - Cookie Consent Styly
* Autor: Tradievang team
* Verze: 1.0
*/

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.97);
    color: #ffffff;
    padding: 1.5rem;
    z-index: 1000;
    box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.1);
    display: none;
}

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

.cookie-consent h3 {
    color: #ffffff;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.cookie-consent p {
    margin-bottom: 1.2rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

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

.cookie-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    min-width: 120px;
}

.cookie-settings {
    display: none;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-settings h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

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

.cookie-option input[type="checkbox"] {
    margin-right: 0.8rem;
    transform: scale(1.2);
}

.cookie-option label {
    font-weight: 600;
    margin-bottom: 0.4rem;
    display: inline-block;
}

.cookie-option p {
    margin-left: 1.8rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.cookie-settings-buttons {
    display: flex;
    justify-content: flex-end;
    margin-top: 1.5rem;
}

/* Responzivní styly */
@media (max-width: 768px) {
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
    }
}
