/* Base styles remain unchanged */
@font-face {
  font-family: "Century Gothic";
  src: url("css/fonts/century_gothic-webfont.woff2") format("woff2"),
       url("css/fonts/century_gothic-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Bornia Sans';
  src: url('/fonts/BorniaSans-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}


body {
  background-color: white;
  font-family: "Century Gothic", "Bornia Sans", "Helvetica Neue", Helvetica, sans-serif;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.page-wrapper {
  flex: 1;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em 3em;
  flex-wrap: wrap;
}

.logo img {
  height: 50px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.logo {
  margin-left: 1em;
}

.site-nav {
  margin-right: 1em;
}

@media (min-width: 769px) {
  .close-btn {
    display: none;
  }
}

.site-nav ul {
  display: flex;
  gap: 2em;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  text-decoration: none;
  color: #0e2841;
  font-family: "Century Gothic", sans-serif;
  font-weight: 400;
}

#Banner {
  display: flex;
  background-color: #0e2841;
  justify-content: center;
}

#Banner h2 {
  font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: white;
  margin: 0;
  padding: 1em;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  font-size: 2rem;
  background: none;
  border: none;
  color: #0e2841;
  cursor: pointer;
}

.nav-toggle:hover {
  color: #0077cc;
  transform: scale(1.1);
}

.nav-toggle::after {
  content: "";
  font-size: 1rem;
  margin-left: 0.5em;
}
@media screen and (max-width: 644px) {
  .gallery-logo {
    width: 100%;
  }
}
/* Responsive navigation */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

.close-btn {
  display: none;
}

/* Only show when menu is open */
.site-nav.open .close-btn {
  display: block;
}


  .site-nav ul {
    display: none;
    flex-direction: column;
    padding: 1em;
    border-radius: 8px;
    gap: 1em;
  }

  .site-nav.open ul {
    display: flex;
  }

  h1, h2 {
    font-size: 1.5rem;
    text-align: center;
  }

  .art-title {
    font-size: 1rem;
  }

  .art-grid {
    flex-direction: column;
    align-items: center;
    padding: 1em;
  }

  .art-item {
    width: 90%;
    margin-bottom: 1.5em;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    padding: 1em;
  }
}


.art-title {
  padding: 0.5em 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2em;
  padding: 0;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  overflow: hidden;
  text-align: center;
  animation: fadeInUp 0.6s ease-out both;
  transition: transform 0.2s ease-in-out;
}

.gallery-item:hover {
  transform: scale(1.03);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid #ccc;
}

.gallery-item p {
  margin: 0.5em 0;
  font-size: 1.1em;
  font-weight: 500;
  color: #333;
}

.gallery-item a {
  text-decoration: none;
  color: inherit;
  display: block;
  padding: 0.5em;
}

.newest-art {
  background-color: #f2f2f2;
  text-align: center;
}

#NewArtDiv {
  display: flex;
  margin-left: 15%;
}

#NewArtH2 {
  font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
  font-weight: 600;
  font-size: 2.5rem;
  color: #0e2841;
  margin: 2rem 0 1rem 0;   /* remove margin-left */
  max-width: 1200px;       /* match your art-grid max width */
  padding-left: 1rem;      /* align with grid gutter */
  text-align: left;
  width: 100%;
}.art-grid {
  display: flex;
  justify-content: center;
  gap: 2em;
  flex-wrap: wrap;
  max-width: 100%;
  margin: 0 auto;
  padding-bottom: 3rem;
}

.art-item {
  width: 300px;
  height: 350px;
  background-color: #f9f9f9;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  animation: fadeInUp 0.6s ease-out both;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.art-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.art-item-image {
  width: 100%;
  height: 80%;
  object-fit: cover;
  border-bottom: 1px solid #ddd;
}

.art-item a {
  text-decoration: none;
  color: inherit;
  display: block;
  padding: 0.5em;
}

.site-footer {
  background-color: #000;
  color: white;
  padding: 2em;
  text-align: center;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 1em 0;
  display: flex;
  justify-content: center;
  gap: 2em;
}

.footer-nav a {
  color: #ccc;
}

.footer-nav a:hover {
  color: white;
}

.designer-credit {
  font-size: 0.9em;
  margin-top: 1em;
  color: #ccc;
}

.welcome-message {
  background-color: #ffffff;
  padding: 3em 2em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.welcome-message h2 {
  font-size: 2.5rem;
  color: #0e2841;
  margin-bottom: 0.5em;
}

.welcome-message p {
  font-size: 1.2rem;
  color: #333;
  line-height: 1.6;
}

.see-more-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 1em 0;
  position: relative;
}

.fading-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, #000, transparent);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
}

.see-more-button {
  z-index: 1;
  background-color: #f2f2f2;
  padding: 0 1em;
}

.button-link:focus,
.site-nav a:focus {
  outline: 2px solid #0077cc;
  outline-offset: 2px;
}

.button-link {
  display: inline-block;
  padding: 0.75em 2em;
  background-color: #0e2841;
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.button-link:hover {
  background-color: #0077cc;
  transform: scale(1.05);
}

.homepage-flow {
  background-color: #f2f2f2;
  padding-bottom: 3em;
}


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

html {
  scroll-behavior: smooth;
}

/* Upcoming Events Section */
.upcoming-events {
  background-color: #f0f4f8;
  padding: 3em 2em;
  text-align: center;
  max-width: 900px;
  margin: 3em auto;
  border-radius: 8px;
  border-top: 1px solid #ccc; /* soft visual divider */
}


.upcoming-events h2 {
  font-size: 2.5rem;
  color: #0e2841;
  margin-bottom: 1em;
  border-bottom: 2px solid #0e2841;
  padding-bottom: 0.3em;
  display: inline-block;
}

.upcoming-events ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.upcoming-events li {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 0.8em;
}


/* Rays Art Logo Styling */
.rays-art-logo {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 2em auto;
  object-fit: contain;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  max-width: 1200px;
  margin: 3em auto; /* horizontally centers it */
  padding: 2em;
  background-color: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  border-radius: 8px;

  justify-content: center;   /* ? center contents horizontally */
  align-items: flex-start;   /* optional: or 'center' for vertical centering */
}

.contact-sidebar {
  flex: 1;
  min-width: 280px;
  max-width: 33%;
  display: flex;
  flex-direction: column;
  gap: 1.5em;
}

.contact-form-area {
  flex: 2;
  min-width: 300px;
}

.contact-wrapper {
  padding: 0;
}

.contact-heading {
  font-size: 2rem;
  margin-bottom: 0.5em;
  color: #0e2841;
}

.contact-subheading {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 1.5em;
}

.contact-box {
  background-color: #f7f7f7;
  padding: 1.5em;
  border-radius: 8px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.contact-box h3 {
  font-size: 1.6rem;
  color: #0e2841;
  margin: 0.5em 0;
}

.contact-box p {
  font-size: 1rem;
  color: #333;
  margin: 0.3em 0;
}

.contact-box:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
  transition: all 0.3s ease;
}


.contact-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1em auto;
  margin-bottom: 0.5em;
  display: block;
  border: 2px solid #ccc;
  background-color: #fff;
}

form input[type="text"],
form input[type="email"],
form textarea {
  width: 100%;
  padding: 1em;
  margin-bottom: 1.2em;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
  background-color: #fff;
  transition: border-color 0.3s ease;
}


form input:focus,
form textarea:focus {
  border-color: #0e2841;
  outline: none;
}

form input[type="submit"],
form button {
  background-color: #0e2841;
  color: white;
  padding: 0.8em 2em;
  border: none;
  border-radius: 6px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

form input[type="submit"]:hover,
form button:hover {
  background-color: #0077cc;
  transform: scale(1.05);
}

/* Align submit button to the right */
.contact-form-box form {
  display: flex;
  flex-direction: column;
}

.contact-form-box form input[type="submit"],
.contact-form-box form button[type="submit"] {
  align-self: flex-end;
  margin-top: 1em; /* optional spacing */
}

.contact-form-box {
  padding: 2em 0; /* vertical padding */
}

form .Actions {
  display: flex;
  justify-content: flex-end;
}


/* Responsive adjustments for Rays Art logo */
@media (max-width: 768px) {
  .rays-art-logo {
    max-width: 90%;
    margin: 1.5em auto;
  }

  .contact-container {
    flex-direction: column;
  }

  .contact-sidebar,
  .contact-form-area {
    width: 100%;
    max-width: 100%;
  }

  .contact-box {
    margin-bottom: 2em;
  }

  .site-nav ul {
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 1em;
    margin: 0;
  }

  #NewArtDiv {
    margin-left: 0 !important;
    text-align: center;
    padding: 1.5em 1em; /* 1.5em top & bottom, 1em left & right */
  }

  #NewArtH2 {
    font-size: 2rem;
    margin: 0 auto;
    display: inline-block;
  }

  /* Header fixes */
  .site-header {
    padding: 1em 1.5em;  /* reduce side padding for mobile */
    justify-content: space-between;
  }

  .logo {
    margin-left: 0;
  }

  /* Extra for very small devices (like iPhone 14 Pro width) */
  @media (max-width: 400px) {
    .logo {
      margin: 0;
    }

    .nav-toggle {
      position: absolute;
      right: 1rem;
      top: 1.2rem;
    }
  }
}

@media (max-width: 768px) {
  /* Slide-out Navigation Styles */
  .site-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0e2841; /* Match the banner color */
    color: white;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    padding: 0; /* Ensures no padding around the sides */
  }

  .site-nav.open {
    transform: translateX(0);
  }

  .site-nav ul {
    display: flex;
    flex-direction: column;
    gap: 1.5em;
    text-align: center;
    padding: 0; /* Removes default padding */
    margin: 0; /* Removes default margin */
  }

  .site-nav a {
    font-size: 2rem;
    color: white;
  }

  .site-nav a:hover {
    background-color: #f2f2f2;
    color: #0e2841; /* Contrast color on hover */
  }

  /* Close button inside the slide-out menu */
  .close-btn {
    position: absolute;
    top: 1em;
    right: 1em;
    font-size: 2rem;
    color: white; /* Ensure visibility of the 'X' */
    background: none;
    border: none;
    cursor: pointer;
  }

  .close-btn:hover {
    color: #ff6666; /* Optional hover color */
  }

  .nav-toggle {
    display: block; /* Show hamburger menu */
    margin-left: auto;
    font-size: 2rem;
    background: none;
    border: none;
    color: #0e2841;
    cursor: pointer;
  }

  .nav-toggle:hover {
    color: #0077cc;
    transform: scale(1.1);
  }

  /* Hide the original horizontal nav menu */
  .site-nav ul {
    display: none;
  }

  .site-nav.open ul {
    display: flex;
  }

  /* Ensure close button visibility when menu is open */
  .site-nav .close-btn {
    display: block;
  }
}
/* --- Product Page Specific Styles (Final Update) --- */

/* Product Page Container */
.product-page-container {
    max-width: 900px;
    margin: 40px auto;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center; /* Center content horizontally */
}

/* Artwork Image Wrapper */
.artwork-image-wrapper {
    width: 100%;
    max-height: 600px;
    overflow: hidden;
    margin-bottom: 25px;
    border: 1px solid #eee;
    padding: 5px;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Artwork Image Styling */
.artwork-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    border-radius: 4px;
}

/* Container for Title/Caption on left and Button on right */
.product-info-and-button {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px; /* Space between this section and the content paragraph */
    flex-wrap: wrap;
    padding: 0 10px;
    box-sizing: border-box;
}

/* Container for Title and Caption (on the left) */
.product-details-below-image {
    text-align: left;
    flex-basis: 65%;
    max-width: 65%;
    margin-right: 20px;
    box-sizing: border-box;
}

/* Title Styling */
.product-details-below-image h1 {
    font-family: "Century Gothic", "Bornia Sans", sans-serif;
    font-size: 2.8em;
    color: #0e2841;
    margin-top: 0;
    margin-bottom: 5px;
    line-height: 1.2;
}

/* Caption Styling */
.product-details-below-image .product-caption {
    font-family: "Century Gothic", sans-serif;
    font-size: 1.2em;
    color: #555;
    margin-top: 0;
    margin-bottom: 0;
}

/* Product Actions Container (Enquire Button) */
.product-actions {
    flex-basis: auto;
    align-self: flex-start;
    white-space: nowrap;
}

/* Enquire Button Styling */
.enquire-button {
    display: inline-block;
    background-color: #0077cc;
    color: #fff;
    padding: 15px 30px;
    font-size: 1.2em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 119, 204, 0.3);
    font-family: "Century Gothic", sans-serif;
}

.enquire-button:hover {
    background-color: #0e2841;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(14, 40, 65, 0.4);
}

.enquire-button:active {
    background-color: #0a1f33;
    transform: translateY(0);
    box-shadow: 0 2px 5px rgba(14, 40, 65, 0.2);
}

/* NEW: Artwork Description Paragraph */
.artwork-description {
    font-family: "Century Gothic", sans-serif; /* Consistent font */
    font-size: 1.1em; /* Readable size */
    color: #333; /* Darker color for main content */
    line-height: 1.7; /* Good line height for readability */
    margin-top: 20px; /* Space above the description */
    margin-bottom: 20px; /* Space below the description */
    text-align: left; /* Align description text to the left */
    max-width: 100%; /* Ensure it fits within the container */
    padding: 0 10px; /* Match padding of product-info-and-button for alignment */
    box-sizing: border-box;
}


/* Responsive Adjustments for Product Page */
@media (max-width: 768px) {
    .product-page-container {
        margin: 20px auto;
        padding: 20px;
    }

    .artwork-image-wrapper {
        max-height: 400px;
        margin-bottom: 20px;
    }

    /* Stack text and button vertically on smaller screens */
    .product-info-and-button {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .product-details-below-image {
        flex-basis: 100%;
        max-width: 100%;
        margin-right: 0;
        text-align: center;
    }

    .product-details-below-image h1 {
        font-size: 2em;
    }

    .product-details-below-image .product-caption {
        font-size: 1em;
    }

    .product-actions {
        flex-basis: 100%;
        text-align: center;
        align-self: center;
    }

    .enquire-button {
        width: 100%;
        padding: 12px 25px;
        font-size: 1em;
        box-sizing: border-box;
    }

    .artwork-description {
        font-size: 1em; /* Smaller font for mobile */
        padding: 0; /* Remove horizontal padding on mobile for full width */
    }
}

@media (max-width: 480px) {
    .product-page-container {
        border-radius: 0;
        box-shadow: none;
        padding: 15px;
    }

    .artwork-image-wrapper {
        max-height: 300px;
    }

    .product-details-below-image h1 {
        font-size: 1.8em;
    }
}

/* --- Pagination Styling --- */

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3em; /* Space above pagination */
    margin-bottom: 3em; /* Space below pagination */
    gap: 1em; /* Space between links/numbers */
    font-family: "Century Gothic", sans-serif; /* Consistent font */
    font-size: 1.1em;
}

.pagination a {
    text-decoration: none;
    color: #0077cc; /* Your button/link blue */
    padding: 0.5em 1em;
    border: 1px solid #0077cc;
    border-radius: 4px;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.pagination a:hover {
    background-color: #0077cc;
    color: white;
    border-color: #0077cc;
}

.pagination strong {
    background-color: #0e2841; /* Your dark blue for current page */
    color: white;
    padding: 0.5em 1em;
    border-radius: 4px;
    font-weight: bold;
    pointer-events: none; /* Make current page not clickable */
}

/* Optional: Hide Previous/Next if on first/last page respectively */
.pagination a.disabled { /* If you add a 'disabled' class in the template */
    opacity: 0.6;
    cursor: not-allowed;
}

/* Responsive adjustments for pagination */
@media (max-width: 768px) {
    .pagination {
        flex-wrap: wrap; /* Allow pagination to wrap on smaller screens */
        gap: 0.5em; /* Reduce gap */
        font-size: 1em;
        margin-top: 2em;
        margin-bottom: 2em;
    }

    .pagination a,
    .pagination strong {
        padding: 0.4em 0.8em;
    }
}
/* === Layout Wrapper === */
.gallery-content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2em;
  box-sizing: border-box;
}

/* === Filter Form === */
.gallery-filter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  margin: 2em 0;
}

.gallery-filter-form label {
  font-weight: bold;
  margin-right: 0.5rem;
}

.gallery-filter-form select,
.gallery-filter-form input[type="text"] {
  padding: 0.5rem 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.gallery-filter-form select {
  background-color: #f9f9f9;
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.gallery-filter-form select:focus {
  border-color: #0078d7;
  outline: none;
  background-color: #fff;
}

.gallery-filter-form input[type="text"] {
  width: 200px;
}

.gallery-filter-form button {
  padding: 0.5rem 1.2rem;
  background-color: #0078d7;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.gallery-filter-form button:hover {
  background-color: #005fa3;
}

.clear-search {
  margin-left: 1rem;
  font-size: 0.9rem;
  color: #0078d7;
  text-decoration: underline;
  cursor: pointer;
}

/* === Filter Columns === */
.filter-columns {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2em;
  width: 100%;
}

.filter-left,
.filter-right {
  flex: 1 1 300px;
  max-width: 300px;
}

/* === Search Bar === */
.gallery-search {
  display: flex;
  justify-content: flex-end;
  margin: 2em 0 20px;
}

.gallery-search .search-form {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
}

.gallery-search input[type="text"] {
  width: 250px;
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 0.95rem;
  line-height: 1.5;
  transition: border-color 0.2s ease-in-out;
}

.gallery-search input[type="text"]:focus {
  border-color: #998;
  outline: none;
}

.gallery-search button[type="submit"] {
  padding: 8px 15px;
  background-color: #333;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}

.gallery-search button[type="submit"]:hover {
  background-color: #555;
}

.gallery-search .clear-search {
  padding: 6px 10px;
  color: #667;
  text-decoration: none;
  font-size: 0.85rem;
  border: 1px solid transparent;
  border-radius: 5px;
  transition: color 0.2s ease-in-out, border-color 0.2s ease-in-out;
}

.gallery-search .clear-search:hover {
  color: #333;
  border-color: #ddd;
}

/* === Mobile Adjustments === */
@media (max-width: 600px) {
  .gallery-content-wrapper {
    margin: 20px auto;
    padding: 0 1em;
  }

  .gallery-search {
    justify-content: center;
  }

  .gallery-search .search-form {
    flex-direction: column;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
  }

  .gallery-search input[type="text"],
  .gallery-search button[type="submit"],
  .gallery-search .clear-search {
    width: 100%;
    max-width: 250px;
    font-size: 0.8rem;
    padding: 5px 8px;
  }

  .gallery-search .clear-search {
    font-size: 0.7rem;
  }

  .gallery-grid {
    padding: 0;
  }

  .gallery-filter-form,
  .filter-columns {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
  }

  .filter-left,
  .filter-right {
    flex: 0 1 auto;
    max-width: none;
    width: auto;
  }
}