/* cookies.css */
:root {
    --primary-color: #2a9d8f;
    --text-color: #1a1a1a;
    --bg-light: #f9f9f9;
    --border-color: #e0e0e0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cookies-container {
    max-width: 800px;
    width: 100%;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    overflow: hidden;
}

.cookies-content {
    padding: 40px;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-color);
    text-align: center;
}

.cookies-intro {
    background: rgba(42, 157, 143, 0.1);
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 30px;
    text-align: center;
}

.cookies-intro p {
    color: #666;
    margin: 0;
}

.cookies-categories {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.cookie-category {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 25px;
    transition: transform 0.3s;
}

.cookie-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.cookie-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.cookie-header h3 {
    font-size: 1.3rem;
    color: var(--text-color);
}

.cookie-status.always {
    background: var(--primary-color);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.cookie-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.cookie-list {
    list-style: none;
    padding-left: 0;
}

.cookie-list li {
    padding: 5px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.cookie-list li:before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .toggle-slider {
    background-color: var(--primary-color);
}

input:checked + .toggle-slider:before {
    transform: translateX(30px);
}

.cookies-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.btn-cookie {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    min-width: 200px;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: #1d7a6f;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #f5f5f5;
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-color);
    border: 2px solid var(--border-color);
}

.btn-outline:hover {
    border-color: #999;
}

.cookies-back {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
}

.back-link:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .cookies-content {
        padding: 20px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .btn-cookie {
        min-width: 100%;
    }
    
    .cookie-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}