/* 
   THE LAUNDRY LAB - Premium Design System
   Theme: Navy Blue & Gold (Luxury/Corporate)
*/

:root {
    --primary-color: #0a192f;
    /* Deep Navy */
    --accent-color: #d4af37;
    /* Metallic Gold */
    --accent-hover: #b5952f;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --danger: #dc3545;
    --success: #28a745;
    --whatsapp: #25D366;

    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.12);

    --radius: 8px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    /* Fallback if Google Fonts fail to load but they are linked in HTML */
    font-family: 'Outfit', sans-serif;
    /* Primary Body Font */
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
}

p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* UTILITIES */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.bg-light {
    background-color: var(--bg-light);
}

.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.divider {
    height: 4px;
    width: 60px;
    background-color: var(--accent-color);
    margin: 10px auto 0;
    border-radius: 2px;
}

.highlight {
    color: var(--accent-color);
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.btn-outline-dark {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-dark:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-whatsapp {
    background-color: var(--whatsapp);
    color: white;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
}

.full-width {
    width: 100%;
    text-align: center;
}

/* NAVBAR */
#navbar {
    background-color: var(--white);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

#navbar.scrolled {
    padding: 10px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    margin: 0;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    font-size: 1rem;
    color: var(--primary-color);
}

.nav-links a:hover {
    color: var(--accent-color);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

/* HERO SECTION */
.hero {
    height: 90vh;
    min-height: 600px;
    background: url('https://images.unsplash.com/photo-1545173168-9f1947eebb8f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 80px;
    /* Offset fixed header */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 25, 47, 0.95) 0%, rgba(10, 25, 47, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 800px;
}

.badge {
    display: inline-block;
    background-color: rgba(212, 175, 55, 0.2);
    color: var(--accent-color);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid var(--accent-color);
}

.hero h1 {
    color: var(--white);
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* TRUST STRIP */
.trust-strip {
    background-color: var(--white);
    transform: translateY(-50%);
    position: relative;
    z-index: 10;
    margin-bottom: -50px;
    /* Compensate for transform */
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.trust-item i {
    font-size: 2rem;
    color: var(--accent-color);
}

.trust-item h3 {
    font-size: 1.1rem;
    margin: 0;
    font-family: 'Outfit', sans-serif;
}

.trust-item p {
    margin: 0;
    font-size: 0.9rem;
}

/* CARDS */
.steps-grid,
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.step-card,
.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.service-card {
    box-shadow: var(--shadow-sm);
    border: 1px solid #eee;
}

.step-card:hover,
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.step-number {
    font-size: 4rem;
    font-weight: 700;
    color: rgba(10, 25, 47, 0.05);
    position: absolute;
    top: 10px;
    right: 20px;
    font-family: 'Playfair Display', serif;
}

.step-icon,
.service-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    display: inline-block;
}

/* PRICING & CALCULATOR */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.price-list {
    margin: 30px 0;
}

.price-list li {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    font-size: 1.1rem;
}

.price-list .price {
    font-weight: 700;
    color: var(--primary-color);
}

.highlight-box {
    background-color: rgba(212, 175, 55, 0.1);
    border-left: 4px solid var(--accent-color);
    padding: 20px;
    display: flex;
    gap: 15px;
    border-radius: 0 var(--radius) var(--radius) 0;
}

.calculator-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.calculator-card h3 {
    text-align: center;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--primary-color);
}

input,
select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--radius);
    font-size: 1rem;
    transition: var(--transition);
    font-family: 'Outfit', sans-serif;
}

input:focus,
select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.toggle-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Toggle Switch */
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

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

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

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

input:checked+.slider {
    background-color: var(--accent-color);
}

input:checked+.slider:before {
    transform: translateX(24px);
}

.total-display {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 20px;
    border-radius: var(--radius);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 30px 0;
    font-size: 1.2rem;
}

.total-display .amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
}

/* BOOKING FORM */
.booking-section {
    background-color: var(--bg-light);
}

.booking-wrapper {
    background-color: var(--white);
    max-width: 800px;
    margin: 0 auto;
    padding: 50px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

.booking-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* --- FABRIC CARE PREFERENCES (Scoped & Mobile Optimized) --- */
.fabric-care-container {
    margin: 30px 0;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.fabric-care-container h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.care-group {
    margin-bottom: 25px;
    background: #fcfcfc;
    border: 1px solid #eee;
    border-radius: var(--radius);
    padding: 15px;
}

.care-header {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.care-header small {
    font-weight: 400;
    color: var(--text-light);
    font-size: 0.85rem;
}

.care-content {
    /* Always visible on desktop */
    display: block;
}

/* Grid Layouts */
.care-options-grid {
    display: grid;
    gap: 10px;
}

.radio-grid {
    grid-template-columns: repeat(2, 1fr);
    /* 2 columns on desktop */
}

.checkbox-grid {
    grid-template-columns: repeat(2, 1fr);
}

/* Option Cards */
.care-option-card,
.care-check-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.care-option-card:hover,
.care-check-card:hover {
    border-color: #ccc;
    background: #fff;
}

.care-option-card input,
.care-check-card input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

/* Selected States */
.care-option-card.selected,
.care-check-card:has(input:checked) {
    /* Modern browsers */
    border-color: var(--accent-color);
    background-color: rgba(212, 175, 55, 0.05);
}

/* Fallback for older browsers if needed (handled via JS for radio mostly) */
.care-check-card input:checked+span {
    font-weight: 600;
    color: var(--primary-color);
}

.option-icon {
    width: 32px;
    height: 32px;
    background: #f4f6f8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    flex-shrink: 0;
}

.care-option-card.selected .option-icon {
    background: var(--accent-color);
    color: var(--white);
}

.option-info {
    display: flex;
    flex-direction: column;
}

.option-info strong {
    font-size: 0.95rem;
    color: var(--primary-color);
}

.option-info span {
    font-size: 0.8rem;
    color: #888;
}

/* Warning Box */
.care-warning-box {
    margin-top: 10px;
    padding: 10px 15px;
    background: #fff3cd;
    color: #856404;
    border-radius: 6px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: fadeIn 0.3s;
}

/* Internal Accordion Logic for Mobile */
.mobile-only {
    display: none;
}

@media (max-width: 480px) {

    .radio-grid,
    .checkbox-grid {
        grid-template-columns: 1fr;
        /* Stack on mobile */
    }

    .care-group {
        padding: 0;
        background: transparent;
        border: none;
        border-bottom: 1px solid #eee;
        border-radius: 0;
        margin-bottom: 0;
    }

    .care-group:last-child {
        border-bottom: none;
    }

    .care-header {
        padding: 15px 0;
        margin-bottom: 0;
        cursor: pointer;
        /* Clickable headers on mobile */
    }

    .care-header.toggle-header {
        /* Indication it's togglable */
        cursor: pointer;
    }

    .mobile-only {
        display: block;
        transition: transform 0.3s ease;
    }

    /* Collapse logic */
    .care-group.collapsible .care-content {
        display: none;
        padding-bottom: 15px;
    }

    .care-group.collapsible.active .care-content {
        display: block;
        animation: slideDown 0.2s ease-out;
    }

    .care-group.collapsible.active .mobile-only {
        transform: rotate(180deg);
    }
}


/* COVERAGE */
.area-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.tag {
    background-color: rgba(10, 25, 47, 0.05);
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
}

/* FOOTER */
footer {
    background-color: var(--primary-color);
    color: rgba(255, 255, 255, 0.7);
    padding-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-col h3,
.footer-col h4 {
    color: var(--white);
    margin-bottom: 25px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col a:hover {
    color: var(--accent-color);
}

.socials {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.socials a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
    color: var(--white);
}

.socials a:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    h2 {
        font-size: 2rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-md);
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-toggle {
        display: block;
    }

    .nav-actions .btn {
        display: none;
        /* Hide 'Book Now' on mobile header to save space */
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .pricing-info,
    .calculator-card,
    .form-row,
    .footer-content,
    .split-layout {
        grid-template-columns: 1fr;
    }

    .trust-strip {
        transform: none;
        margin-bottom: 0px;
    }

    .booking-wrapper {
        padding: 30px 20px;
    }
}

/* ADMIN DASHBOARD */
.admin-body {
    background-color: #f4f6f8;
}

.dashboard-container {
    padding: 100px 20px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.dashboard-header {
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.dashboard-header h2 {
    margin: 0;
    font-size: 2rem;
}

.filter-group {
    display: flex;
    gap: 10px;
}

.filter-btn {
    padding: 8px 16px;
    font-size: 0.9rem;
    color: var(--text-light);
    border-color: #ddd;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(10, 25, 47, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.stat-info h3 {
    margin: 0;
    font-size: 2rem;
    color: var(--primary-color);
}

.stat-info p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

.table-container {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    overflow-x: auto;
}

.bookings-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 1000px;
}

.bookings-table th,
.bookings-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.bookings-table th {
    font-weight: 600;
    color: var(--primary-color);
    background-color: #f8f9fa;
}

.status-badge {
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-pending {
    background-color: #fff3cd;
    color: #856404;
}

.status-progress {
    background-color: #cce5ff;
    color: #004085;
}

.status-done {
    background-color: #d4edda;
    color: #155724;
}

.action-btn {
    padding: 6px 12px;
    font-size: 0.85rem;
    margin-right: 5px;
}


/* ADMIN DASHBOARD - LOGIN */
#login-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 25, 47, 0.95) 0%, rgba(10, 25, 47, 0.98) 100%);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-box {
    background: white;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    width: 100%;
    max-width: 400px;
}

.login-box input {
    margin: 20px 0;
}

/* ADMIN DASHBOARD - MOBILE */
@media (max-width: 768px) {
    .dashboard-container {
        padding: 80px 15px 30px;
    }

    .admin-header {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        text-align: center;
    }

    .admin-header .btn {
        width: 100%;
        margin-bottom: 10px;
    }

    .dashboard-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .dashboard-header h2 {
        font-size: 1.8rem;
        text-align: left;
        margin-bottom: 0;
    }

    .filter-group {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        width: 100%;
    }

    .filter-group .btn {
        flex: 1;
        text-align: center;
        padding: 8px 10px !important;
        font-size: 0.85rem !important;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    /* Card View Table Transformation */
    .bookings-table {
        min-width: 100%;
    }

    .bookings-table thead {
        display: none;
    }

    .bookings-table,
    .bookings-table tbody,
    .bookings-table tr,
    .bookings-table td {
        display: block;
        width: 100%;
    }

    .bookings-table tr {
        margin-bottom: 20px;
        border: 1px solid #eee;
        border-radius: var(--radius);
        background: var(--white);
        box-shadow: var(--shadow-sm);
        padding: 20px;
    }

    .bookings-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: right;
        padding: 10px 0;
        border-bottom: 1px solid #f9f9f9;
        font-size: 0.95rem;
    }

    .bookings-table td:last-child {
        border-bottom: none;
        justify-content: center;
        padding-top: 20px;
        gap: 10px;
        flex-wrap: wrap;
    }

    /* Add Labels via pseudo-elements fallback */
    .bookings-table td:nth-of-type(1)::before {
        content: "Date";
        font-weight: 600;
        color: var(--primary-color);
    }

    .bookings-table td:nth-of-type(2)::before {
        content: "Customer";
        font-weight: 600;
        color: var(--primary-color);
    }

    .bookings-table td:nth-of-type(3)::before {
        content: "Location";
        font-weight: 600;
        color: var(--primary-color);
    }

    .bookings-table td:nth-of-type(4)::before {
        content: "Service";
        font-weight: 600;
        color: var(--primary-color);
    }

    .bookings-table td:nth-of-type(5)::before {
        content: "Notes";
        font-weight: 600;
        color: var(--primary-color);
    }

    .bookings-table td:nth-of-type(6)::before {
        content: "Status";
        font-weight: 600;
        color: var(--primary-color);
    }

    .bookings-table td:nth-of-type(7)::before {
        content: "";
    }

    .action-btn {
        padding: 12px 24px;
        font-size: 1rem;
        margin: 5px;
        flex: 1;
        text-align: center;
    }
}

/* MODAL STYLES */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: #fff;
    padding: 30px;
    border-radius: var(--radius);
    width: 90%;
    max-width: 600px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-md);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
}

.close-modal:hover {
    color: #000;
}

.detail-row {
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.detail-row h4 {
    margin: 0 0 5px 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

.detail-row p {
    margin: 0;
    font-weight: 500;
    color: var(--primary-color);
}

.pref-summary {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    margin-top: 10px;
}

.pref-item {
    display: flex;
    margin-bottom: 8px;
}

.pref-item i {
    width: 25px;
    color: var(--accent-color);
    margin-top: 3px;
}