@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&family=Georama:wght@400;600;800&display=swap');

:root {
    --bg: #070707;
    --panel: #111111;
    --panel-hover: #1a1a1a;
    --border: #222222;
    --text: #f5f5f5;
    --muted: #a0a0a0;
    --accent: #ffd400;
    --accent-hover: #e0bb00;
    --accent-text: #070707;
    --container-max: 1300px;
    --shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    --glass: rgba(17, 17, 17, 0.75);
    --glass-border: rgba(255, 255, 255, 0.05);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.2s ease, opacity 0.2s ease;
}

html, body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Outfit', 'Georama', system-ui, -apple-system, sans-serif;
    line-height: 1.5;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg);
}
::-webkit-scrollbar-thumb {
    background: #222;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* Header */
.header {
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header .row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    gap: 20px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
}
.brand {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.brand span {
    color: var(--accent);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 26px;
    cursor: pointer;
    outline: none;
    padding: 4px 8px;
    border-radius: 4px;
    transition: color 0.2s ease;
}
.menu-toggle:hover {
    color: var(--accent);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
}
.nav-item a {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--muted);
    padding: 6px 0;
    position: relative;
}
.nav-item a:hover, .nav-item.active a {
    color: var(--text);
}
.nav-item a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width 0.3s ease;
}
.nav-item a:hover::after, .nav-item.active a::after {
    width: 100%;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}
.search-form {
    display: flex;
    align-items: center;
    background: #141414;
    border: 1px solid #222;
    border-radius: 30px;
    padding: 4px 16px;
}
.search-form input {
    background: transparent;
    border: none;
    color: var(--text);
    outline: none;
    padding: 6px 0;
    font-size: 14px;
    width: 180px;
}
.search-form button {
    background: transparent;
    border: none;
    color: var(--muted);
    cursor: pointer;
    font-size: 14px;
    padding-left: 8px;
}
.search-form button:hover {
    color: var(--accent);
}

/* Buttons */
.btn {
    background-color: var(--accent);
    color: var(--accent-text);
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 10px 20px;
    cursor: pointer;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
}
.btn.secondary {
    background-color: transparent;
    color: var(--text);
    border: 1px solid var(--accent);
}
.btn.secondary:hover {
    background-color: var(--accent);
    color: var(--accent-text);
}
.btn.danger {
    background-color: #ff3b30;
    color: #fff;
}
.btn.danger:hover {
    background-color: #d62f25;
}

/* Banner Slider */
.banner-section {
    position: relative;
    height: 480px;
    overflow: hidden;
    background-color: #000;
    border-bottom: 1px solid var(--border);
}
.banner-slider {
    width: 100%;
    height: 100%;
    position: relative;
}
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
    transition: opacity 1s ease-in-out;
}
.slide.active {
    opacity: 1;
    z-index: 2;
}
.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}
.slide-content {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: var(--container-max);
    padding: 0 24px;
    z-index: 3;
    text-align: left;
}
.slide-content h2 {
    font-size: 48px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 12px;
}
.slide-content h2 span {
    color: var(--accent);
}
.slide-content p {
    font-size: 18px;
    color: var(--muted);
    margin-bottom: 24px;
    max-width: 600px;
}
.slider-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 4;
}
.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
}
.slider-dot.active {
    background-color: var(--accent);
    width: 24px;
    border-radius: 5px;
}

/* Category Filter Bar */
.filter-bar {
    padding: 40px 0 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 24px;
}
.section-title {
    font-size: 28px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.section-title span {
    color: var(--accent);
}
.categories-list {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.category-btn {
    background-color: var(--panel);
    border: 1px solid var(--border);
    color: var(--muted);
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}
.category-btn:hover, .category-btn.active {
    background-color: var(--accent);
    color: var(--accent-text);
    border-color: var(--accent);
}

/* Grid Layout */
.albums-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    padding-bottom: 60px;
}
@media(min-width: 992px) {
    .albums-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}
@media(max-width: 991px) and (min-width: 768px) {
    .albums-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media(max-width: 767px) {
    .albums-grid {
        grid-template-columns: 1fr;
    }
}

/* Card Style */
.album-card {
    background-color: var(--panel);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}
.album-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: var(--shadow);
}
.card-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 66%; /* 3:2 Aspect Ratio */
    background-color: #000;
    overflow: hidden;
}
.card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.album-card:hover .card-image {
    transform: scale(1.05);
}
.card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: var(--accent);
    color: var(--accent-text);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 4px 8px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    z-index: 5;
}
.card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}
.card-meta {
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}
.card-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}
.card-btn {
    width: 100%;
    justify-content: center;
    font-size: 11.5px;
    padding: 8px 12px;
}
.whatsapp-btn .whats-hover {
    display: none !important;
}
.whatsapp-btn .whats-default {
    display: block !important;
}
.whatsapp-btn:hover .whats-default {
    display: none !important;
}
.whatsapp-btn:hover .whats-hover {
    display: block !important;
}

/* Features Grid */
.features-section {
    background-color: var(--panel);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 40px 0;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}
.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
}
.feature-icon-wrapper {
    background-color: rgba(255, 212, 0, 0.1);
    border: 1px solid rgba(255, 212, 0, 0.2);
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 20px;
    flex-shrink: 0;
}
.feature-text h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}
.feature-text p {
    font-size: 12px;
    color: var(--muted);
}

/* Footer */
.footer {
    background-color: #000;
    border-top: 1px solid var(--border);
    padding: 60px 0 30px;
}
.footer-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-logo-col p {
    font-size: 14px;
    color: var(--muted);
    margin-top: 16px;
    max-width: 320px;
}
.footer-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: #fff;
    position: relative;
    padding-bottom: 8px;
}
.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent);
}
.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 14px;
    color: var(--muted);
}
.footer-links a:hover {
    color: var(--accent);
}
.instagram-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #111;
    border: 1px solid var(--border);
    padding: 10px 16px;
    border-radius: 8px;
    color: var(--text);
    font-weight: 600;
    font-size: 14px;
}
.instagram-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: #000;
    transform: translateY(-2px);
}
.instagram-btn img {
    width: 20px;
    height: 20px;
}
.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 30px;
    text-align: center;
    font-size: 13px;
    color: var(--muted);
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}
.lightbox-content {
    max-width: 90%;
    max-height: 85%;
    position: relative;
}
.lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.8);
}
.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    background: none;
    border: none;
}
.lightbox-close:hover {
    color: var(--accent);
}
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    border: 1px solid #333;
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox-nav:hover {
    background: var(--accent);
    color: var(--accent-text);
}
.lightbox-prev { left: -70px; }
.lightbox-next { right: -70px; }

/* View Album Details */
.album-details-header {
    padding: 60px 0 30px;
}
.album-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
    padding-bottom: 60px;
}
@media(min-width: 992px) {
    .album-details-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media(max-width: 991px) and (min-width: 576px) {
    .album-details-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media(max-width: 575px) {
    .album-details-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
.photo-card {
    background-color: var(--panel);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}
.photo-card:hover {
    border-color: var(--accent);
}
.photo-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    cursor: pointer;
    display: block;
}
.photo-actions {
    display: flex;
    border-top: 1px solid var(--border);
}
.photo-action-btn {
    flex: 1;
    background: transparent;
    border: none;
    padding: 10px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.photo-action-btn:first-child {
    border-right: 1px solid var(--border);
}
.photo-action-btn:hover {
    color: var(--accent);
}
.photo-action-btn img {
    width: 14px !important;
    height: 14px !important;
    object-fit: contain !important;
    cursor: pointer;
}
.photo-action-btn.whatsapp-btn img {
    margin-right: 2px;
}

/* Admin Styles */
.admin-login-body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
}
.admin-card {
    background-color: var(--panel);
    border: 1px solid var(--border);
    padding: 40px;
    border-radius: 16px;
    width: 100%;
    max-width: 400px;
    box-shadow: var(--shadow);
}
.admin-card h2 {
    margin-bottom: 24px;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
}
.admin-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
}
.form-control {
    background-color: #070707;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--text);
    font-family: inherit;
    font-size: 14px;
    outline: none;
}
.form-control:focus {
    border-color: var(--accent);
}
.admin-header {
    background-color: #000;
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
}
.admin-header .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.admin-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    min-height: calc(100vh - 75px);
}
.admin-sidebar {
    background-color: var(--panel);
    border-right: 1px solid var(--border);
    padding: 30px 20px;
}
.admin-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.admin-menu-item a {
    display: block;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--muted);
}
.admin-menu-item.active a, .admin-menu-item a:hover {
    background-color: rgba(255, 212, 0, 0.1);
    color: var(--accent);
}
.admin-content {
    padding: 40px;
}
.admin-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}
.admin-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--panel);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}
.admin-table th, .admin-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}
.admin-table th {
    background-color: #1a1a1a;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--muted);
}
.admin-table tr:last-child td {
    border-bottom: none;
}
.admin-table tbody tr:hover {
    background-color: #151515;
}
.badge {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}
.badge.master {
    background-color: rgba(255, 212, 0, 0.2);
    color: var(--accent);
    border: 1px solid var(--accent);
}
.badge.editor {
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--muted);
    border: 1px solid var(--border);
}

.photo-upload-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 16px;
    margin-top: 16px;
}
.photo-upload-item {
    position: relative;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1;
}
.photo-upload-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.photo-delete-btn {
    position: absolute;
    top: 4px;
    right: 4px;
    background-color: rgba(255, 59, 48, 0.9);
    color: #fff;
    border: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.photo-delete-btn:hover {
    background-color: #ff3b30;
}

/* Alert Boxes */
.alert {
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid transparent;
}
.alert.success {
    background-color: rgba(52, 199, 89, 0.1);
    color: #34c759;
    border-color: rgba(52, 199, 89, 0.2);
}
.alert.error {
    background-color: rgba(255, 59, 48, 0.1);
    color: #ff3b30;
    border-color: rgba(255, 59, 48, 0.2);
}

/* Responsive */
@media(max-width: 992px) {
    .admin-layout {
        grid-template-columns: 1fr;
    }
    .admin-sidebar {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }
    .footer-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
@media(max-width: 768px) {
    .header .row {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 12px 0;
    }
    .logo {
        margin: 0;
    }
    .nav-menu {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: flex-start;
        margin: 0;
        padding: 10px 0 0;
        width: 100%;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }
    .nav-item.dropdown {
        display: none !important;
    }
    .header-right {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 12px;
        width: 100%;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        padding-top: 12px;
    }
    .search-form {
        flex: 1;
        min-width: 0;
    }
    .search-form input {
        width: 100%;
    }
    .header-right .btn.secondary {
        flex-shrink: 0;
        white-space: nowrap;
    }
    .header-right .btn:not(.secondary) {
        position: absolute;
        top: 12px;
        right: 0;
        padding: 8px 16px;
        font-size: 12px;
    }
    .banner-section {
        height: 280px;
    }
    .lightbox-nav {
        display: none;
    }
}

/* Custom 2-Item Features Bar - Centered Column Layout on Desktop and Mobile */
.features-bar-section {
    background-color: var(--panel);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 24px 0;
    margin-top: 40px;
    margin-bottom: 45px;
}
.features-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
}
.features-bar-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
    padding: 10px 40px;
}
.features-bar-item:first-child {
    border-right: 1px solid var(--border);
}
.features-bar-icon {
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.features-bar-text h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #fff;
    margin-bottom: 4px;
}
.features-bar-text p {
    font-size: 12px;
    color: var(--muted);
}
@media(max-width: 768px) {
    .features-bar {
        flex-direction: row !important;
        border-left: none;
        border-right: none;
        gap: 0;
        width: 100%;
    }
    .features-bar-item {
        border-right: 1px solid var(--border) !important;
        border-bottom: none !important;
        padding: 10px 12px !important;
        flex: 1;
        display: flex;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 8px !important;
    }
    .features-bar-item:last-child {
        border-right: none !important;
        border-bottom: none !important;
        padding: 10px 12px !important;
    }
}

/* FILTRAR POR CATEGORIAS Button Outline */
.filter-toggle-btn {
    background: transparent;
    color: #ffffff;
    border: 1.5px solid var(--accent);
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 0.8px;
    cursor: pointer;
    outline: none;
    transition: all 0.25s ease;
    text-transform: uppercase;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.filter-toggle-btn:hover {
    background-color: rgba(255, 212, 0, 0.08);
    border-color: var(--accent-hover);
    box-shadow: 0 0 10px rgba(255, 212, 0, 0.1);
}

/* Mega Menu Style Categories Container */
.categories-filter-menu {
    display: none;
    background-color: var(--panel);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 30px;
    width: 100%;
}
@keyframes fadeInMenu {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.categories-filter-menu.show {
    display: block;
    animation: fadeInMenu 0.25s ease-out forwards;
}
.categories-filter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}
.category-filter-item {
    background-color: #070707;
    border: 1px solid var(--border);
    color: var(--muted);
    padding: 14px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}
.category-filter-item:hover, .category-filter-item.active {
    background-color: rgba(255, 212, 0, 0.08);
    border-color: var(--accent);
    color: var(--accent);
}
@media(max-width: 576px) {
    .categories-filter-grid {
        grid-template-columns: 1fr;
    }
}
