/* Cookie Policy Specific Styles */
.breadcrumb-link {
    color: #1976d2;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-link:hover {
    color: #1565c0;
    text-decoration: underline;
}

.breadcrumb-separator {
    margin: 0 8px;
    color: #666;
}

.last-updated {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 4px solid #4caf50;
}

.last-updated p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.cookie-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e9ecef;
}

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

.cookie-types {
    margin-top: 25px;
}

.cookie-type {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    border: 1px solid #e9ecef;
    transition: box-shadow 0.2s ease;
}

.cookie-type:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cookie-type-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.cookie-type-title::before {
    content: "🍪";
    margin-right: 10px;
    font-size: 20px;
}

.cookie-type-description {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.cookie-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.cookie-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    color: #444;
    font-size: 14px;
}

.cookie-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: bold;
}

.cookie-controls {
    text-align: center;
    margin: 30px 0;
}

.cookie-settings-btn {
    background: linear-gradient(135deg, #4caf50, #45a049);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.cookie-settings-btn:hover {
    background: linear-gradient(135deg, #45a049, #4caf50);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.browser-settings {
    margin-top: 30px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.subsection-title {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.browser-links {
    list-style: none;
    margin: 15px 0 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}

.browser-links li {
    padding: 8px 0;
}

.third-party-list {
    list-style: none;
    margin: 20px 0;
    padding: 0;
}

.third-party-list li {
    position: relative;
    padding: 12px 0 12px 25px;
    border-bottom: 1px solid #f0f0f0;
    color: #444;
}

.third-party-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: bold;
}

.third-party-list li:last-child {
    border-bottom: none;
}

.contact-info {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.contact-info p {
    margin-bottom: 10px;
    color: #444;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

.back-to-site {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #e9ecef;
}

.back-link {
    display: inline-flex;
    align-items: center;
    color: #1976d2;
    text-decoration: none;
    font-weight: 600;
    padding: 12px 24px;
    border: 2px solid #1976d2;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.back-link:hover {
    background-color: #1976d2;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(25, 118, 210, 0.3);
}

/* Cookie Modal Styles */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.cookie-modal-content {
    background: white;
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.cookie-modal-header h3 {
    margin: 0;
    color: #333;
    font-size: 20px;
}

.close-cookie-modal {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-cookie-modal:hover {
    color: #333;
}

.cookie-modal-body {
    padding: 20px;
}

.cookie-option {
    margin-bottom: 25px;
    padding: 15px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    background-color: #f8f9fa;
}

.cookie-option-header {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.cookie-option-title {
    font-weight: 600;
    color: #333;
    margin-left: 15px;
}

.cookie-option-desc {
    color: #666;
    font-size: 14px;
    margin: 0;
    margin-left: 55px;
}

/* Cookie Switch Styles */
.cookie-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 24px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

input:checked + .cookie-slider {
    background-color: #4caf50;
}

input:checked + .cookie-slider:before {
    transform: translateX(26px);
}

input:disabled + .cookie-slider {
    background-color: #4caf50;
    opacity: 0.6;
    cursor: not-allowed;
}

.cookie-modal-actions {
    display: flex;
    gap: 10px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.cookie-modal-actions button {
    flex: 1;
    min-width: 120px;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cookie-accept-all {
    background: linear-gradient(135deg, #4caf50, #45a049);
    color: white;
}

.cookie-accept-all:hover {
    background: linear-gradient(135deg, #45a049, #4caf50);
    transform: translateY(-1px);
}

.cookie-accept-selected {
    background: linear-gradient(135deg, #2196f3, #1976d2);
    color: white;
}

.cookie-accept-selected:hover {
    background: linear-gradient(135deg, #1976d2, #2196f3);
    transform: translateY(-1px);
}

.cookie-reject-all {
    background: #f5f5f5;
    color: #666;
    border: 1px solid #ddd;
}

.cookie-reject-all:hover {
    background: #e9ecef;
    color: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cookie-types {
        margin-top: 20px;
    }
    
    .cookie-type {
        padding: 20px 15px;
    }
    
    .browser-links {
        grid-template-columns: 1fr;
    }
    
    .cookie-modal-actions {
        flex-direction: column;
    }
    
    .cookie-modal-actions button {
        min-width: auto;
    }
    
    .cookie-option-desc {
        margin-left: 0;
        margin-top: 10px;
    }
    
    .cookie-option-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .cookie-option-title {
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .cookie-type-title {
        font-size: 16px;
    }
    
    .cookie-settings-btn {
        width: 100%;
        padding: 15px 20px;
    }
    
    .back-link {
        width: 100%;
        justify-content: center;
    }
}