.cookie-controls {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cookie-category {
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.cookie-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    margin-bottom: 0.5rem;
}

.cookie-toggle span:first-child {
    font-weight: 600;
    color: var(--text-dark);
}

.cookie-toggle input[type="checkbox"] {
    display: none;
}

.toggle-slider {
    position: relative;
    width: 50px;
    height: 24px;
    background: #ccc;
    border-radius: 24px;
    transition: background 0.3s;
}

.toggle-slider:before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: white;
    top: 2px;
    left: 2px;
    transition: transform 0.3s;
}

.cookie-toggle input:checked + .toggle-slider {
    background: var(--primary-color);
}

.cookie-toggle input:checked + .toggle-slider:before {
    transform: translateX(26px);
}

.cookie-toggle input:disabled + .toggle-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-category p {
    color: var(--text-light);
    font-size: 0.875rem;
    margin: 0;
    line-height: 1.4;
}

.save-preferences {
    width: 100%;
    padding: 0.75rem;
}

.opt-out-section p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.opt-out-section .btn {
    width: 100%;
    margin-bottom: 1rem;
}

.note {
    font-size: 0.875rem;
    color: var(--text-light);
    font-style: italic;
}

.ad-preferences p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.preference-links {
    list-style: none;
    padding: 0;
}

.preference-links li {
    margin-bottom: 0.5rem;
}

.preference-links a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.preference-links a:hover {
    text-decoration: underline;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-light);
    margin: 0;
}

.timeline {
    position: relative;
    padding-left: 2rem;
    margin: 2rem 0;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
}

.timeline-marker {
    position: absolute;
    left: -2rem;
    top: 0;
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 3px var(--border-color);
}

.timeline-content h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-light);
    margin: 0;
}

.quick-return p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.checklist {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.checklist li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.checklist i {
    color: #10b981;
}

.status-check {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.rma-input {
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
}

.rma-input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.check-status {
    padding: 0.75rem;
}

@media (max-width: 768px) {
    .process-steps {
        gap: 1rem;
    }
    
    .step {
        padding: 1rem;
    }
    
    .timeline {
        padding-left: 1.5rem;
    }
    
    .timeline-marker {
        left: -1.5rem;
    }
    
    .cookie-table table {
        font-size: 0.875rem;
    }
    
    .cookie-table th,
    .cookie-table td {
        padding: 0.75rem;
    }
}
