/* COOKIE CONSENT STYLES - RESPONSIVE OPTIMIZED */
.cookie-consent {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background: #fdfdfd;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    transition: bottom 0.5s ease;
    padding: clamp(12px, 2.5vw, 20px);
    width: 100%;
    box-sizing: border-box;
}

.cookie-consent.active {
    bottom: 0;
}

.cookie-content {
    max-width: min(800px, 90%);
    margin: 0 auto;
    position: relative;
}

.cookie-content h3 {
    color: #1f2937;
    margin-bottom: 0.5rem;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
}

.cookie-content p {
    color: #4b5563;
    margin-bottom: 1rem;
    line-height: 1.4;
    font-size: clamp(0.85rem, 1.8vw, 0.95rem);
}

.cookie-preferences {
    margin: 1rem 0;
    border-top: 1px solid #e5e7eb;
    padding-top: 0.75rem;
}

.preference-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    padding: 0.4rem 0;
    flex-wrap: wrap;
}

.preference-item input[type="checkbox"] {
    margin-right: 0.6rem;
    min-width: 16px;
    min-height: 16px;
    accent-color: #2563eb;
    flex-shrink: 0;
}

.preference-item label {
    font-weight: 500;
    color: #1f2937;
    margin-right: 0.4rem;
    font-size: clamp(0.85rem, 1.8vw, 0.95rem);
    flex-shrink: 0;
}

.preference-desc {
    color: #6b7280;
    font-size: clamp(0.75rem, 1.6vw, 0.8rem);
    margin-top: 0.2rem;
    flex-basis: 100%;
    padding-left: 1.6rem;
    line-height: 1.4;
}

.cookie-buttons {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-top: 1.2rem;
}

.btn {
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    font-size: clamp(0.85rem, 1.8vw, 0.95rem);
    flex-grow: 1;
    text-align: center;
    min-width: 120px;
}

.btn.primary {
    background-color: #2563eb;
    color: white;
}

.btn.primary:hover {
    background-color: #1d4ed8;
}

.btn.secondary {
    background-color: #e5e7eb;
    color: #1f2937;
}

.btn.secondary:hover {
    background-color: #d1d5db;
}

.privacy-link {
    display: inline-block;
    margin-top: 0.8rem;
    color: #2563eb;
    text-decoration: none;
    font-size: clamp(0.8rem, 1.6vw, 0.85rem);
}

.privacy-link:hover {
    text-decoration: underline;
}


@media (min-width: 769px) and (max-width: 992px) {
    .cookie-buttons {
        gap: 0.8rem;
    }

    .btn {
        padding: 2px 2px; 
        font-size: 10px;   
        flex-grow: 0;
        flex-basis: calc(33.333% - 0.53rem); 
        min-width: 140px;          
        text-align: center;
    }
}

@media (max-width: 768px) {
    .preference-desc {
        padding-left: 1.5rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .cookie-content {
        max-width: 95%;
    }
    
    .preference-item {
        align-items: flex-start;
    }
    
    .preference-item label {
        margin-bottom: 0.2rem;
    }
    
    .preference-desc {
        padding-left: 1.3rem;
    }
    
    .cookie-buttons {
        margin-top: 1rem;
    }
}



/* COOKIE CONSENT STYLES
.cookie-consent {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background: #fdfdfd;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    transition: bottom 0.5s ease;
    padding: 20px;
    max-width: 100%;
}

.cookie-consent.active {
    bottom: 0;
}

.cookie-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.cookie-content h3 {
    color: #1f2937;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.cookie-content p {
    color: #4b5563;
    margin-bottom: 20px;
    line-height: 1.5;
}

.cookie-preferences {
    margin: 20px 0;
    border-top: 1px solid #e5e7eb;
    padding-top: 15px;
}

.preference-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    padding: 8px 0;
}

.preference-item input[type="checkbox"] {
    margin-right: 12px;
    width: 18px;
    height: 18px;
    accent-color: #2563eb;
}

.preference-item label {
    font-weight: 500;
    color: #1f2937;
    margin-right: 8px;
}

.preference-desc {
    color: #6b7280;
    font-size: 0.85rem;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.btn {
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
}

.btn.primary {
    background-color: #2563eb;
    color: white;
}

.btn.primary:hover {
    background-color: #1d4ed8;
}

.btn.secondary {
    background-color: #e5e7eb;
    color: #1f2937;
}

.btn.secondary:hover {
    background-color: #d1d5db;
}

.privacy-link {
    display: inline-block;
    margin-top: 15px;
    color: #2563eb;
    text-decoration: none;
    font-size: 0.9rem;
}

.privacy-link:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .cookie-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
} */









/* COOKIE CONSENT STYLES
.cookie-consent {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background: #fdfdfd;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    transition: bottom 0.5s ease;
    padding: 20px;
    max-width: 100%;
}

.cookie-consent.active {
    bottom: 0;
}

.cookie-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.cookie-content h3 {
    color: #1f2937;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.cookie-content p {
    color: #4b5563;
    margin-bottom: 20px;
    line-height: 1.5;
}

.cookie-preferences {
    margin: 20px 0;
    border-top: 1px solid #e5e7eb;
    padding-top: 15px;
}

.preference-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    padding: 8px 0;
}

.preference-item input[type="checkbox"] {
    margin-right: 12px;
    width: 18px;
    height: 18px;
    accent-color: #2563eb;
}

.preference-item label {
    font-weight: 500;
    color: #1f2937;
    margin-right: 8px;
}

.preference-desc {
    color: #6b7280;
    font-size: 0.85rem;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.btn {
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
}

.btn.primary {
    background-color: #2563eb;
    color: white;
}

.btn.primary:hover {
    background-color: #1d4ed8;
}

.btn.secondary {
    background-color: #e5e7eb;
    color: #1f2937;
}

.btn.secondary:hover {
    background-color: #d1d5db;
}

.privacy-link {
    display: inline-block;
    margin-top: 15px;
    color: #2563eb;
    text-decoration: none;
    font-size: 0.9rem;
}

.privacy-link:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .cookie-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
} */



/* .cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #302f2c;
    color: #d1d1d1;
    padding: 20px;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease-out;
    font-family: 'Segoe UI', Roboto, sans-serif;
    border-top: 1px solid #eee;
}

.cookie-consent.active {
    transform: translateY(0);
}

.cookie-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-text a {
    color: #cc4b00;
    text-decoration: none;
    font-weight: 500;
}

.cookie-text a:hover {
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 30px 50px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
    min-width: 100px;
    text-align: center;
}

.btn-accept {
    color: rgb(38, 38, 38);
    border: none;
    padding: 10px 30px;
}

.btn-accept:hover {
    background: #00a35f;
    border-color: #00a35f;
}

.btn-reject {
    background:#a30b00;
    color: #cdcdcd;
    border: none;
    padding: 10px 30px;
}

.btn-reject:hover {
    background: #f5f5f5;
    color: #292929;
}

.btn-settings {
    background: transparent;
    color: #0066cc;
    border: none;
}

.btn-settings:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .cookie-container {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
    }
    
    .cookie-btn {
        flex: 1;
    }
} */