/* ----- Generic Reset Styles for Icon Buttons ----- */
.icon-btn {
  background: none !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  outline: none !important;
  box-shadow: none !important;

  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 24px;
  min-height: 24px;

  width: 24px;
  /* make square for better balance */
  height: 24px;
}


/* ----- Generic Reset Styles for Search Inputs ----- */
.search-input {
  flex: 1;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  background: transparent;
  height: 40px;
  font-size: 14px;
  padding: 0 12px;
  max-width: 90%;
  transition: all 0.2s ease-out 0.2s;

  color: var(--mb-lightest, #4A4B44);
  /* Search */
  font-family: Montserrat;
  font-size: 11px;
  font-style: normal;
  font-weight: 540;
  line-height: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.search-overlay.hidden .search-input {
  opacity: 0;
  transform: translateX(-10px);
}

/* Search input focus animation */
.search-input:focus {
  opacity: 1;
  transform: translateX(0);
}



/* Search bar border */
.search-bar-border {
  position: relative;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  border-top: rgb(from var(--ib) r g b / 0.5) 1px solid;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1000;
}

/* Search bar container */
.search-bar-container {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  box-sizing: border-box;
  z-index: 1000;
}

/* ----- Unified Search Icon Styles ----- */
.search-icon,
.sidebar-search-icon,
.search-overlay-icon {
  display: block;
  width: 24px !important;
  height: 24px !important;
  max-width: 100%;
  flex-shrink: 0;
  /* prevent flexbox from collapsing */
}

/* Navbar */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
}

/* Remove header border on search page */
.search-page-layout~header,
body:has(.search-page-layout) header {
  border-bottom: none !important;
}





#menu-overlay {
  position: fixed;
  top: var(--header-height);
  height: auto;
  max-height: calc(100vh - var(--header-height));
  overflow-y: auto;
  overflow-x: hidden;
  left: 0;
  right: 0;
  background: var(--bg);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  z-index: 99999;
  transition: opacity 0.3s cubic-bezier(0.4, 0.0, 0.2, 1), backdrop-filter 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
  backdrop-filter: blur(10px);
}

/* Menu overlay transitions - simple opacity only */
#menu-overlay:not(.hidden) {
  opacity: 1;
  backdrop-filter: blur(10px);
}

#menu-overlay.hidden {
  opacity: 0;
  backdrop-filter: blur(0px);
}

/* Fade in animation for menu content */
#menu-overlay .menu-sections {
  opacity: 1;
  transition: opacity 0.3s ease-out 0.1s;
}

#menu-overlay.hidden .menu-sections {
  opacity: 0;
}



@media only screen and (max-width: 640px) {
  .search-overlay {
    padding: 0 20px 12px !important;
  }

  #search-overlay {
    padding: 0 20px 12px !important;
  }
}

/* the "moved" bottom border */
#search-overlay::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 25px;
  height: 1px;
  background: rgb(from var(--ib) r g b / 0.5);
  pointer-events: none;
}

/* Hidden class - updated for animations */
.hidden {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

/* Special case for dropdown menu to maintain display: none behavior */
.dropdown-menu.hidden {
  display: none;
}

.atelier {
  color: var(--mb);
  text-align: center;

  /* Button text/Mobile */
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
}

.popular-searches {
  padding-top: 30px;
}


/* Popular searches */
.popular-searches span {
  color: var(--mb);
  text-align: center;

  /* Hamburger Menu - Primary/DT */
  font-family: Montserrat;
  font-size: 13px;
  font-style: normal;
  font-weight: 540;
  line-height: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.popular-searches ul {
  margin: 0;
  padding: 12px 0 0 0;
  /* push li’s down */
  list-style: none;
}

.popular-searches ul li {
  font-size: 12px;
  color: var(--dc-greys-900);
  margin-bottom: 10px;

}

.popular-searches ul li a {
  color: var(--mb-lighter, #33342E);
  /* Hamburger Menu - Secondary/DT */
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 540;
  line-height: normal;
  text-transform: capitalize;
  text-decoration: none;
  margin-left: 5px;

}

.popular-searches ul li a:hover {
  text-decoration: none;
}

/* ----- Layout ----- */
.search-sidebar-layout {
  display: grid;
  grid-template-columns: 548px 1fr;
  min-height: 0;
}

/* ----- Sidebar ----- */
.sidebar {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-search-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  background: transparent;
  box-sizing: border-box;
}

/* ----- Suggested Block ----- */
.suggested-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.suggested-title {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--dc-greys-900);
}

.suggested-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}


.suggested-list li a {
  text-decoration: none;
  color: var(--mb-lightest, #4A4B44);

  /* Hamburger Menu - Secondary/DT */
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 540;
  line-height: normal;
  text-transform: capitalize;
  margin-left: 5px;
}

.suggested-list li a:hover {
  text-decoration: none;
}

/* ----- Main Content ----- */

/* Horizontal divider below search results text */
.search-results-divider {
  width: 1474px;
  height: 0px;
  border-top: 1px solid var(--mb-70, #B2B3AD);
  background: none;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
  opacity: 1;
}

.search-dashoard-heading {
  color: var(--mb);
  /* AG H1 / Desktop – 48/52 */
  text-align: center;
  font-family: var(--font-serif, "Bodoni Moda", serif);
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 36px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0;
  width: 495px;
  height: 73px;
  opacity: 1;
  border-radius: 0;
  /* No stroke or effects */
  border: none;
  outline: none;
  box-shadow: none;
  text-shadow: none;
  /* Center alignment (horizontal and vertical) */
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (min-width: 768px) {
  .search-dashoard-heading {
    font-size: 48px;
    line-height: 52px;
  }
}

.search-results {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 24px;
}


.search-result-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow 0.18s ease;
  width: 320px;
  /* match image width */
  margin: 0 0 96px 0;
}

.result-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.search-img {
  object-fit: cover;
  object-position: center top;
  border-radius: 3px;
  border: none;
  display: block;
  width: 320px;
  height: 480px;
  flex-shrink: 0;
  aspect-ratio: 91/139;

}

.search-result-card .tags {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 6px;
  text-align: right;
  padding-right: 0; /* ensure no padding */
}

/* Move the line outside layout influence */
.search-result-card .tags::before {
  content: "";
  position: absolute;
  left: 0;
  width: 40%;
  height: 0.5px;
  background: var(--grey-900);
  top: 50%;
  transform: translateY(-50%);
}

.tags {
  color: var(--grey-900);
  font-family: "Bodoni Moda";
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 1px;
  white-space: nowrap;
}


.author {
color: var(--mb);
/* Titlecase/Semibold/.65 */
font-family: Montserrat;
font-size: 12px;
font-style: normal;
font-weight: 500;
line-height: normal;
letter-spacing: 0.48px;
text-transform: capitalize;
}



.artist-name {
  color: var(--mb);
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 540;
  line-height: 20px; /* 142.857% */
  letter-spacing: 1.4px;
  text-transform: uppercase;
}


.sidebar-search-form {
  display: flex;
  align-items: center;
  gap: 0.5em;
}

.sidebar-search-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--white);
  font-size: 14px;
}

.sidebar-search-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}


.search-icon,
.hamburger-icon {
  display: block;
  width: 24px;
  height: 24px;
  position: relative;
  top: 2px;
}

.menu-sections {
  display: grid;
  grid-template-columns: 250px 250px 250px;
  /* fixed widths instead of 1fr */
  gap: 144px;
  /* small gap between them */
  justify-content: center;
  /* center the group */
  margin: 30px 60px 0;
  /* adjust vertical spacing as you like */
  padding: 0;
  width: max-content;
  /* shrink container to fit columns */
}

.menu-section {
  min-width: 250px;
  /* keep all sections same width */
}





.menu-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-section ul li {
  color: var(--mb-lighter, #33342E);
  /* Hamburger Menu - Secondary/DT */
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
  margin-bottom: 10px;
  letter-spacing: 0.08em;

}




/* Mobile menu footer - stack vertically */
@media only screen and (max-width: 640px) {
  .menu-footer {
    justify-content: flex-end;
  }

  .menu-footer ul {
    flex-direction: column;
    align-items: flex-end;
    gap: 1em;
  }
}


.close-btn {
  position: absolute;
  top: 16px;
  right: 70px;
  /* or keep right:16px with transform */
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;

  z-index: 9999;
  pointer-events: auto;
}

.close-icon {
  width: 24px;
  height: 24px;
}


.sidebar-search-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: var(--quaver);
}

.search-input {
  flex: 1;
  padding: 0.5em 0.75em;
  border: 1px solid var(--grey-200);
  border-radius: var(--border-radius, 4px);
  font-size: 0.95em;
  letter-spacing: 0.08em;
}

.filters {
  display: flex;
  flex-direction: column;
  gap: var(--quaver);
  margin-top: var(--crotchet);
}

.filter-group {
  display: flex;
  flex-direction: column;
}

.filter-dropdown {
  padding: 0.5em;
  border: 1px solid var(--grey-200);
  border-radius: var(--border-radius, 4px);
  background: var(--grey-100);
  font-size: 0.95em;
}

.search-page-layout {
  display: flex;
  align-items: flex-start;
  gap: 32px;
}

/* Scope all sidebar rules to only the search page */
.search-page-layout .sidebar {
  padding: 24px;
  flex: 0 0 250px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.search-page-layout .dashboard-main {
  flex: 1;
  padding: 24px 48px;
}

.search-page-layout .sidebar-search-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  background: transparent;
  box-sizing: border-box;
}

/* ----- Sliding Sidebar Styles ----- */

/* Override layout to remove static sidebar space */
.search-page-layout {
  display: block !important;
  /* Override flex */
  background-color: var(--bg);
  min-height: 100vh;
}

.search-page-layout .sliding-sidebar {
  position: fixed;
  top: 94px;
  left: 22px;
  height: 656px;
  max-height: calc(100vh - 94px - 40px);
  width: 411px;
  background: #ffffff;
  z-index: 10000;
  transform: translateX(calc(-100% - 80px));
  visibility: hidden;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s 0.3s;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.06), 0 1px 4px rgba(0, 0, 0, 0.04);
  overflow-y: auto;
  padding: 32px 32px 16px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 5px;
}

.search-page-layout .sliding-sidebar .search-dashoard-section {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.search-page-layout .sliding-sidebar .user-settings-container {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.search-page-layout .sliding-sidebar form {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.search-page-layout .sliding-sidebar.open {
  transform: translateX(0);
  visibility: visible;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s;
}

/* Overlay */
.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.15);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.sidebar-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* Filter Toggle Button */
.filter-toggle-btn {
  transform: none;
  background: transparent;
  border: none;
  border-radius: 0;
  color: var(--mb, #1C1D17);
  width: 67px;
  height: 20px;
  padding: 0;
  font-family: Montserrat;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.2s ease;
  /* Center / Center constraints */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  /* No effects, 100% opacity */
  opacity: 1;
  box-shadow: none;
  text-shadow: none;
}

.filter-toggle-btn:hover {
  background: transparent;
  color: var(--mb, #1F201D);
  /* Darker on hover */
}

/* Sidebar Header */
.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  padding-bottom: 0;
  width: 100%;
}

.sidebar-title {
  font-family: Montserrat;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--mb);
  margin: 0;
}

/* Close Button */
.close-sidebar-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.2s;
  margin-right: -8px;
  color: var(--mb);
}

.close-sidebar-btn:hover {
  opacity: 1;
}

.close-sidebar-btn img {
  width: 20px;
  height: 20px;
}

/* Main Content Adjustments */
.search-page-layout .search-dashoard-main {
  padding: 24px 48px;
  max-width: 1474px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

/* Ensure results grid is responsive */
.search-results {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 65px;
}

.search-results-wrapper {
  width: 100%;
  padding-top: 32px;
}

@media (max-width: 768px) {
  .search-page-layout .search-dashoard-main {
    padding: 24px 20px;
  }

  .search-results {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 20px;
  }
}

/* Responsive adjustments */
@media (max-width: 1550px) {

  .fixed-search-header .search-results-divider,
  .fixed-search-header .filter-bar {
    width: 100%;
    max-width: 1100px;
    padding: 0 32px;
    box-sizing: border-box;
  }

  .search-content-column {
    max-width: 1100px;
    width: 100%;
  }
}

/* ----- Search Content Column ----- */
.search-content-column {
  max-width: 1474px;
  /* Updated to match design width requirements */
  margin: 0 auto;
  width: 100%;
  position: relative;
  padding: 0;
  /* Remove padding if inner elements handle it, or keep it */
  box-sizing: border-box;
}

/* ----- Filter Rows ----- */
.filters-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.filters-list> :first-child {
  margin-top: 0;
}

.filter-row-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 50%;
  height: 52px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background-color 0.15s ease;
  box-sizing: border-box;
  border-radius: 5px;
  position: relative;
  margin-top: 10px;
}



.filter-row-btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--mb-70);
}

.filter-row-btn:hover {
  background-color: rgba(0, 0, 0, 0.015);
}

.filter-row-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 52px;
  padding: 0;
  background: transparent;
  box-sizing: border-box;
  position: relative;
  margin-top: 10px;
}



.filter-row-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 25%;
  height: 1px;
  background-color: var(--mb-70);
}

.filter-label {
  font-family: Montserrat;
  font-size: 17px;
  font-weight: 500;
  line-height: 28px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--dc-greys-900);
}

.filter-arrow {
  width: 12px;
  height: 12px;
  opacity: 1;
  transition: transform 0.2s;
  color: var(--dc-greys-900);
}

/* Rotate arrow when expanded (future proofing) */
.filter-row-btn[aria-expanded="true"] .filter-arrow {
  transform: rotate(90deg);
}

.filter-row-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.filter-currency {
  font-family: Montserrat;
  font-size: 13px;
  color: var(--mb);
  font-weight: 500;
}

.currency-wrapper {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  border-bottom: 1px solid var(--mb-70);
  display: flex;
  align-items: center;
  gap: 8px;
  width: auto;
  min-width: 40px;
  justify-content: flex-end;
}

.currency-selector {
  border: none;
  background: transparent;
  font-family: Montserrat;
  font-size: 15px;
  color: var(--mb-70);
  font-weight: 500;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  text-align: left;
}

.currency-selector:hover {
  color: #333;
}

.currency-arrow {
  width: 10px;
  height: 10px;
  color: var(--mb-70);
  /* Rotate arrow for currency to point right or simply be an arrow */
}

/* ----- Filter Section Content ----- */
.filter-section-content {
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.filter-section-content.hidden {
  display: none;
}

.filter-options {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 8px 0;
  background: transparent;
  border-radius: 0;
  margin-top: 0;
}

.filter-option {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 12px 4px;
  border-radius: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: background-color 0.15s ease;
}

.filter-option:last-child {
  border-bottom: none;
}

.filter-option:hover {
  background-color: transparent;
}

.filter-radio {
  accent-color: #333;
  width: 15px;
  height: 15px;
  cursor: pointer;
}

.filter-option-label {
  font-family: Montserrat;
  font-size: 12px;
  color: #555;
  font-weight: 500;
  text-transform: capitalize;
}

/* ----- Price Inputs ----- */
.price-range-inputs {
  display: flex;
  gap: 20px;
  padding: 15px 4px;
  background: transparent;
  border-radius: 0;
  margin-top: 0;
}

.price-input-group {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
  width: 50%;
}

.price-label {
  font-family: Montserrat;
  font-size: 15px;
  font-weight: 500;
  color: var(--dc-greys-900);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: -10px;
}

.price-field-wrapper {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--mb-70);
  padding-bottom: 6px;
  width: 100%;
}

.price-input {
  border: none;
  background: transparent;
  font-family: Montserrat;
  font-size: 13px;
  color: #333;
  width: 100%;
  padding: 0;
  outline: none;
}

.price-input::placeholder {
  color: #333;
  font-weight: 500;
}

/* ----- Sidebar Footer ----- */
.sidebar-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 0;
  margin-bottom: -20px;
}

.apply-btn {
  width: 100%;
  padding: 14px;
  background-color: var(--dc-greys-900);
  color: #fff;
  border: none;
  font-family: Montserrat;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.2s ease;
  border-radius: 5px;
  line-height: 1;
}

.apply-btn:hover {
  background-color: #222;
}

.reset-btn {
  width: 100%;
  padding: 14px;
  background-color: #fff;
  color: #444;
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-family: Montserrat;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  box-sizing: border-box;
  display: block;
  transition: all 0.2s ease;
  border-radius: 5px;
  line-height: 1;
}

.reset-btn:hover {
  background-color: #f8f8f8;
  border-color: rgba(0, 0, 0, 0.15);
  text-decoration: none;
}

/* ----- Artist Found Heading Styles ----- */
/* AG Uppercase / Semibold / 1.125 – 20/28 */
.artist-found-heading {
  font-family: Montserrat, sans-serif;
  font-size: 20px;
  font-weight: 600;
  /* Semibold */
  line-height: 28px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--dc-greys-900, #3B3A34);
  margin: 0;
  width: auto;
  white-space: nowrap;
  opacity: 1;
  /* 100% */
  border: none;
  /* No stroke */
  box-shadow: none;
  /* No effects */
  text-shadow: none;
  border-radius: 0;
  /* Corner radius 0 */
  text-align: center;
  /* Center alignment */
}

/* ----- Back to Top Button ----- */
.back-to-top-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 96px;
}

.back-to-top-btn {
  bottom: auto;
  width: 189px;
  height: 28px;
  background: transparent;
  border: none;
  border-radius: 0;
  color: var(--mb-70);
  font-family: Montserrat;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  opacity: 1;
  box-shadow: none;
  text-shadow: none;
  /* Layout adjustments */
  margin: 0 auto;
  position: static;
  transform: none;
}

.back-to-top-btn:hover {
  background: var(--mb, #1C1D17);
  color: #fff;
}

/* ----- Horizontal Separator Line ----- */
.horizontal-separator {
  bottom: auto;
  width: 100%;
  height: 0;
  border: none;
  border-top: 1px solid #B2B3AD;
  background: transparent;
  opacity: 1;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  /* Layout adjustments */
  margin: 48px 0 0 0;
  position: static;
  transform: none;
  left: auto;
  top: auto;
}

/* ----- Search Page Footer ----- */
.search-page-footer-wrapper {
  top: auto;
  bottom: auto;
  width: 100%;
  height: auto;
  min-height: 227px;
  background-color: var(--bg);
  /* Layout adjustments */
  position: static;
  margin-top: 0;
}

.search-page-footer-wrapper footer {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  padding-left: 24px;
  box-sizing: border-box;
  border-top: none;
  display: flex !important;
  justify-content: flex-start;
}

/* ----- Fixed Search Header ----- */
.fixed-search-header {
  position: fixed;
  top: 70px;
  /* Positioned below the main site header */
  left: 0;
  width: 100%;
  background-color: var(--bg, #ffffff);
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 37px;
  padding-bottom: 0px;
  border-bottom: 1px solid transparent;
}

/* Ensure content flow within the header */
.fixed-search-header .search-dashoard-heading {
  margin: 0 0 64px 0;
  position: static;
  transform: none;
  width: auto;
  height: auto;
}

.fixed-search-header .artist-found-heading {
  margin: 0 0 44px 0;
  position: static;
  transform: none;
  left: auto;
  top: auto;
}

.fixed-search-header .search-results-divider {
  margin: 0 0 16px 0;
  position: static;
  transform: none;
  left: auto;
  top: auto;
  width: 1474px;
  max-width: 90vw;
}

.fixed-search-header .filter-bar {
  width: 1474px;
  max-width: 90vw;
  display: flex;
  justify-content: flex-start;
  padding: 0;
  margin: 0;
}

.fixed-search-header .search-info-container {
  min-height: 52px;
  /* Reserves space for the artist found text to prevent layout jumps */
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Push the main grid content down to avoid overlap */
.search-content-column {
  margin-top: 260px;
  padding-top: 0;
  /* Make sure column takes full height and fits content */
  height: auto;
  min-height: 60vh;
  margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 1550px) {

  .fixed-search-header .search-results-divider,
  .fixed-search-header .filter-bar {
    width: 100%;
    max-width: 1100px;
    padding: 0 32px;
    box-sizing: border-box;
  }
}

@media (max-width: 768px) {
  .fixed-search-header {
    top: var(--header-height, 60px);
    padding-top: 20px;
  }

  .search-content-column {
    margin-top: 280px;
  }
}

/* Update Search Empty State */
.search-empty-state {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 60px 0;
  /* Clean margins as requested */
  text-align: center;
}

.search-empty-state .artist-found-heading {
  margin: 0;
  /* Reset margins since container handles spacing */
  position: static;
  transform: none;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--dc-greys-900, #3B3A34);
}