/* 
WoofGlam - Premium Dog Grooming Website
Colors:
- Primary Gold: #F4C93B 
- Dark Brown: #392517
- Light Gold: #F9E4A1
- Accent: #FFD700
- Text Dark: #333333
- Text Light: #FFFFFF
- Background Light: #F8F8F8
*/

/* Base Styles */
:root {
    --primary-gold: #F4C93B;
    --dark-brown: #392517;
    --light-gold: #F9E4A1;
    --accent: #FFD700;
    --text-dark: #333333;
    --text-light: #FFFFFF;
    --background-light: #F8F8F8;
    --primary-font: 'Montserrat', sans-serif;
    --heading-font: 'Playfair Display', serif;
    --transition: all 0.3s ease;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --radius: 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--primary-font);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--background-light);
    user-select: none; /* Prevent text selection */
}

/* Prevent right-click, inspect elements, and text copying */
body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

body::-webkit-scrollbar {
    width: 8px;
}

body::-webkit-scrollbar-track {
    background: var(--background-light);
}

body::-webkit-scrollbar-thumb {
    background-color: var(--primary-gold);
    border-radius: 20px;
}

img {
    max-width: 100%;
    height: auto;
    pointer-events: none; /* Prevent image dragging */
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    pointer-events: auto !important; /* Ensure links can be clicked and hovered */
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--background-light);
}

.text-center {
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease !important;
    box-shadow: var(--box-shadow);
    position: relative;
    overflow: hidden;
    pointer-events: auto !important; /* Ensure buttons can be clicked and hovered */
    z-index: 5;
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    z-index: -1;
}

.btn:hover:before {
    left: 100%;
}

.btn-primary {
    background-color: var(--primary-gold);
    color: var(--dark-brown);
    border: 2px solid var(--primary-gold);
}

.hero-content .btn-primary:hover, 
.btn-primary:hover {
    background-color: transparent !important;
    color: var(--primary-gold) !important;
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2) !important;
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-gold);
    border: 2px solid var(--primary-gold);
}

.hero-content .btn-secondary:hover,
.btn-secondary:hover {
    background-color: var(--primary-gold) !important;
    color: var(--dark-brown) !important;
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2) !important;
}

/* Hero section specific button overrides */
#hero .btn-primary:hover {
    background-color: transparent !important;
    color: var(--text-light) !important;
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3) !important;
}

#hero .btn-secondary:hover {
    background-color: var(--primary-gold) !important;
    color: var(--dark-brown) !important;
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3) !important;
}

/* Hero-specific styles to ensure hover works */
.hero-content .cta-buttons {
    position: relative;
    z-index: 10;
    pointer-events: auto !important;
}

.hero-content .cta-buttons a {
    pointer-events: auto !important;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-brown);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pulse {
    width: 150px;
    height: auto;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.8;
    }
    70% {
        transform: scale(1.05);
        opacity: 1;
    }
    100% {
        transform: scale(0.95);
        opacity: 0.8;
    }
}

/* Header */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition);
}

#header.scrolled {
    background-color: var(--dark-brown);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 12px 0;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    transition: var(--transition);
}

#header.scrolled .logo img {
    height: 50px;
}

#navbar ul {
    display: flex;
    gap: 30px;
}

#navbar ul li a {
    color: var(--text-light);
    font-weight: 500;
    font-size: 16px;
    padding: 8px 0;
    position: relative;
}

#navbar ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-gold);
    transition: var(--transition);
}

#navbar ul li a:hover::after,
#navbar ul li a.active::after {
    width: 100%;
}

.mobile-nav-toggle {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: var(--text-light);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1587300003388-59208cc962cb?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--text-light);
}

.hero-content {
    max-width: 800px;
    z-index: 2;
}

.hero-content h1 {
    font-family: var(--heading-font);
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-light);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content h2 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.announcement {
    background-color: rgba(57, 37, 23, 0.8);
    border-radius: var(--radius);
    padding: 20px;
    position: relative;
    overflow: hidden;
    border-left: 5px solid var(--primary-gold);
    max-width: 600px;
}

.ribbon {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary-gold);
    color: var(--dark-brown);
    padding: 5px 15px;
    transform: translateX(30%) translateY(-10%) rotate(45deg);
    transform-origin: top left;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 600;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(57, 37, 23, 0.7), rgba(57, 37, 23, 0.3));
    z-index: 1;
}

/* About Section */
.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image img {
    border-radius: var(--radius);
    box-shadow: var(--box-shadow);
}

.rounded-image {
    border-radius: var(--radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.rounded-image:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.section-title {
    font-family: var(--heading-font);
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
}

.highlight {
    color: var(--primary-gold);
}

.section-description {
    font-size: 18px;
    margin-bottom: 25px;
    opacity: 0.9;
}

.features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-radius: var(--radius);
    background-color: var(--background-light);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-item i {
    font-size: 24px;
    color: var(--primary-gold);
}

.feature-item h4 {
    font-weight: 600;
    font-size: 16px;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: var(--text-light);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-gold) 0%, rgba(255, 215, 0, 0.2) 100%);
    opacity: 0;
    z-index: -1;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-card:hover::before {
    opacity: 0.1;
}

.service-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    color: var(--dark-brown);
    font-size: 28px;
    box-shadow: 0 5px 15px rgba(244, 201, 59, 0.3);
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    font-size: 15px;
    opacity: 0.9;
}

.service-cta {
    margin-top: 50px;
}

.service-cta p {
    margin-bottom: 20px;
    font-size: 18px;
}

/* Gallery Section */
.gallery-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.filter-btn {
    background: var(--text-light);
    color: var(--text-dark);
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
    background-color: var(--primary-gold);
    color: var(--dark-brown);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(57, 37, 23, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: var(--text-light);
    font-size: 40px;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1.2);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    opacity: 0;
    transition: var(--transition);
}

.modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
}

.modal-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90%;
    max-width: 1000px;
    margin: auto;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--primary-gold);
    transform: rotate(90deg);
}

#modal-img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    color: var(--text-light);
    background-color: rgba(57, 37, 23, 0.5);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 2001;
}

.modal-prev {
    left: 20px;
}

.modal-next {
    right: 20px;
}

.modal-nav:hover {
    background-color: var(--primary-gold);
    color: var(--dark-brown);
}

/* Reviews Section */
.reviews-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.review-slide {
    height: 100%;
}

.review-content {
    background-color: var(--text-light);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--box-shadow);
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.review-content::before {
    content: '\f10d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 30px;
    color: rgba(244, 201, 59, 0.2);
    z-index: 0;
}

.review-content:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.stars {
    color: var(--primary-gold);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.review-content p {
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    font-style: italic;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.reviewer h4 {
    font-weight: 600;
    font-size: 18px;
}

.review-cta {
    margin-top: 20px;
}

/* Announcement Section */
.announcement-wrapper {
    background-color: var(--text-light);
    border-radius: var(--radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.announcement-content {
    padding: 40px;
}

.announcement-content p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
}

.announcement-content h3 {
    color: var(--dark-brown);
    margin: 30px 0 15px;
    font-weight: 600;
}

.opening-date {
    margin: 40px 0 30px;
    padding: 20px;
    background-color: var(--light-gold);
    border-radius: var(--radius);
    text-align: center;
}

.opening-date h3 {
    margin: 0;
    color: var(--dark-brown);
}

.announcement-cta {
    margin-top: 30px;
}

/* Contact Section */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-item i {
    font-size: 24px;
    color: var(--primary-gold);
    margin-top: 5px;
}

.contact-item h4 {
    margin-bottom: 5px;
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-gold);
    color: var(--dark-brown);
    font-size: 20px;
    transition: var(--transition);
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.map-container {
    width: 100%;
    height: 100%;
    min-height: 350px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-form-container {
    background-color: var(--text-light);
    border-radius: var(--radius);
    box-shadow: var(--box-shadow);
    padding: 40px;
    margin-top: 50px;
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    margin-bottom: 10px;
}

.form-group:last-child,
.form-group:nth-last-child(2) {
    grid-column: 1 / span 2;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: var(--radius);
    font-family: var(--primary-font);
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(244, 201, 59, 0.2);
}

.contact-form button {
    grid-column: 1 / span 2;
    justify-self: center;
    margin-top: 20px;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-gold);
    color: var(--dark-brown);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--dark-brown);
    color: var(--primary-gold);
    transform: translateY(-5px);
}

/* Footer */
#footer {
    background-color: var(--dark-brown);
    color: var(--text-light);
    padding: 70px 0 20px;
}

.footer-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-logo img {
    height: 80px;
    margin-bottom: 15px;
}

.footer-logo p {
    opacity: 0.8;
}

.footer-links h4,
.footer-contact h4,
.footer-hours h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--primary-gold);
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    opacity: 1;
    color: var(--primary-gold);
}

.footer-contact p,
.footer-hours p {
    margin-bottom: 10px;
    opacity: 0.8;
}

.footer-contact p i,
.footer-hours p i {
    margin-right: 8px;
    color: var(--primary-gold);
}

.footer-contact a:hover {
    color: var(--primary-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    opacity: 0.7;
    font-size: 14px;
}

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.in-view {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    animation-name: fadeIn;
}

.fade-in-up {
    animation-name: fadeInUp;
}

.fade-in-left {
    animation-name: fadeInLeft;
}

.fade-in-right {
    animation-name: fadeInRight;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .section {
        padding: 80px 0;
    }
    
    .hero-content h1 {
        font-size: 48px;
    }
    
    .about-wrapper {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    #navbar {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background-color: var(--dark-brown);
        flex-direction: column;
        padding: 80px 50px 30px;
        z-index: 998;
        transition: 0.4s;
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    }
    
    #navbar.active {
        right: 0;
    }
    
    #navbar ul {
        flex-direction: column;
        gap: 20px;
    }
    
    .mobile-nav-toggle {
        display: block;
        z-index: 999;
    }
    
    .mobile-nav-toggle.active i::before {
        content: '\f00d';
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-content h2 {
        font-size: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .form-group:nth-last-child(2) {
        grid-column: 1;
    }
    
    .contact-form button {
        grid-column: 1;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .reviews-slider {
        grid-template-columns: 1fr;
    }
    
    .footer-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo img {
        margin: 0 auto 15px;
    }
    
    .contact-item {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .section {
        padding: 60px 0;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-content h2 {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .gallery-filter {
        flex-direction: column;
        align-items: center;
    }
} 