/* Gallery Specific Styles */

/* Gallery Hero */
.gallery-hero {
    position: relative;
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, var(--hot-pink) 0%, var(--vibrant-purple) 30%, var(--sky-blue) 70%, var(--turquoise) 100%);
    color: white;
    text-align: center;
    overflow: hidden;
    min-height: 75vh;
    display: flex;
    align-items: center;
}

.gallery-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.08) 1px, transparent 0);
    background-size: 32px 32px;
    opacity: 0.6;
    z-index: 1;
    animation: subtleMove 25s ease-in-out infinite;
}

.gallery-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.gallery-hero .hero-content {
    position: relative;
    z-index: 3;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.gallery-hero .hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.gallery-hero .hero-badge span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.gallery-hero .hero-title {
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    color: white;
    letter-spacing: -0.02em;
    line-height: 1.1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    animation: titleGlow 4s ease-in-out infinite alternate;
}

.gallery-hero .hero-description {
    font-size: 1.375rem;
    font-weight: 500;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.5s both;
}

.gallery-hero .hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.gallery-hero .stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 1.5rem 1rem;
    min-width: 120px;
    transition: all 0.3s ease;
}

.gallery-hero .stat-item:hover {
    transform: translateY(-5px) scale(1.05);
    background: rgba(255, 255, 255, 0.15);
}

.gallery-hero .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.25rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.gallery-hero .stat-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Floating Elements for Gallery Hero */
.gallery-hero .floating-element {
    position: absolute;
    border-radius: 50%;
    z-index: 2;
}

.gallery-hero .floating-element-1 {
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(255, 214, 10, 0.25) 0%, rgba(255, 214, 10, 0.08) 70%, transparent 100%);
    top: 12%;
    left: 6%;
    animation: floatLarge 10s ease-in-out infinite;
    filter: blur(1px);
}

.gallery-hero .floating-element-2 {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.3) 0%, rgba(236, 72, 153, 0.1) 70%, transparent 100%);
    bottom: 18%;
    right: 10%;
    animation: floatMedium 8s ease-in-out infinite reverse;
    filter: blur(0.5px);
}

.gallery-hero .floating-element-3 {
    width: 75px;
    height: 75px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.25) 0%, rgba(14, 165, 233, 0.08) 70%, transparent 100%);
    top: 55%;
    left: 88%;
    animation: floatSmall 6s ease-in-out infinite;
    filter: blur(0.5px);
}

.gallery-hero .floating-element-4 {
    width: 55px;
    height: 55px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.3) 0%, rgba(34, 197, 94, 0.1) 70%, transparent 100%);
    top: 22%;
    right: 22%;
    animation: floatTiny 9s ease-in-out infinite reverse;
    filter: blur(0.5px);
}

/* Scroll Indicator for Gallery */
.gallery-hero .scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    font-weight: 500;
    z-index: 3;
    animation: fadeInUp 1s ease-out 1.2s both;
    text-align: center;
    width: fit-content;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-hero .scroll-indicator:hover {
    transform: translateY(-5px);
}

.gallery-hero .scroll-arrow {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: enhancedBounce 2s infinite;
    transition: all 0.3s ease;
}

.gallery-hero .scroll-indicator:hover .scroll-arrow {
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.1);
}

.gallery-hero .scroll-indicator span {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.75rem;
    text-align: center;
    white-space: nowrap;
}

/* Gallery Main */
.gallery-main {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--very-light-purple) 0%, var(--soft-white) 50%, var(--very-light-blue) 100%);
    min-height: 100vh;
    position: relative;
}

.gallery-main::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-radial-gradient(circle at 0 0, transparent 0, rgba(236, 72, 153, 0.03) 10px, transparent 11px, rgba(236, 72, 153, 0.03) 12px, transparent 20px);
    opacity: 0.5;
    z-index: 0;
}

.gallery-main .container {
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #1F2937;
}

.section-description {
    font-size: 1.25rem;
    color: #6B7280;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Gallery Filters */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.75rem;
    border: none;
    border-radius: 50px;
    background: white;
    color: #6B7280;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--hot-pink), var(--vibrant-purple));
    transition: left 0.3s ease;
    z-index: -1;
}

.filter-btn:hover::before,
.filter-btn.active::before {
    left: 0;
}

.filter-btn:hover,
.filter-btn.active {
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.filter-icon {
    font-size: 1.125rem;
}

.filter-text {
    font-weight: 600;
}

.filter-count {
    background: rgba(0, 0, 0, 0.1);
    color: inherit;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    min-width: 24px;
    text-align: center;
}

.filter-btn.active .filter-count,
.filter-btn:hover .filter-count {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Gallery Count */
.gallery-count {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding: 1rem 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.gallery-count p {
    color: #6B7280;
    font-weight: 600;
    margin: 0;
}

.view-options {
    display: flex;
    gap: 0.5rem;
}

.view-btn {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 8px;
    background: #F3F4F6;
    color: #6B7280;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.view-btn:hover,
.view-btn.active {
    background: var(--hot-pink);
    color: white;
    transform: scale(1.1);
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    width: 100%;
    max-width: 100%;
    grid-auto-rows: auto;
    justify-items: stretch;
    align-items: stretch;
    place-items: stretch;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1;
    background: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
    border: 2px solid transparent;
    width: 100%;
    height: auto;
    display: block;
    grid-column: span 1;
    grid-row: span 1;
    justify-self: stretch;
    align-self: stretch;
}

.gallery-item:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(236, 72, 153, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, 
        rgba(0, 0, 0, 0.8) 0%, 
        rgba(0, 0, 0, 0.4) 50%, 
        transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: white;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    font-size: 1.375rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-overlay p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.gallery-item:hover .gallery-overlay h4,
.gallery-item:hover .gallery-overlay p {
    transform: translateY(0);
}

/* Gallery Item Animation States */
.gallery-item.filtering {
    transition: all 0.4s ease;
}

.gallery-item.hidden {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
    display: none;
}

.gallery-item.visible {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
    display: block;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 4rem 2rem;
    color: #6B7280;
}

.no-results-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.no-results p {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.no-results small {
    font-size: 0.875rem;
    opacity: 0.7;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.lightbox.active {
    display: flex;
    animation: fadeIn 0.3s ease-out;
}

.lightbox-overlay {
    position: absolute;
    inset: 0;
    cursor: pointer;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 10001;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 10001;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: scaleIn 0.4s ease-out;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-info {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    margin-top: 1.5rem;
    text-align: center;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 300px;
}

.lightbox-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
}

.lightbox-info p {
    font-size: 1rem;
    margin: 0 0 1rem 0;
    opacity: 0.9;
}

.lightbox-counter {
    font-size: 0.875rem;
    opacity: 0.7;
    font-weight: 500;
}

.lightbox-hints {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    backdrop-filter: blur(5px);
}

/* Loading States */
.gallery-item.loading {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

.gallery-item.loading img {
    opacity: 0;
}

.gallery-item.loaded img {
    opacity: 1;
    transition: opacity 0.5s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .gallery-hero {
        padding: 6rem 0 4rem;
        min-height: 65vh;
    }
    
    .gallery-hero .hero-content {
        padding: 0 1rem;
    }
    
    .gallery-hero .hero-title {
        font-size: 3.5rem;
        margin-bottom: 1.5rem;
    }
    
    .gallery-hero .hero-description {
        font-size: 1.25rem;
        line-height: 1.6;
    }
    
    .gallery-hero .hero-stats {
        gap: 2rem;
        margin-top: 2.5rem;
    }
    
    .gallery-hero .stat-item {
        padding: 1.25rem 0.75rem;
        min-width: 100px;
    }
    
    .gallery-hero .stat-number {
        font-size: 1.75rem;
    }
    
    .gallery-hero .stat-label {
        font-size: 0.8rem;
    }
    
    .gallery-main {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1.125rem;
    }
    
    .gallery-filters {
        gap: 0.75rem;
        padding: 0 1rem;
    }
    
    .filter-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.8rem;
    }
    
    .gallery-count {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .gallery-item {
        width: 100%;
        max-width: none;
    }
    
    .lightbox {
        padding: 1rem;
    }
    
    .lightbox-close {
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
    }
    
    .lightbox-nav {
        width: 50px;
        height: 50px;
    }
    
    .lightbox-prev {
        left: 1rem;
    }
    
    .lightbox-next {
        right: 1rem;
    }
    
    .lightbox-content img {
        max-height: 60vh;
    }
    
    .lightbox-info {
        padding: 1rem 1.5rem;
        min-width: auto;
        width: 100%;
        max-width: 300px;
    }
    
    .lightbox-hints {
        bottom: 1rem;
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }
}

@media (max-width: 480px) {
    .gallery-hero {
        padding: 5rem 0 3rem;
        min-height: 55vh;
    }
    
    .gallery-hero .hero-content {
        padding: 0 0.75rem;
    }
    
    .gallery-hero .hero-title {
        font-size: 2.75rem;
        margin-bottom: 1rem;
    }
    
    .gallery-hero .hero-description {
        font-size: 1.125rem;
        line-height: 1.5;
    }
    
    .gallery-hero .hero-stats {
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
        align-items: center;
    }
    
    .gallery-hero .stat-item {
        padding: 1rem 0.75rem;
        min-width: 90px;
        width: 100%;
        max-width: 280px;
    }
    
    .gallery-hero .stat-number {
        font-size: 1.5rem;
    }
    
    .gallery-hero .stat-label {
        font-size: 0.75rem;
    }
    
    .gallery-filters {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        padding: 0 0.5rem;
    }
    
    .filter-btn {
        width: 220px;
        justify-content: center;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 0.5rem;
    }
    
    .gallery-item {
        aspect-ratio: 4/3;
        width: 100%;
        max-width: 100%;
        margin: 0;
    }
}

/* Animation Keyframes */
@keyframes titleGlow {
    0% {
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 255, 255, 0.1);
    }
    100% {
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 255, 255, 0.2);
    }
}

@keyframes subtleMove {
    0%, 100% {
        transform: translateX(0) translateY(0);
    }
    25% {
        transform: translateX(10px) translateY(-5px);
    }
    50% {
        transform: translateX(-5px) translateY(10px);
    }
    75% {
        transform: translateX(-10px) translateY(-5px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes enhancedBounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translate3d(0, 0, 0);
    }
    40%, 43% {
        transform: translate3d(0, -15px, 0);
    }
    70% {
        transform: translate3d(0, -8px, 0);
    }
    90% {
        transform: translate3d(0, -3px, 0);
    }
}

@keyframes floatLarge {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
        opacity: 0.7;
    }
    25% {
        transform: translateY(-25px) translateX(15px) rotate(45deg);
        opacity: 0.9;
    }
    50% {
        transform: translateY(-15px) translateX(-20px) rotate(90deg);
        opacity: 0.8;
    }
    75% {
        transform: translateY(-30px) translateX(8px) rotate(135deg);
        opacity: 0.9;
    }
}

@keyframes floatMedium {
    0%, 100% {
        transform: translateY(0px) translateX(0px) scale(1);
        opacity: 0.8;
    }
    33% {
        transform: translateY(20px) translateX(-15px) scale(1.1);
        opacity: 1;
    }
    66% {
        transform: translateY(-25px) translateX(12px) scale(0.9);
        opacity: 0.7;
    }
}

@keyframes floatSmall {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 1;
    }
}

@keyframes floatTiny {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-18px) translateX(-12px);
        opacity: 0.9;
    }
}

/* Animation Keyframes */
@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .gallery-overlay {
        background: linear-gradient(to top, 
            rgba(0, 0, 0, 0.9) 0%, 
            rgba(0, 0, 0, 0.6) 50%, 
            transparent 100%);
    }
    
    .filter-btn {
        border: 2px solid #6B7280;
    }
    
    .filter-btn.active {
        border-color: white;
    }
}