/* Main CSS - Soft Guide - Enhanced */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1e88e5;
    --primary-dark: #1565c0;
    --secondary: #00bcd4;
    --success: #4caf50;
    --warning: #ff9800;
    --danger: #f44336;
    --dark: #1a1a1a;
    --light: #f5f5f5;
    --border: #e0e0e0;
    --shadow: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-lg: 0 4px 16px rgba(0,0,0,0.15);
}

html, body {
    font-family: 'IRANSans', 'Vazirmatn', sans-serif;
    background-color: var(--bg-body, #f8fafc);
    color: var(--text-primary, #0f172a);
    scroll-behavior: smooth;
}

/* Navbar Styles */
.navbar {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%) !important;
    box-shadow: var(--shadow);
    padding: 0.8rem 0 !important;
    position: sticky;
    top: 0;
    z-index: 1020;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: white !important;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: transform 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.navbar-brand i {
    font-size: 2rem;
}

.nav-link {
    color: white !important;
    margin: 0 0.25rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    right: 0;
    background-color: white;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link:hover {
    width: 100%;
    background-color: rgba(255,255,255,0.2);
}

.dropdown-menu {
    background-color: var(--bg-surface-elevated, white);
    border: 1px solid var(--border-color, #e0e0e0);
    box-shadow: var(--shadow-lg);
    border-radius: 10px;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    color: var(--text-primary, #333);
    transition: all 0.2s ease;
    border-right: 3px solid transparent;
}

.dropdown-item:hover {
    background-color: var(--bg-subtle, var(--light));
    color: var(--primary);
    border-right-color: var(--primary);
}

/* Search Container */
.search-container {
    position: relative;
    margin: 0.5rem auto;
    max-width: 450px;
    width: 100%;
}

.search-input {
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--border-color, transparent);
    background-color: var(--input-bg, white);
    color: var(--text-primary, #333);
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    font-size: 0.95rem;
}

.search-input::placeholder {
    color: var(--text-muted, #999);
}

.search-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(30,136,229,0.3);
}

.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-surface-elevated, white);
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    max-height: 450px;
    overflow-y: auto;
    display: none;
    margin-top: 0.5rem;
    border: 1px solid var(--border-color, var(--border));
}

.search-results.show {
    display: block;
}

.search-result-item {
    padding: 0.8rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    gap: 1rem;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    color: inherit;
}

.search-result-item:hover {
    background-color: #f9f9f9;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 5px;
    flex-shrink: 0;
}

.search-result-content {
    flex: 1;
    min-width: 0;
}

.search-result-title {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-result-category {
    font-size: 0.85rem;
    color: var(--primary);
}

/* Card Styles */
.card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.post-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: var(--card-bg, #ffffff);
    color: var(--text-primary);
}

.post-thumbnail {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.post-card:hover .post-thumbnail {
    transform: scale(1.05);
}

.badge {
    border-radius: 20px;
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white !important;
}

.badge-success {
    background-color: var(--success) !important;
    color: white !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 4rem 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.hero-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-section p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Section Titles */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--dark);
    border-bottom: 3px solid var(--primary);
    padding-bottom: 1rem;
    display: inline-block;
}

.section-title i {
    margin-left: 0.5rem;
    color: var(--primary);
}

/* Buttons */
.btn {
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border: none;
    color: white !important;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: var(--secondary) !important;
    border: none;
    color: white !important;
}

.btn-success {
    background-color: var(--success) !important;
    border: none;
    color: white !important;
}

.btn-outline-primary {
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline-primary:hover {
    background-color: var(--primary);
    color: white;
}

/* Form Styles */
.form-control,
.form-select {
    border-radius: 8px;
    border: 2px solid var(--border);
    padding: 0.7rem 1rem;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(30,136,229,0.2);
    outline: none;
}

.form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

/* Comments */
.comment-form {
    background-color: var(--bg-surface, white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
    border: 1px solid var(--border-color, #e0e0e0);
}

.comment-item {
    background-color: var(--bg-subtle, #f9f9f9);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    border: 1px solid var(--border-color, #e0e0e0);
    border-right: 4px solid var(--primary);
    transition: all 0.3s ease;
}

.comment-item:hover {
    box-shadow: var(--shadow);
}

.comment-author {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.comment-date {
    color: #999;
    font-size: 0.85rem;
}

.comment-text {
    margin-top: 1rem;
    line-height: 1.6;
    color: #333;
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--dark) 0%, #2c2c2c 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.1);
}

footer h5 {
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

footer a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
}

footer a:hover {
    color: var(--secondary);
    padding-right: 0.5rem;
}

footer p {
    color: #aaa;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    color: white;
}

.social-links a:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    margin-top: 2rem;
    text-align: center;
    color: #aaa;
}

/* Pagination */
.pagination .page-link {
    color: var(--primary);
    border-color: var(--border);
    background-color: white;
    border-radius: 5px;
}

.pagination .page-item.active .page-link {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-color: var(--primary);
}

.pagination .page-link:hover {
    color: white;
    background-color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* Breadcrumb */
.breadcrumb {
    background-color: transparent;
    padding: 1rem 0;
    margin-bottom: 2rem;
}

.breadcrumb-item {
    color: #666;
}

.breadcrumb-item.active {
    color: var(--primary);
    font-weight: 600;
}

.breadcrumb-item a {
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--primary);
}

/* Alerts */
.alert {
    border-radius: 10px;
    border: none;
    box-shadow: var(--shadow);
    animation: slideDown 0.3s ease;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
}

.alert-info {
    background-color: #d1ecf1;
    color: #0c5460;
}

/* Responsive Design */
@media (max-width: 992px) {
    .navbar-brand {
        font-size: 1.5rem;
    }
    
    .search-container {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.6rem 0;
    }
    
    .navbar-brand {
        font-size: 1.3rem;
    }
    
    .navbar-brand i {
        font-size: 1.5rem;
    }
    
    .nav-link {
        margin: 0.3rem 0;
        font-size: 0.95rem;
    }
    
    .hero-section {
        padding: 2.5rem 1.5rem;
    }
    
    .hero-section h1 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .search-results {
        max-height: 350px;
    }
    
    footer {
        padding: 2rem 0 1rem;
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1.1rem;
    }
    
    .navbar-brand i {
        font-size: 1.3rem;
    }
    
    .nav-link {
        font-size: 0.85rem;
        padding: 0.3rem 0.3rem !important;
    }
    
    .search-input {
        font-size: 0.85rem;
        padding: 0.6rem 1rem;
    }
    
    .hero-section {
        padding: 2rem 1rem;
    }
    
    .hero-section h1 {
        font-size: 1.5rem;
    }
    
    .hero-section p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.2rem;
    }
    
    .search-results {
        max-height: 280px;
    }
    
    .search-result-item {
        padding: 0.6rem;
    }
    
    .search-result-item img {
        width: 40px;
        height: 40px;
    }
    
    .card {
        margin-bottom: 1rem;
    }
    
    .comment-form {
        padding: 1.5rem;
    }
}
    
    .search-input {
        padding: 0.5rem 1rem;
        font-size: 0.95rem;
    }
    
    .btn-sm {
        padding: 0.3rem 0.6rem;
        font-size: 0.8rem;
    }
}

/* Utility Classes */
.text-danger {
    color: var(--danger-color) !important;
}

.text-success {
    color: var(--success-color) !important;
}

.text-warning {
    color: var(--warning-color) !important;
}

.text-muted {
    color: #999 !important;
}

.bg-light {
    background-color: var(--light-color) !important;
}

.d-flex {
    display: flex;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-3 {
    gap: 1rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 0.5s ease;
}

/* Print Styles */
@media print {
    .navbar, .footer, .comment-form, .section-title {
        display: none;
    }
}

.small-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.small-overlay {
    position: absolute;
    bottom: 0;
    padding: 10px;
    width: 100%;
    color: #fff;
    background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
}

.small-overlay .category {
    padding: 3px 8px;
    background: #007bff;
    border-radius: 10px;
    font-size: 12px;
}

.big-card {
    position: relative;
    width: 50%;
    height: 370px;
    border-radius: 15px;
    overflow: hidden;
}

.big-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.big-overlay {
    position: absolute;
    bottom: 0;
    padding: 20px;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: #fff;
}

.big-overlay .category {
    padding: 5px 12px;
    background: #0069d9;
    border-radius: 12px;
    font-size: 13px;
}

.big-overlay h2 {
    margin-top: 10px;
    font-size: 22px;
    font-weight: bold;
}

.big-overlay p {
    margin-top: 5px;
    font-size: 14px;
    opacity: 0.9;
}


.news-slider {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 65%;
    gap: 10px;
    margin-top: 100px;
    margin-inline: auto;
}

.sglist {
    width: 100%;
}

.sgslide {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

h3,
span {
    padding-inline: 10px;
}

.lastposts h3, .mostviewed h3 {
    font-size: 13px;
    color: black;
}

.lastposts span, .mostviewed span {
    font-size: 12px;
}

.sgbox {
    display: flex;
    flex-direction: column;
    text-align: right;
    width: 100%;
}

.sgbox span, .sgbox a {
    position: absolute;
    bottom: 5%;
    color: white;
}

.sgbox a {
    font-family: Vazirmatn;
    font-weight: 700;
}

a {
    text-decoration: none;
}

.sgbox a {
    display: block;
    transition: transform 0.3s ease;
}

span.desc {
    display: block;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.small-overlay:hover span.desc,
.small-overlay h3:hover + span.desc,.big-overlay:hover span.desc,
.big-overlay h3:hover + span.desc {
    max-height: 80px;
    opacity: 1;
    transform: translateY(0px);
}

.sgslide img {
    width: 100%;
    height: 420px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.ls {
    width: 100%;
}

.lslist {
    
    gap: 5px;
}

.lsslide {
    width: 290px !important;
}

.lsbox {
    display: flex;
    flex-direction: column;
    text-align: right;
}

.lsslide img {
    width: 290px;
    height: 150px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.mv {
    width: 100%;
}

.mvlist {
    
    gap: 5px;
}

.mvslide {
    width: 290px !important;
}

.mvbox {
    display: flex;
    flex-direction: column;
    text-align: right;
}

.mvslide img {
    width: 290px;
    height: 150px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.logo img {
    width: 160px;
    height: 40px;
}

nav.main-nav ul {
    display: flex;
    gap: 2px;
    list-style: none;
    padding: 0;
    margin: 0;
}

nav.main-nav ul li {
    list-style: none;
    padding: 2px;
}

nav.main-nav ul li a {
    display: flex;
    flex-direction: row;
    text-decoration: none;
    color: black;
    justify-content: center;
    align-items: center;
}

nav.main-nav ul li a span {
    font-size: 12px;
}

nav.main-nav ul li a i {
    font-size: 12px;
    color: grey;
    display: inline-block;
    transition: transform 0.5s ease;
}

nav.main-nav ul li a:hover {
    color: #E4002B;
}

nav.main-nav ul li a:hover i {
    transform: rotate(360deg);
    color: #E4002B;
}

.section-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    direction: rtl;
}

.mostviewed .section-header div.filter div.category {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border: solid 1px black;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    padding-inline: 7px;
    font-family: iransansweb;
    font-size: 14px;
}
.category.active {
    background-color: rgba(228, 0, 43, 0.7); /* 0.7 شفافیت، رنگ کمرنگ‌تر */
    transform: scale(1.05);
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

.category i,
.category span {
    transition: color 0.3s;
}

.category.active i,
.category.active span {
    color: #fff;
}

.mostviewed .section-header i.fa-heart-circle-check {
    font-size: 25px;
    color: red;
}

 .section-header i.fa-fire {
    font-size: 25px;
    color: orange;
}

section h2 {
    font-size: 20px;
    font-weight: 500;
}

div.search-box {
    top: 16px;
    right: 16px;
    width: 250px;
    padding: 6px 10px;
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    z-index: 1;
}

div.search-box input {
    width: 100%;
    height: 36px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 0 38px 0 12px;
    outline: none;
    direction: rtl;
    transition: box-shadow 0.15s ease, border-color 0.15s ease;
}

div.search-box input[type=text] {
    font-family: iranyekan;
}

div.search-box input:focus {
    border-color: #E4002B;
    box-shadow: 0 4px 14px rgba(79,70,229,0.12);
}

div.search-box i {
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
    font-size: 16px;
    color: #374151;
    cursor: pointer;
    pointer-events: auto;
}

.site-footer {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    gap: 50px;
    margin-top: 100px;
    background-color: #1f1f1f;
    overflow-y: hidden;
    padding: 20px;
    padding-bottom: 40px;
    padding-top: 40px;
}

.footer-top {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    width: 100%;
}

.footer-category a {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    color: white;
    font-family: iranyekan;
    font-size: 13px;
}

.footer-category a i {
    font-size: 15px;
}

.footer-category a:hover, .footer-section ul li a:hover {
    color: #1e88e5;
}

.footer-category a:hover i {
    transform: rotate(360deg);
}

.footer-cloumn {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-row .aboutus {
    margin-right: 20px;
}

.site-footer i {
    color:#1e88e5;
}

.fa-envelope {
    color: gray !important;
}

.fa-telegram {
    color: #26A5DF !important;
}

.fa-whatsapp {
    color: #25D366 !important;
}

.footer-section {
    width: 300px;
    padding: 20px;
}

.site-footer h3, .site-footer p, .site-footer span {
    color: white;
}

.about {
    text-align: justify;
    text-align-last: right;
    line-height: 2;
    direction: rtl;
    font-feature-settings: "calt","liga","kern";
}

.aboutus p, .footer-section ul li a {
    margin-top: 5px;
    text-decoration: none;
    color: white;
}

.aboutus p, .footer-section ul {
    list-style-type: none;
}

.aboutus a {
    color: white;
}

.search-results {
    background-color: #fff;
    border: 1px solid #ccc;
    overflow-y: auto;
    display: none;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    width: 75%;
    margin: 0;
    padding: 0;
    margin-top: var(--header-height);
}

.search-results .result-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
}

.search-results .result-item:hover {
    background-color: #f0f0f0;
}

.search-results .result-item a {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-decoration: none;
    color: black;
}

.ceneter {
    position: fixed;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    z-index: 100;
}

.search-results .result-item a img {
    width: 50px;
    height: 50px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.search-results .result-item a span {
    font-size: 13px;
}

.aboutus {
    display: flex;
    flex-direction: row;
    align-items: first baseline;
    gap: 7px;
    width: 300px;
}

.small-overlay h3 {
    font-size: 12px;
}

.small-overlay p, .small-overlay span {
    font-size: 13px;
}

.footer-section ul {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.footer-section ul li a {
    font-family: iranyekan;
    font-size: 13px;
    
}

.menu-toggle {
    font-size: 32px;
    cursor: pointer;
    display: none;
}

.nav {
    display: none;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 35px;
    cursor: pointer;
    display: none;
}

@media (max-width: 768px) {
    header {
        justify-content: space-between;
        padding-right: 10px;
    }

    .nav {
        display: block;
    }

    .close-btn {
        display: block;
    }
    
    .footer-cloumn {
        justify-content: center;
    }

    .footer-row .aboutus {
        width: 100%;
        padding-inline: auto;
    }

    .footer-top {
        gap: 20px;
        padding: 10px;
    }
    
    .menu-toggle {
        display: block;
    }

    .main-nav {
        display: none;
    }

    .logo {
        display: none;
    }

    .nav {
        position: fixed;
        right: -250px;
        top: 0;
        width: 250px;
        height: 100vh;
        background: #fff;
        padding-top: 80px;
        transition: 0.3s;
        box-shadow: -2px 0 10px rgba(0,0,0,0.2);
    }

    .nav ul {
        flex-direction: column;
        padding: 0 20px;
    }

    .nav.nav-open {
        right: 0;
    }

    .category span {
        font-size: 9px;
    }

    .filter {
        margin-right: 10px;
        gap: 5px;
    }

    .category {
        font-size: 10px;
    }
}