:root {
  --teal: rgb(0, 131, 116);
  --teal-light: rgb(0, 141, 127);
  --secondary-dark: rgb(49, 49, 49);
  --yellow: #f6bb26;
  --text-light: #fff;
  --text-muted: #d9f2f0;
  --text-copyright: #9b9b9b;
  --highlight: #ffe082;
  --dark-gray: #333;
  --gray-bg: #555;
  --semi-transparent-black: rgba(0, 0, 0, 0.4);
  --background-color: rgb(237 237 237);
}

#ad-timer {
  position: fixed;
  top: 16px;
  right: 16px;
  background: transparent;
  border: 3px solid var(--yellow);
  color: var(--yellow);
  font-weight: bold;
  padding: 8px 12px;
  border-radius: 20px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  z-index: 1000;
  backdrop-filter: blur(4px);
  box-shadow: 0 2px 4px #313131;
}
#loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #313131;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}
.loader {
  width: 48px;
  height: 48px;
  border: 3px solid #fff;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}
.loader::after {
  content: "";
  box-sizing: border-box;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-bottom-color: gold;
}
@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotation {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media (max-width: 768px) {
  .loader {
    width: 36px;
    height: 36px;
    border-width: 2px;
  }
  .loader::after {
    width: 30px;
    height: 30px;
    border-width: 2px;
  }
  #ad-timer {
    font-size: 12px;
    padding: 6px 10px;
    top: 15px;
    right: 15px;
  }
}

#home-screen {
  overflow-y: auto;
}

@keyframes slide-up {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes flip-show {
  0%,
  25% {
    transform: translateY(50px);
  }
  33%,
  58% {
    transform: translateY(0);
  }
  66%,
  91% {
    transform: translateY(-50px);
  }
  100% {
    transform: translateY(50px);
  }
}
@keyframes slide-left {
  0% {
    transform: translateX(100%);
  }
  70% {
    transform: translateX(0);
  }
}
@keyframes slide-right {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
}
.slide-right {
  animation: slide-right 0.5s ease;
}
.slide-left {
  animation: slide-left 0.5s ease-out;
}
body,
html {
  margin-top: -1px;
}
*,
menu,
ol,
ul {
  margin: 0;
  padding: 0;
}
* {
  transition: all 0.2s;
  font-family: nunito, sans-serif !important;
}
.darken-content {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background-color: var(--semi-transparent-black);
}
#categoriesDropdown,
#mainSearchContainer {
  z-index: 22;
}
#phoneNavBar {
  position: fixed;
  bottom: -1px;
  left: 0;
  width: 100vw;
  height: 3.4rem;
  background-color: var(--secondary-dark);
  color: #fff;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  transition: none;
}
#phoneNavBar ul {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-around;
}
#phoneNavBar ul li {
  width: 100%;
}
#phoneNavBar ul li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.svg-container {
  width: max-content;
  height: 24px;
  position: relative;
}
#phoneNavBar ul li a .navicon-badge {
  position: absolute;
}
#phoneNavBar ul li a img,
#phoneNavBar ul li a svg {
  height: 20px;
  margin: 4px 0;
  color: #606060;
}
#phoneNavBar ul li a svg.highlight {
  color: var(--yellow);
}
#phoneNavBar ul li a span {
  font-size: small;
}
#headerLogo a,
#standardNavText {
  gap: 1rem;
  display: flex;
}
#categoryBack,
#dropdownButton,
#filterButton {
  background-color: var(--secondary-dark);
  display: inline-flex;
  padding: 0 15px;
  height: 50px;
  line-height: 16px;
  gap: 5px;
  color: #fff;
}
#categoryBack {
  border: none;
  align-items: center;
  justify-content: center;
  font-size: medium;
  cursor: pointer;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  display: none;
  position: absolute;
  left: -32px;
  transition: none !important;
}
body {
  background-color: var(--background-color);
}
* {
  font-family: ui-sans-serif, system-ui, sans-serif, Apple Color Emoji,
    Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  box-sizing: border-box;
}
a {
  text-decoration: none;
  color: #fff;
}
menu,
ol,
ul {
  list-style: none;
}
.white-text {
  color: rgb(255 255 255);
}
.hidden {
  display: none !important;
}
.screenreader-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.boxes-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: visible;
  max-width: fit-content;
  margin: auto;
}
.arrow {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: none;
  background-color: color-mix(in srgb, var(--secondary-dark) 60%, transparent);
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  z-index: 10;
  top: 50%;
  transform: translateY(-50%);
  transition: none;
}
.arrow:disabled {
  cursor: not-allowed;
}
.arrow:hover {
  background-color: var(--secondary-dark);
}
.arrow.left {
  left: -2.5rem;
}
.arrow.back {
  left: -2.5rem;
}
.arrow.right {
  right: -2.5rem;
}
#headerNavLinks ul li a img,
#headerNavLinks ul li a svg,
.radio-style {
  height: 24px;
  color: #606060;
}
#headerNavLinks ul li a svg.highlight {
  color: var(--yellow);
}
#headerNavLinks ul li a span {
  font-size: 1.3rem;
  border-bottom: 4px solid transparent;
}
#headerNavLinks ul li a span:hover {
  border-bottom: 4px solid rgb(246 187 3);
}
#phoneNavBar ul li a:hover span {
  border-bottom: 4px solid rgb(246 187 3);
}
#phoneNavBar ul li a span {
  border-bottom: 4px solid transparent;
}
#phoneNavBar ul li a span.navActive {
  border-bottom: 4px solid rgb(246 187 3);
}
#standardNavHeader {
  background-color: var(--teal);
}
#topHeader {
  background-color: var(--secondary-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 5rem;
  padding-right: 4rem;
}
.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
#headerLogo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0.5rem 0;
}
#logo img {
  height: 3.6rem;
  padding-left: 2px;
}
#announce img {
  height: 2.4rem;
  margin-bottom: 6px;
}
#headerNavLinks ul {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  gap: 1.3rem;
}
#headerNavLinks ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
}
#standardNavText {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
}
#standardNavText a {
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
}
#standardNavText h1 {
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  text-align: center;
}
#standardNavText a span {
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
#standardNavText a span svg {
  width: 2.5rem;
}
#standardNavSearchContainer {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 1rem;
}
#mainSearchContainer {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
#dropdownButton {
  border: none;
  border-top-left-radius: 20px;
  align-items: center;
  justify-content: center;
  font-size: medium;
}
.brl20 {
  border-bottom-left-radius: 20px;
}
.brr20 {
  border-bottom-right-radius: 20px;
}
#searchInput {
  height: 50px;
  font-size: 1.125rem;
  line-height: 1.75rem;
  padding: 0 10px;
  border: none;
  outline: 0;
  width: 700px;
  color: var(--secondary-dark);
}
#filterButton {
  border: none;
  border-top-right-radius: 20px;
  align-items: center;
  justify-content: center;
  font-size: medium;
}
#categoriesDropdown {
  position: absolute;
  left: 0;
  box-shadow: -1px -1px 20px #0000003d;
  border-radius: 20px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  width: 100%;
  margin-top: -2px;
  top: 100%;
  height: fit-content;
  z-index: 8;
  background-color: var(--teal);
  border: 4px solid var(--secondary-dark);
  animation: none;
  transition: none;
}
#categoriesDropdown ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
  padding: 28px;
  font-size: 0.875rem;
  line-height: 1.25rem;
  align-items: center;
  justify-content: center;
  transition: none;
}
.cat-card {
  flex: 1 1 100px;
  gap: 12px;
  height: 150px;
  border: 3px solid transparent;
  border-radius: 20px;
  background-color: var(--teal-light);
  box-shadow: -1px 3px 8px #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 155px;
  max-width: 155px;
  max-height: 120px;
  height: 120px;
  cursor: pointer;
}
.cat-card.selected {
  border-color: var(--secondary-dark);
}
ul .cat-card {
  flex: 1 1 150px;
  max-width: 200px;
}
.cat-card img {
  height: 24px;
  width: auto;
}
.catside-body .cat-card img {
  height: 36px;
}
.cat-card span {
  font-size: 18px;
  font-weight: 500;
}
#filterSidebar {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 22;
}
#mainFilterSidebar {
  position: fixed;
  inset: 0;
  z-index: 10;
}
#sidebarOverlay {
  position: fixed;
  inset: 0;
  width: 100vw;
  background-color: var(--semi-transparent-black);
  animation: fade-in 0.3s;
}
#sidebarSection {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  padding-left: 2.5rem;
  display: flex;
  max-width: 100%;
}
#sidebarContent {
  width: 100vw;
  max-width: 28rem;
  padding-left: 2rem;
  height: 100%;
  overflow-y: auto;
  accent-color: #313131;
}
#sidebarContent > div {
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -4px rgba(0, 0, 0, 0.1);
  background-color: #ededed;
}
#sidebarHeader,
.radio-option {
  display: flex;
  align-items: center;
}
#sidebarHeader {
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid #ccc;
  background-color: #313131;
}
#sidebarHeader h2 {
  color: #fff;
  font-size: 1.25rem;
  line-height: 1.75rem;
}
#sidebarHeader button {
  background: 0 0;
  border: none;
  color: #fff;
  cursor: pointer;
}
#sidebarHeader button svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #fff;
}
.radio-option {
  justify-content: space-between;
  flex-direction: row-reverse;
  gap: 2rem;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #000;
}
.range-suffix,
.section-title-flex {
  align-items: center;
  display: flex;
}
.radio-style {
  width: 1.25rem;
  margin: 0.75rem 1rem;
}
#sidebarContent label {
  padding: 0.5rem 0;
  font-size: 1.125rem;
  line-height: 1.75rem;
}
#sidebarContent label[for] {
  width: 100%;
}
.radio-option,
.range-group {
  width: 88% !important;
  margin: auto;
}
.clickable-text {
  cursor: pointer;
}
.section-title,
.section-title-flex {
  font-size: 1.25rem;
  font-weight: 600;
  color: #000;
  padding: 1.5rem 0;
  line-height: 1.75rem;
}
.icon-circle {
  width: 1.75rem;
  height: 1.75rem;
  margin-right: 0.5rem;
  border-radius: 50%;
  background-color: #ededed;
  color: #000;
  flex-shrink: 0;
}
.section-divider {
  margin: 1rem auto;
  max-width: 88%;
  border-top: 1px solid var(--text-copyright);
}
.range-group {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin: 0 auto;
  width: 100%;
  color: #000;
}
.range-input-wrapper {
  display: flex;
  width: 100%;
  position: relative;
}
.range-input {
  width: 100%;
  border: 1px solid #000;
  height: 2.75rem;
  padding: 0 2.5rem 0 1rem;
  border-radius: 0.5rem 0 0 0.5rem;
}
.range-suffix {
  border: 1px solid #000;
  border-left: none;
  background: var(--secondary-dark);
  color: var(--text-light);
  padding: 0 1rem;
  border-radius: 0 0.5rem 0.5rem 0;
}
.sidebar-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid #ccc;
  padding: 1rem 0;
  margin-top: 1rem;
  width: 88%;
  margin-left: auto;
  margin-right: auto;
}
.sidebar-actions button {
  padding: 0.625rem 1.5rem;
  border: none;
  border-radius: 15px;
  font-size: 0.875rem;
  cursor: pointer;
}
.sidebar-actions .clear-btn,
.sidebar-actions .search-btn {
  background: #313131;
  color: #fff;
}
#sidebarBody {
  padding: 10px;
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
#sidebarBody::-webkit-scrollbar {
  display: none;
}
#navBoxesContainer {
  display: flex;
  gap: 1rem;
  justify-content: center;
  z-index: 4;
  bottom: 0;
  margin-top: 0;
  margin-bottom: 0;
  background: 0 0;
  overflow-y: visible;
}
.box-card {
  background-color: var(--teal-light);
  width: 100%;
  min-width: 205px;
  aspect-ratio: 5/4;
  border-radius: 0.6rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: slide-up 1s ease-out;
  z-index: 5;
  position: relative;
  padding: 12px;
}
.card-hover-effect {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #faebd713;
  transition-property: opacity;
  transition-duration: 0.3s;
  opacity: 0;
  z-index: 7;
}
.box-card:hover .card-hover-effect {
  opacity: 1;
}
#cardInner {
  padding: 6px;
}
#cardInner > * {
  text-align: center;
  font-size: small;
}
.box-card img {
  width: 30%;
  height: auto;
  margin-bottom: 5%;
  z-index: 6;
}
.box-card h2 {
  font-weight: 400;
  color: rgb(255 255 255);
  font-size: 1.25rem;
  line-height: 1.75rem;
  margin-bottom: 5%;
  z-index: 6;
}
#searchBtnContainer {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
}
#searchBtnContainer > button {
  position: relative;
  display: flex;
  gap: 6px;
  color: #fff;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  padding-left: 1.4rem;
  padding-right: 1.8rem;
  margin-top: 2rem;
  border-radius: 9999px;
  border: 2px solid #fff;
  background-color: #008d7d;
  align-items: center;
  justify-content: center;
}
#searchBtnContainer > button > svg {
  width: 1.4rem;
  aspect-ratio: 1/1;
}
#searchBtnContainer > button > span {
  font-weight: 700;
  font-size: 1.1rem;
}
.anim-flip {
  height: 50px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: sans-serif;
  font-size: 18px;
  font-weight: 600;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.anim-flip > div {
  display: flex;
  flex-direction: column;
  animation: flip-show 6s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite;
  animation-fill-mode: both;
}
.anim-flip > div > div {
  color: #fff;
  padding: 8px 16px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  line-height: 20px;
}
.anim-flip {
  border: 2px solid #fff;
}
#contentArea {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
#contentArea {
  padding: 100px 5rem;
}
#cardsContainer {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  animation: slide-up 1s ease-out;
}
.main-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.main-card {
  display: flex;
  gap: 0;
  background: #fff;
  width: 100%;
  border: 2px solid #ddd;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}
.main-card:hover .mc-title {
  color: var(--teal);
}
.mc-image {
  flex: 1 1;
  max-width: 300px;
  position: relative;
}

.mc-img-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  margin: -15px 0 0 -15px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #555;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  z-index: 2;
}

.mc-image > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.item-like {
  position: absolute;
  top: 0;
  right: 0;
  margin: 12px;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 999px;
}
.item-like img {
  width: 20px;
  height: auto;
  transition: scale 0.2s;
}
.item-like:hover img {
  scale: 1.2;
}
.mc-body {
  flex: 1 1 10%;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0px;
}
.mc-main {
  padding: 10px 20px;
  padding-bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mc-title-container {
  width: calc(100% - 16px);
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 0px;
  margin-bottom: 4px;
}
.mc-title {
  font-size: 1.3rem;
  font-weight: 600;
}
.c-line {
  height: 4px;
  background-color: var(--teal);
}
.mc-cat,
.mc-post-date {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 3px;
  color: #555;
  font-size: 13px;
}
.mc-cat svg,
.mc-post-date svg {
  width: 18px;
  height: auto;
}
.mc-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: #555;
}
.mc-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  border: 2px solid var(--secondary-dark);
  min-width: 50px;
  padding: 4px 8px;
  border-radius: 999px;
}
.mc-tag svg {
  height: 16px;
  width: auto;
}
.mc-loc-data {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex-wrap: wrap;
  color: #555;
  font-size: 13px;
}
.mc-city {
  display: flex;
  align-items: center;
  gap: 2px;
}
.mc-city svg {
  height: 16px;
  width: auto;
}
.mc-postal-code {
  display: flex;
  gap: 2px;
}
.mc-postal-code svg {
  height: 16px;
  width: auto;
}
.mc-loc-data .mc-city span {
  display: block;
}
.mc-price {
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.mc-price img {
  margin-top: -4px;
}
.mc-bottom {
  background-color: var(--secondary-dark);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 10px 20px;
  font-size: 18px;
}
.star-rating {
  scale: 1.2;
  margin-right: 12px;
}
.star-rating .filled {
  color: var(--yellow);
}
.main-card.visited .c-line {
  background-color: var(--text-copyright);
}
.main-card.visited .mc-title {
  color: var(--dark-gray);
}
.secondary-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: #fff;
  width: 300px;
  border: 2px solid #ddd;
  border-radius: 12px;
  overflow: hidden;
}
.sc-image {
  position: relative;
  width: 280px;
  border-radius: 12px;
  height: 250px;
  flex: none;
  overflow: hidden;
  margin: 10px;
}
.sc-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sc-body {
  padding: 16px;
  padding-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sc-title {
  font-size: 1.25rem;
  font-weight: 600;
  text-align: center;
}
.sc-price {
  font-weight: 700;
  font-size: 1.1rem;
  background-color: var(--secondary-dark);
  width: max-content;
  padding: 8px 16px;
  color: #fff;
  border-radius: 999px;
  margin: auto;
}
footer {
  color: var(--text-light);
  margin-top: 0;
}
li,
menu,
ul {
  list-style: none;
}
.footer-top {
  background: var(--teal);
  padding: 40px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}
.footer-logo {
  flex: 1 1 250px;
}
.footer-logo .brand {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
#logo-def {
  height: 60px;
  margin-right: 8px;
}
#logo-sm {
  height: 38px;
  margin-top: -10px;
}
.footer-logo p {
  font-size: 16px;
  color: var(--text-muted);
  margin-left: 8px;
}
.social-icons {
  margin-top: 18px;
  margin-left: 8px;
  display: flex;
  gap: 8px;
}
.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  text-decoration: none;
  padding: 10px;
  border: 2px solid var(--text-muted);
  border-radius: 50%;
  transition: background 0.3s ease, color 0.3s ease;
}
.social-icons a:hover {
  background-color: var(--text-muted);
}
.social-icons a:hover svg path {
  fill: var(--teal);
}
.social-icons svg {
  height: 20px;
  width: auto;
}
.footer-contact,
.footer-links,
.footer-services {
  flex: 1 1 200px;
}
.footer-contact h4,
.footer-links h4,
.footer-services h4 {
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 700;
}
.footer-links ul li,
.footer-services ul li {
  margin-bottom: 10px;
}
.footer-links a,
.footer-services a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}
.footer-links a:hover,
.footer-services a:hover {
  color: var(--highlight);
}
.footer-contact p {
  font-size: 14px;
  margin-bottom: 10px;
}
.footer-contact strong {
  display: inline-block;
  width: 70px;
}
.footer-center {
  background: var(--teal-light);
  padding: 15px 20px;
  text-align: center;
}
.footer-center nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.footer-center nav a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease;
}
.footer-center nav a:hover {
  color: var(--highlight);
}
.footer-bottom {
  background: var(--secondary-dark);
  padding: 15px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  font-size: 13px;
  text-align: center;
}
.footer-section {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.links-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.links-footer-bottom svg {
  height: 28px;
  width: auto;
}
.apps {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
}
.apps img {
  height: 40px;
  width: auto;
}
.country {
  display: flex;
  align-items: center;
  gap: 10px;
}
.custom-select {
  position: relative;
  width: 160px;
}
.custom-select select {
  appearance: none;
  width: 100%;
  padding: 6px 36px 6px 12px;
  border: none;
  font-size: 14px;
  cursor: pointer;
  outline: 0;
  background-color: var(--text-light);
  color: var(--dark-gray);
  height: 36px;
}
.custom-select::after {
  content: "▼";
  position: absolute;
  top: 0;
  right: 0;
  width: 36px;
  height: 100%;
  background: var(--gray-bg);
  color: var(--text-light);
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.footer-copyright {
  color: var(--text-copyright);
  font-size: 12px;
}
.cat-sidebar-container {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 30;
  background-color: transparent;
  transform: translateX(0);
  transition: transform 0.5s ease;
  will-change: transform;
}
.cat-sidebar-container.hidden-left {
  transform: translateX(-100%);
}
.cat-sidebar {
  width: 100%;
  height: 100%;
  background-color: var(--background-color);
  border-right: 2px solid var(--secondary-dark);
  display: flex;
  flex-direction: column;
  gap: 0;
  animation: none;
}
.catside-head {
  background-color: var(--secondary-dark);
  color: #fff;
  display: flex;
  padding: 10px 14px;
  align-items: center;
  justify-content: space-between;
}
.catside-close {
  border: none;
  background: 0 0;
  padding: 0;
  margin: 0;
  color: #fff;
}
.catside-close svg {
  width: 26px;
  height: auto;
}
.catside-body {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
  padding: 28px 24px;
  padding-bottom: 80px;
  font-size: 0.875rem;
  line-height: 1.25rem;
  justify-content: center;
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.catside-title {
  font-size: 1.4rem;
}
.cat-card #cardInner {
  padding: 0;
  margin-top: -4px;
}
.ad-300 {
  width: 300px;
  aspect-ratio: 300/250;
  height: auto;
}
.ad-970 {
  width: 970px;
  aspect-ratio: 970/250;
  height: auto;
}
.navicon-badge {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 12px;
  background-color: red;
  width: 13px;
  height: 13px;
  border-radius: 99px;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  content: "1";
}
.filter-controls {
  width: 100%;
  background-color: #fff;
  min-height: 20px;
  box-shadow: 0 0 8px #0004;
  display: flex;
  align-items: center;
  padding: 14px 16px;
  border-radius: 10px;
}
.fc-location-box {
  flex: 1 1;
  position: relative;
  height: 100%;
  min-width: 360px;
}
.fc-loc-input {
  position: relative;
}
.fc-loc-drop,
.fc-loc-icon {
  position: absolute;
  top: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  aspect-ratio: 1/1;
}
.fc-loc-drop svg,
.fc-loc-icon svg {
  height: 80%;
  width: auto;
}
.fc-loc-icon {
  left: 4px;
  color: #6f6f6f;
  transition: all 0.3s ease;
}
.fc-loc-drop {
  right: 4px;
  transition: all 0.3s ease;
  color: #6f6f6f;
}
.fc-loc-input {
  max-width: 500px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#fc-loc-data {
  border: none;
  width: 100%;
  height: 100%;
  padding: 6px 24px;
  background-color: #f9f9f9;
  border-radius: 8px;
  border: 1px solid #0004;
  text-align: center;
  font-size: medium;
  cursor: pointer;
  outline: 0;
}
.fc-loc-input:focus-within .fc-loc-drop,
.fc-loc-input:focus-within .fc-loc-icon {
  color: var(--secondary-dark);
}
.fc-loc-input:focus-within .fc-loc-drop {
  transform: rotate(180deg) translateY(2px);
}
.fc-loc-dropdown {
  overflow: hidden;
  position: absolute;
  width: 100%;
  max-width: 500px;
  min-height: 0;
  margin-top: 2px;
  border-radius: 8px;
  border: 1px solid #0004;
  background-color: #f9f9f9;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8px 16px;
  padding-bottom: 16px;
  z-index: 100;
  transition: none;
}
.chips {
  width: 100%;
  padding: 6px;
  display: flex;
  font-size: 12px;
  color: #fff;
}
.chips > .chip {
  background-color: var(--secondary-dark);
  padding: 6px;
  padding-left: 10px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.radius-choice {
  display: flex;
  flex-direction: column;
  padding: 6px;
  gap: 6px;
}
.rc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: small;
}
.rc-col {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: small;
}
input[type="range"] {
  font-size: 1.5rem;
  color: var(--secondary-dark);
  --thumb-height: 0.75em;
  --track-height: 0.25em;
  --track-color: rgba(0, 0, 0, 0.2);
  --brightness-hover: 180%;
  --brightness-down: 80%;
  --clip-edges: 0.125em;
}
input[type="range"] {
  position: relative;
  background: 0 0;
  overflow: hidden;
}
input[type="range"]:active {
  cursor: grabbing;
}
input[type="range"]:disabled {
  filter: grayscale(1);
  opacity: 0.3;
  cursor: not-allowed;
}
input[type="range"],
input[type="range"]::-webkit-slider-runnable-track,
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  transition: all ease 0.1s;
  height: var(--thumb-height);
}
input[type="range"]::-webkit-slider-runnable-track,
input[type="range"]::-webkit-slider-thumb {
  position: relative;
}
input[type="range"]::-webkit-slider-thumb {
  --thumb-radius: calc((var(--thumb-height) * 0.5) - 1px);
  --clip-top: calc((var(--thumb-height) - var(--track-height)) * 0.5 - 0.5px);
  --clip-bottom: calc(var(--thumb-height) - var(--clip-top));
  --clip-further: calc(100% + 1px);
  --box-fill: calc(-100vmax - var(--thumb-height)) 0 0 100vmax currentColor;
  width: var(--thumb-height);
  background: linear-gradient(currentColor 0 0) scroll no-repeat left center/50%
    calc(var(--track-height) + 1px);
  background-color: currentColor;
  box-shadow: var(--box-fill);
  border-radius: var(--thumb-height);
  filter: brightness(100%);
  clip-path: polygon(
    100% -1px,
    var(--clip-edges) -1px,
    0 var(--clip-top),
    -100vmax var(--clip-top),
    -100vmax var(--clip-bottom),
    0 var(--clip-bottom),
    var(--clip-edges) 100%,
    var(--clip-further) var(--clip-further)
  );
}
input[type="range"]:hover::-webkit-slider-thumb {
  filter: brightness(var(--brightness-hover));
  cursor: grab;
}
input[type="range"]:active::-webkit-slider-thumb {
  filter: brightness(var(--brightness-down));
  cursor: grabbing;
}
input[type="range"]::-webkit-slider-runnable-track {
  background: linear-gradient(var(--track-color) 0 0) scroll no-repeat
    center/100% calc(var(--track-height) + 1px);
}
input[type="range"]:disabled::-webkit-slider-thumb {
  cursor: not-allowed;
}
input[type="range"],
input[type="range"]::-moz-range-thumb,
input[type="range"]::-moz-range-track {
  appearance: none;
  transition: all ease 0.1s;
  height: var(--thumb-height);
}
input[type="range"]::-moz-range-progress,
input[type="range"]::-moz-range-thumb,
input[type="range"]::-moz-range-track {
  background: 0 0;
}
input[type="range"]::-moz-range-thumb {
  background: currentColor;
  border: 0;
  width: var(--thumb-height);
  border-radius: var(--thumb-height);
  cursor: grab;
}
input[type="range"]:active::-moz-range-thumb {
  cursor: grabbing;
}
input[type="range"]::-moz-range-track {
  width: 100%;
  background: var(--track-color);
}
input[type="range"]::-moz-range-progress {
  appearance: none;
  background: currentColor;
  transition-delay: 30ms;
}
input[type="range"]::-moz-range-progress,
input[type="range"]::-moz-range-track {
  height: calc(var(--track-height) + 1px);
  border-radius: var(--track-height);
}
input[type="range"]::-moz-range-progress,
input[type="range"]::-moz-range-thumb {
  filter: brightness(100%);
}
input[type="range"]:hover::-moz-range-progress,
input[type="range"]:hover::-moz-range-thumb {
  filter: brightness(var(--brightness-hover));
}
input[type="range"]:active::-moz-range-progress,
input[type="range"]:active::-moz-range-thumb {
  filter: brightness(var(--brightness-down));
}
input[type="range"]:disabled::-moz-range-thumb {
  cursor: not-allowed;
}
.fc-loc-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.fc-loc-controls > button {
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 8px;
}
.fc-loc-reset {
  border: 1px solid var(--secondary-dark);
  color: var(--secondary-dark);
  background-color: transparent;
}
.fc-loc-apply {
  border: none;
  background-color: var(--secondary-dark);
  color: #fff;
}
.range-helpers {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.fc-right-controls {
  flex: 1 1;
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 14px;
  align-self: stretch;
}
.fc-sort-opt {
  border: 1px solid #0004;
  border-radius: 8px;
  height: 100%;
  width: 230px;
  font-size: medium;
  color: #444;
  outline: 0;
}
.fc-right-controls > button {
  border: none;
  font-size: medium;
  border-radius: 8px;
  height: 100%;
  background-color: transparent;
  display: flex;
  align-items: center;
}
.fc-right-controls > button > img,
.fc-right-controls > button > svg {
  padding: 5px 0;
  height: 100%;
  max-height: 36px;
  width: auto;
  color: #6f6f6f;
}
.fc-right-controls > button > svg:hover {
  color: var(--yellow);
}

/* === Fully Custom Dark Radio === */
:root {
  --rd-size: 20px;
  --rd-border: var(--secondary-dark);
  --rd-bg: white; /* outer background */
  --rd-accent: var(--secondary-dark); /* inner dot color */
  --rd-focus: rgba(0, 200, 200, 0); /* focus ring, adjust as desired */
  --rd-disabled: rgba(255, 255, 255, 0.06);
}

.radio-dark-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  user-select: none;
  margin-right: 20px;
}

/* hide native radio but keep it accessible */
.radio-dark-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* custom outer circle */
.radio-dark-custom {
  width: var(--rd-size);
  height: var(--rd-size);
  border-radius: 50%;
  background: var(--rd-bg);
  border: 2px solid var(--rd-border);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.02) inset;
  position: relative;
  flex-shrink: 0;
  transition: transform 0.12s ease, box-shadow 0.12s ease,
    border-color 0.12s ease;
}

/* inner dot (hidden until checked) */
.radio-dark-custom::after {
  content: "";
  position: absolute;
  inset: 50%;
  transform: translate(-50%, -50%) scale(0.001);
  width: calc(var(--rd-size) * 0.52);
  height: calc(var(--rd-size) * 0.52);
  border-radius: 50%;
  background: var(--rd-accent);
  transition: transform 0.14s cubic-bezier(0.2, 0.9, 0.2, 1);
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
}

/* checked state */
.radio-dark-input:checked + .radio-dark-custom {
  /* border-color: var(--rd-accent); */
}
.radio-dark-input:checked + .radio-dark-custom::after {
  transform: translate(-50%, -50%) scale(1);
}

/* focus ring */
.radio-dark-input:focus-visible + .radio-dark-custom {
  box-shadow: 0 0 0 4px var(--rd-focus);
}

/* hover effect */
.radio-dark-wrap:hover .radio-dark-custom {
  transform: translateY(-1px);
}

/* disabled state */
.radio-dark-input:disabled + .radio-dark-custom {
  background: var(--rd-disabled);
  border-color: rgba(255, 255, 255, 0.04);
  opacity: 0.6;
  cursor: not-allowed;
}
.radio-dark-input:disabled ~ .radio-dark-label {
  opacity: 0.6;
  cursor: not-allowed;
}

/* === Fully Custom Dark Checkbox === */
:root {
  /* re-use the same variables as the radio for consistency */
  --cb-size: var(--rd-size); /* keep size in sync */
  --cb-border: var(--rd-border);
  --cb-bg: white;
  --cb-accent: var(--rd-accent);
  --cb-focus: var(--rd-focus);
  --cb-disabled: var(--rd-disabled);
}

.checkbox-dark-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  user-select: none;
  margin-right: 20px;
}

/* hide native checkbox */
.checkbox-dark-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* custom square box */
.checkbox-dark-custom {
  width: var(--cb-size);
  height: var(--cb-size);
  border-radius: 6px; /* slight rounding for modern look */
  background: var(--cb-bg);
  border: 2px solid var(--secondary-dark);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.02) inset;
  position: relative;
  flex-shrink: 0;
  transition: transform 0.12s ease, box-shadow 0.12s ease,
    border-color 0.12s ease;
}

/* checkmark (hidden until checked) */
.checkbox-dark-custom::after {
  content: "";
  position: absolute;
  top: 35%;
  left: 50%;
  width: 45%;
  height: 25%;
  border-left: 2px solid var(--cb-accent);
  border-bottom: 2px solid var(--cb-accent);
  border-radius: 6px;
  transform: translate(-50%, -50%) rotate(-45deg) scale(0.001);
  transition: transform 0.14s cubic-bezier(0.2, 0.9, 0.2, 1);
  transform-origin: center;
}

/* checked state */
.checkbox-dark-input:checked + .checkbox-dark-custom::after {
  transform: translate(-50%, -50%) rotate(-45deg) scale(1.8);
}

/* focus ring */
.checkbox-dark-input:focus-visible + .checkbox-dark-custom {
  box-shadow: 0 0 0 4px var(--cb-focus);
}

/* hover effect */
.checkbox-dark-wrap:hover .checkbox-dark-custom {
  transform: translateY(-1px);
}

/* disabled state */
.checkbox-dark-input:disabled + .checkbox-dark-custom {
  background: var(--cb-disabled);
  border-color: rgba(255, 255, 255, 0.04);
  opacity: 0.6;
  cursor: not-allowed;
}
.checkbox-dark-input:disabled ~ .checkbox-dark-label {
  opacity: 0.6;
  cursor: not-allowed;
}

@media (max-width: 710px) {
  .filter-controls {
    flex-direction: column;
    gap: 4px;
  }
  .fc-right-controls {
    justify-content: center;
    min-height: 36px;
    flex-direction: row;
  }
  .fc-location-box {
    width: 100%;
    min-width: 245px;
  }
  .fc-sort-opt {
    height: 36px;
    width: 100%;
    background-color: #f9f9f9;
  }
  .fc-loc-input {
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 800px) {
  .main-cards {
    align-items: center;
  }
  .main-card {
    flex-direction: column;
    max-width: 300px;
  }
  .mc-loc-data {
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
  }
  .mc-image {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 200px;
    flex: none;
  }
  .mc-image > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
@media (min-width: 7680px) {
  #standardNavText h1 {
    font-size: 130px !important;
  }
  #standardNavText a span {
    font-size: 70px;
  }
  #standardNavText a span svg {
    width: 110px !important;
  }
  #standardNavText a {
    gap: 2rem;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    margin-bottom: 40px;
  }
  #announce img {
    margin-top: -12px;
  }
  #headerLogo {
    padding: 20px 20px !important;
  }
  #announce img,
  #logo img {
    height: 170px !important;
    padding: 0 0;
  }
  #headerNavLinks ul {
    font-size: 2.5rem;
    gap: 5rem;
  }
  #searchInput {
    width: 1200px;
    height: 120px;
    font-size: 55px;
  }
  #dropdownButton,
  #filterButton {
    height: 120px;
    gap: 50px;
    padding: 0 50px;
  }
  #dropdownButton svg {
    scale: 3;
  }
  #filterButton svg {
    scale: 2.5;
  }
  #dropdownButton span,
  #filterButton span {
    font-size: 55px;
  }
  .box-card {
    gap: 2rem;
    aspect-ratio: 6/5;
    width: clamp(480px, 12.5vw, 900px);
    min-width: clamp(480px, 12.5vw, 900px);
    scroll-snap-align: start;
  }
  .box-card h2 {
    font-size: 6rem;
  }
  .box-card img {
    width: 18%;
  }
  #cardInner {
    margin-top: 2rem;
    scale: 3;
  }
  #searchBtnContainer button svg {
    width: 85px;
  }
  #searchBtnContainer button span {
    font-size: 80px;
  }
  #searchBtnContainer button {
    padding: 20px 50px;
    margin-top: 80px;
    margin-bottom: -340px;
  }
  #headerNavLinks ul li a {
    gap: 20px;
  }
  #headerNavLinks ul li a span {
    font-size: 60px;
  }
  #headerNavLinks ul li a img,
  #headerNavLinks ul li a svg {
    height: 65px;
  }
  #navBoxesContainer {
    gap: 2.5rem;
    justify-content: start;
    margin-bottom: 1rem;
    max-width: calc(clamp(480px, 12.5vw, 900px) * 6 + 2.5rem * 5);
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .boxes-carousel {
    top: 370px;
  }
  #standardNavHeader {
    margin-bottom: 170px;
  }
  #contentArea {
    padding: 250px 0;
    margin: auto;
    max-width: calc(clamp(480px, 12.5vw, 900px) * 6 + 2.5rem * 5);
    gap: 80px;
  }
  #cardsContainer {
    gap: 50px;
  }
  .mc-body {
    gap: 15px;
    padding: 40px;
  }
  .mc-controls button,
  .sc-controls button {
    border-radius: 22px;
    padding: 18px 36px;
  }
  .mc-image {
    max-width: 1000px;
  }
  .mc-title {
    font-size: 70px;
  }
  .mc-desc {
    font-size: 50px;
  }
  .mc-loc-data {
    gap: 30px;
  }
  .mc-price {
    font-size: 50px;
  }
  .mc-book {
    font-size: 50px;
  }
  .secondary-cards {
    gap: 20px;
  }
  .secondary-card {
    flex: 1 1;
  }
  .sc-body {
    padding: 40px;
    gap: 20px;
  }
  .sc-image {
    height: 380px;
  }
  .sc-title {
    font-size: 32px;
  }
  .sc-price {
    font-size: 26px;
  }
  .footer-top {
    padding: 120px 120px;
    gap: 50px;
  }
  .footer-logo p {
    font-size: 26px;
  }
  .footer-center nav a {
    font-size: 24px;
    margin: 0 28px;
  }
  .footer-bottom {
    font-size: 22px;
  }
  .apps img {
    height: 80px;
  }
  .custom-select {
    width: 320px;
  }
  .svg-container {
    height: 65px;
  }
  .navicon-badge {
    font-size: 20px !important;
    width: 22px !important;
    height: 22px !important;
  }
  .fc-loc-input {
    max-width: 60%;
  }
  .fc-sort-opt {
    width: 600px;
    border-width: 4px;
  }
  .fc-right-controls > button > img,
  .fc-right-controls > button > svg {
    max-height: 65px;
  }
  .fc-sort-opt option {
    font-size: 20px;
  }
  #fc-loc-data,
  .fc-sort-opt,
  .footer-contact p,
  .footer-links a,
  .footer-logo p,
  .footer-services a {
    font-size: clamp(29px, 0.715vw, 49px);
  }
  .footer-contact h4,
  .footer-links h4,
  .footer-services h4 {
    font-size: clamp(33px, 0.835vw, 60px);
  }
  .mc-cat,
  .mc-city,
  .mc-post-date,
  .mc-postal-code {
    font-size: clamp(29px, 0.715vw, 49px);
    gap: 10px;
  }
  .mc-tags {
    gap: 25px;
  }
  .mc-tag {
    font-size: 30px;
  }
  .mc-tag img,
  .mc-tag svg {
    width: 40px;
    height: auto;
  }
  .mc-cat svg,
  .mc-loc-data svg,
  .mc-post-date svg {
    width: 40px;
    height: auto;
  }
  #logo-def {
    height: clamp(100px, 2.597vw, 180px);
    margin-right: 0.35vw;
  }
  #logo-sm {
    height: clamp(60px, 1.558vw, 110px);
    margin-top: -0.2vw;
  }
}
@media (min-width: 3840px) and (max-width: 7679px) {
  #headerNavLinks ul {
    font-size: 1.6rem;
    gap: 3rem;
  }
  #standardNavText h1 {
    font-size: clamp(62px, 1.615vw, 100px);
  }
  #standardNavText a span {
    font-size: 40px;
    padding: 20px 0;
  }
  #standardNavText a span svg {
    width: 50px;
  }
  #searchInput {
    width: 1000px;
    font-size: 1.8rem;
    height: 4.95rem;
    font-size: 38px;
  }
  #dropdownButton,
  #filterButton {
    height: 5rem;
    padding: 0 1.75rem;
    gap: 1rem;
  }
  #dropdownButton span,
  #filterButton span {
    font-size: 40px;
  }
  #dropdownButton svg,
  #filterButton svg {
    width: 35px;
    height: 35px;
    margin-bottom: -5px;
  }
  #searchBtnContainer button {
    gap: 10px;
    padding: 15px 25px;
    margin-bottom: -150px;
  }
  #searchBtnContainer button svg {
    width: 45px;
  }
  #searchBtnContainer button span {
    font-size: 30px;
  }
  .arrow {
    width: 100px;
    height: 100px;
  }
  .arrow > svg {
    width: 46px;
    height: auto;
  }
  #navBoxesContainer {
    display: flex;
    margin-top: 0;
    gap: clamp(30px, 0.781vw, 999px);
    justify-content: start;
    margin-bottom: 1rem;
    max-width: calc(
      clamp(480px, 12.5vw, 800px) * 6 + clamp(30px, 0.781vw, 999px) * 5
    );
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .boxes-carousel {
    top: clamp(190px, 4.948vw, 9999px);
    margin-top: 0;
  }
  .box-card {
    gap: 1.1rem;
    aspect-ratio: 6/5;
    width: clamp(480px, 12.5vw, 800px);
    min-width: clamp(480px, 12.5vw, 800px);
    scroll-snap-align: start;
  }
  .box-card h2 {
    font-size: clamp(50px, 1.302vw, 75px);
    padding: 0;
    margin-bottom: 0;
  }
  .box-card img {
    width: 22%;
  }
  #cardInner {
    scale: 2;
    margin-top: 36px;
  }
  #headerNavLinks ul li a img,
  #headerNavLinks ul li a svg {
    height: 36px;
  }
  #headerNavLinks ul li a span {
    font-size: 2rem;
  }
  #contentArea {
    padding: calc(clamp(480px, 12.5vw, 800px) / 2 + 10px) 0;
    max-width: calc(
      clamp(480px, 12.5vw, 800px) * 6 + clamp(30px, 0.781vw, 999px) * 5
    );
    margin: auto;
    gap: 50px;
  }
  #cardsContainer {
    gap: 32px;
  }
  .mc-main {
    gap: 18px;
  }
  .mc-cat svg,
  .mc-loc-data svg,
  .mc-post-date svg {
    width: 2rem;
    height: 2rem;
  }
  .mc-body {
    gap: 10px;
  }
  .mc-tags {
    gap: 24px;
  }
  .mc-tag {
    font-size: 2rem;
    border-width: 3px;
    padding: 6px 16px;
  }
  .mc-tag svg {
    height: 35px;
  }
  .mc-controls button,
  .sc-controls button {
    border-radius: 22px;
    padding: 18px 36px;
  }
  .mc-image {
    max-width: 800px;
  }
  .mc-title {
    font-size: 50px;
  }
  .mc-desc {
    font-size: 36px;
  }
  .mc-price {
    font-size: 36px;
  }
  .mc-price img {
    height: 42px;
  }
  .mc-bottom {
    padding: 18px 32px;
  }
  .star-rating {
    scale: 2;
    margin-right: 3.5rem;
  }
  .mc-book {
    font-size: 36px;
  }
  .secondary-cards {
    gap: 20px;
  }
  .secondary-card {
    flex: 1 1;
  }
  .sc-body {
    padding: 32px;
    gap: 18px;
  }
  .sc-image {
    height: 290px;
  }
  .sc-title {
    font-size: 30px;
  }
  .sc-loc-data {
    font-size: 32px;
  }
  .sc-price {
    font-size: 32px;
  }
  .sc-book {
    font-size: 32px;
  }
  .footer-top {
    padding: 80px 80px;
    gap: 40px;
  }
  .footer-logo p {
    font-size: 22px;
  }
  .footer-center nav a {
    font-size: 20px;
    margin: 0 20px;
  }
  .footer-bottom {
    font-size: 18px;
  }
  .apps img {
    height: 64px;
  }
  .custom-select {
    width: 260px;
  }
  .svg-container {
    height: 36px;
  }
  .navicon-badge {
    font-size: 16px !important;
    width: 18px !important;
    height: 18px !important;
  }
  #logo img {
    height: 4.5rem;
  }
  .footer-contact p,
  .footer-links a,
  .footer-logo p,
  .footer-services a {
    font-size: clamp(29px, 0.715vw, 49px);
  }
  .footer-contact h4,
  .footer-links h4,
  .footer-services h4 {
    font-size: clamp(33px, 0.835vw, 60px);
  }
  #fc-loc-data,
  .fc-sort-opt,
  .mc-cat,
  .mc-loc-data,
  .mc-post-date {
    font-size: clamp(29px, 0.715vw, 49px);
  }
  #logo-def {
    height: clamp(100px, 2.597vw, 180px);
    margin-right: 0.35vw;
  }
  #logo-sm {
    height: clamp(60px, 1.558vw, 110px);
    margin-top: -0.2vw;
  }
  .fc-loc-input {
    max-width: 60%;
  }
  .fc-sort-opt {
    width: 600px;
    border-width: 4px;
  }
  .fc-right-controls > button > img,
  .fc-right-controls > button > svg {
    max-height: 65px;
  }
  .fc-sort-opt option {
    font-size: 10px;
  }
}
@media (min-width: 2560px) and (max-width: 3839px) {
  #standardNavText h1 {
    font-size: clamp(40px, 1.563vw, 60px);
  }
  #headerLogo {
    padding: clamp(14px, 0.547vw, 20px) 0;
  }
  #logo img {
    height: clamp(55px, 2.148vw, 80px);
  }
  #announce img {
    height: clamp(39px, 1.523vw, 55px);
  }
  #headerNavLinks ul {
    font-size: clamp(24px, 0.938vw, 999px);
    gap: 2rem;
  }
  #standardNavText a span {
    font-size: clamp(24px, 0.938vw, 999px);
  }
  #searchInput {
    width: 750px;
    font-size: clamp(24px, 0.938vw, 999px);
    height: clamp(50px, 1.953vw, 70px);
  }
  #dropdownButton,
  #filterButton {
    height: clamp(50px, 1.953vw, 70px);
    gap: 8px;
    padding: 0 20px;
  }
  #dropdownButton span,
  #filterButton span {
    font-size: clamp(24px, 0.938vw, 999px);
    margin-bottom: 0;
  }
  #dropdownButton svg,
  #filterButton svg {
    width: clamp(30px, 1.172vw, 40px);
    height: clamp(30px, 1.172vw, 40px);
  }
  .boxes-carousel {
    top: 8.5rem;
    margin-top: -60px;
  }
  #navBoxesContainer {
    display: flex;
    justify-content: start;
    margin-bottom: 1rem;
    max-width: calc(clamp(330px, 12.891vw, 480px) * 6 + 5rem);
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .box-card {
    aspect-ratio: 6/5;
    width: clamp(330px, 12.891vw, 480px);
    min-width: clamp(330px, 12.891vw, 480px);
    gap: 0.1rem;
    scroll-snap-align: start;
  }
  .box-card h2 {
    font-size: clamp(24px, 0.938vw, 999px);
    margin-bottom: 0;
  }
  .box-card img {
    width: 22%;
  }
  #cardInner {
    scale: 1;
    margin-top: clamp(5px, 0.28vw, 12px);
  }
  .anim-flip > div > div {
    font-size: clamp(18px, 0.704vw, 28px);
  }
  .anim-flip {
    padding: clamp(26px, 1.016vw, 32px) clamp(10px, 0.391vw, 25px);
  }
  #headerNavLinks ul li a img,
  #headerNavLinks ul li a svg {
    height: clamp(24px, 0.938vw, 999px);
  }
  #headerNavLinks ul li a span {
    font-size: clamp(24px, 0.938vw, 999px);
  }
  #contentArea {
    padding: 160px 0;
    max-width: calc(clamp(330px, 12.891vw, 480px) * 6 + 5rem);
    margin: auto;
  }
  #cardsContainer {
    gap: 32px;
  }
  .mc-body {
    gap: 10px;
  }
  .mc-controls button,
  .sc-controls button {
    border-radius: 12px;
    padding: 12px 24px;
  }
  .mc-image {
    max-width: 500px;
  }
  .mc-title {
    font-size: 30px;
  }
  .mc-desc {
    font-size: 24px;
  }
  .mc-price {
    font-size: 24px;
  }
  .mc-book {
    font-size: 24px;
  }
  .secondary-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .sc-image {
    height: 240px;
  }
  .sc-title {
    font-size: 24px;
  }
  .sc-loc-data {
    font-size: 20px;
  }
  .sc-price {
    font-size: 20px;
  }
  .sc-book {
    font-size: 20px;
  }
  .footer-top {
    padding: 60px 60px;
    gap: 32px;
  }
  .footer-logo p {
    font-size: 20px;
  }
  .footer-contact h4,
  .footer-links h4,
  .footer-services h4 {
    font-size: 20px;
  }
  .footer-center nav a {
    font-size: 19px;
    margin: 0 16px;
  }
  #fc-loc-data {
    font-size: 24px;
  }
  .chips,
  .footer-bottom {
    font-size: 16px;
  }
  .fc-loc-controls > button,
  .rc-col,
  .rc-row {
    font-size: 22px;
  }
  .apps img {
    height: 56px;
  }
  .custom-select {
    width: 220px;
  }
  .fc-loc-dropdown,
  .fc-loc-input {
    max-width: 700px;
  }
  .fc-loc-dropdown {
    gap: 12px;
  }
  .fc-sort-opt option {
    font-size: 12px;
  }
  .fc-sort-opt {
    width: 320px;
    font-size: 24px;
  }
  .footer-contact p,
  .footer-links a,
  .footer-logo p,
  .footer-services a {
    font-size: clamp(20px, 0.758vw, 25px);
  }
  .footer-contact h4,
  .footer-links h4,
  .footer-services h4 {
    font-size: clamp(21px, 0.82vw, 30px);
  }
  .mc-cat,
  .mc-loc-data,
  .mc-post-date {
    font-size: clamp(20px, 0.758vw, 25px);
  }
}
@media (min-width: 1920px) and (max-width: 2559px) {
  #standardNavText h1 {
    font-size: 2.07vw;
  }
  #logo img {
    height: 4rem;
  }
  #announce img {
    height: 2.4rem;
    margin-bottom: 6px;
    margin-left: 0;
  }
  #topHeader {
    padding-left: 0;
    padding-right: 0;
  }
  .header-wrapper {
    max-width: calc(260px * 6 + 2rem);
    margin: auto;
  }
  #headerNavLinks ul {
    font-size: 1.3rem;
    gap: 2rem;
  }
  #searchInput {
    width: 620px;
    font-size: large;
    height: 50px;
    font-size: 20px;
  }
  #dropdownButton,
  #filterButton {
    height: 50px;
    gap: 8px;
    padding: 0 20px;
  }
  #dropdownButton span,
  #filterButton span {
    font-size: 1.2rem;
    margin-bottom: 0;
  }
  #dropdownButton svg,
  #filterButton svg {
    width: 30px;
    height: 30px;
  }
  .boxes-carousel {
    top: 7.2rem;
    margin-top: -60px;
    margin-bottom: 20px;
  }
  #navBoxesContainer {
    display: flex;
    justify-content: start;
    margin-bottom: 1rem;
    max-width: calc(260px * 6 + 5rem);
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .box-card {
    width: clamp(260px, 13.542vw, 330px);
    min-width: 260px;
    gap: 0.1rem;
    aspect-ratio: 6/5;
    scroll-snap-align: start;
  }
  .box-card h2 {
    font-size: 1.5rem;
  }
  .box-card img {
    width: 22%;
  }
  #cardInner {
    scale: 1;
  }
  #headerNavLinks ul li a img,
  #headerNavLinks ul li a svg {
    height: 24px;
  }
  #headerNavLinks ul li a span {
    font-size: 20px;
  }
  #contentArea {
    padding: 100px 0;
    margin: auto;
    max-width: calc(260px * 6 + 5rem);
  }
  #cardsContainer {
    gap: 20px;
  }
  .mc-title {
    font-size: 24px;
  }
  .mc-desc {
    font-size: 18px;
  }
  .mc-loc-data {
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 5%;
  }
  .mc-price {
    font-size: 18px;
  }
  .mc-book {
    font-size: 18px;
  }
  .secondary-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .sc-title {
    font-size: 19px;
  }
  .footer-top {
    padding: 50px 40px;
    gap: 28px;
  }
  .footer-logo p {
    font-size: 18px;
  }
  .footer-center nav a {
    font-size: 17px;
    margin: 0 12px;
  }
  .footer-bottom {
    font-size: 15px;
  }
  .apps img {
    height: 48px;
  }
  .custom-select {
    width: 200px;
  }
  .box-card h2 {
    margin-bottom: 0;
    font-size: 1.4rem;
  }
  #dropdownButton span,
  #filterButton span,
  #searchInput,
  #standardNavText a span {
    font-size: 1.4rem;
  }
  #fc-loc-data {
    font-size: 18px;
  }
  .chips > .chip,
  .rc-col,
  .rc-row {
    font-size: 14px;
  }
  .footer-contact p,
  .footer-links a,
  .footer-logo p,
  .footer-services a {
    font-size: clamp(18px, 0.938vw, 20px);
  }
  .footer-contact h4,
  .footer-links h4,
  .footer-services h4 {
    font-size: clamp(20px, 1.05vw, 22px);
  }
  .mc-tag {
    font-size: clamp(14px, 0.729vw, 16px);
  }
  .mc-cat,
  .mc-loc-data,
  .mc-post-date {
    font-size: clamp(14px, 0.729vw, 16px);
  }

  .mc-main {
    gap: 4px;
  }
}
@media (min-width: 1441px) and (max-width: 1919px) {
  .boxes-carousel {
    margin-top: -30px;
    top: 5.6rem;
    margin-bottom: 10px;
  }
  #topHeader {
    padding-left: 0;
    padding-right: 0;
  }
  .header-wrapper {
    max-width: calc(240px * 6 + 2rem);
    margin: auto;
  }
  #navBoxesContainer {
    display: flex;
    justify-content: start;
    max-width: calc(240px * 6 + 5rem);
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    top: 0;
  }
  #contentArea {
    padding: 120px 0;
    margin: auto;
    max-width: calc(240px * 6 + 5rem);
  }
  .box-card {
    aspect-ratio: 6/5;
    min-width: 240px;
    width: clamp(240px, 15.65vw, 300px);
    scroll-snap-align: start;
  }
  .box-card h2 {
    margin-bottom: 0;
    font-size: 1.3rem;
  }
  #dropdownButton span,
  #filterButton span,
  #searchInput,
  #standardNavText a span {
    font-size: 1.3rem;
  }
  .footer-contact p,
  .footer-links a,
  .footer-logo p,
  .footer-services a {
    font-size: clamp(17px, 1.17vw, 18px);
  }
  .footer-contact h4,
  .footer-links h4,
  .footer-services h4 {
    font-size: clamp(19px, 1.25vw, 21px);
  }
  .mc-cat,
  .mc-loc-data,
  .mc-post-date {
    font-size: 14px;
  }
  .mc-loc-data {
    flex-direction: row-reverse;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    margin-bottom: -4px;
  }
}
@media (max-width: 1440px) and (min-width: 1221px) {
  #cardInner {
    padding: 0;
  }
  .anim-flip {
    scale: 0.9;
    margin-top: -4px;
  }
  #standardNavText h1 {
    font-size: 3vw;
  }
  #logo img {
    height: 2.9rem;
  }
  #announce img {
    height: 1.8rem;
    margin-left: 7px;
  }
  #navBoxesContainer {
    margin-top: 0;
    margin-bottom: 0;
    top: 0;
  }
  .boxes-carousel {
    margin-top: -30px;
    margin-bottom: 10px;
    top: 5rem;
  }
  .box-card {
    padding: 15px;
    min-width: clamp(178px, calc(0.16438vw * 100 - 22.6px), 214px);
    width: clamp(175px, 12.153vw, 230px);
    aspect-ratio: 1/1;
    scroll-snap-align: start;
  }
  .box-card h2 {
    font-size: 1.2rem;
  }
  .box-card img {
    width: 30%;
  }
  #announce {
    margin-left: -8px;
  }
  #announce img {
    height: 2.2rem;
  }
  #logo img {
    height: 3.2rem;
  }
  #searchInput {
    width: 640px;
    height: 50px;
    font-size: 1.2rem;
  }
  #dropdownButton,
  #filterButton {
    height: 50px;
    gap: 6px;
    padding: 0 18px;
  }
  #dropdownButton span,
  #filterButton span {
    font-size: 1.2rem;
    margin-bottom: 3px;
  }
  #dropdownButton svg,
  #filterButton svg {
    width: 25px;
    height: 25px;
  }
  #navBoxesContainer {
    display: flex;
    justify-content: start;
    max-width: calc(
      clamp(178px, calc(0.16438vw * 100 - 22.6px), 214px) * 6 + 5rem
    );
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  #contentArea {
    max-width: 95%;
    padding: 100px 0;
    margin: auto;
  }
  .mc-main {
    gap: 4px;
  }
  .mc-image {
    max-width: 210px;
  }
  .mc-loc-data {
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
  }
  .mc-loc-data > span {
    align-items: center;
  }
  .mc-postal-code > svg {
    margin-top: -7px;
  }
  #topHeader {
    padding-left: 0;
    padding-right: 0;
  }
  .header-wrapper {
    max-width: calc(clamp(175px, 12.153vw, 230px) * 6 + 3rem);
    margin: auto;
  }
  .footer-top {
    padding: 40px 30px;
  }
  .footer-center nav a {
    font-size: 16px;
    margin: 0 8px;
  }
  .footer-bottom {
    font-size: 14px;
  }
  .apps img {
    height: 42px;
  }
  .secondary-cards {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  #headerNavLinks ul li a span {
    font-size: 1.2rem;
    margin-bottom: -2px;
  }
  #standardNavText a span {
    font-size: 1.2rem;
  }
  .ad-970 {
    width: 100%;
    max-width: 970px;
  }
  .footer-contact p,
  .footer-links a,
  .footer-logo p,
  .footer-services a {
    font-size: clamp(16px, 1.3vw, 17px);
  }
  .footer-contact h4,
  .footer-links h4,
  .footer-services h4 {
    font-size: clamp(18px, 1.43vw, 20px);
  }
  .mc-tags {
    gap: 4px;
  }
  .mc-tag {
    gap: 2px;
    font-size: 11px;
  }
}
@media (max-width: 1220px) and (min-width: 769px) {
  #topHeader {
    padding-left: 3rem;
    padding-right: 3rem;
  }
  #standardNavText h1 {
    font-size: 4vw;
  }
  #headerNavLinks ul {
    gap: 0.9rem;
  }
  #searchInput {
    width: 450px;
    font-size: medium;
    height: 50px;
    padding-bottom: 2px;
    font-size: 18px;
  }
  #dropdownButton,
  #filterButton {
    height: 50px;
    gap: 8px;
    padding: 0 15px;
  }
  #dropdownButton span,
  #filterButton span {
    font-size: 1.1rem;
    margin-bottom: 2px;
  }
  #dropdownButton svg,
  #filterButton svg {
    width: 28px;
    height: 28px;
  }
  .boxes-carousel {
    top: 110px;
    margin-top: -100px;
    margin-bottom: 80px;
  }
  #navBoxesContainer {
    display: flex;
    justify-content: start;
    align-items: center;
    overflow-x: auto;
    position: relative;
    top: 0;
    gap: 0.5rem;
    padding-bottom: 2.2rem;
    padding-left: 0;
    padding-right: 0;
    margin: auto;
    margin-top: 2.2rem;
    max-width: calc(152px * 4 + 1.6rem);
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  #navBoxesContainer::-webkit-scrollbar {
    display: none;
  }
  .anim-flip > div > div {
    font-size: 14px;
  }
  #cardInner {
    padding: 0 6px;
    scale: 0.85;
  }
  .filter-controls {
    margin: 10px;
    width: auto;
  }
  .box-card {
    max-width: 152px;
    width: 152px;
    min-width: 152px;
    aspect-ratio: 1/1;
    animation: slide-up 1s ease-out;
    z-index: 5;
    position: relative;
    gap: 0.1rem;
    scroll-snap-align: start;
    padding: 5px;
  }
  .box-card h2 {
    font-size: 1.1rem;
    margin-bottom: 0;
  }
  .box-card img {
    width: 30%;
  }
  #announce {
    margin-left: 0;
  }
  #announce img {
    height: 2.2rem;
  }
  #logo img {
    height: 3.2rem;
  }
  #headerNavLinks ul li a {
    flex-direction: column;
    gap: 2px;
  }
  #headerNavLinks ul li a img,
  #headerNavLinks ul li a svg {
    height: 24px;
  }
  #headerNavLinks ul li a span {
    font-size: 1rem;
  }
  #contentArea {
    padding: 6px;
  }
  #cardsContainer {
    flex-direction: column-reverse;
    gap: 16px;
    margin-top: 10px;
    margin-bottom: 24px;
  }
  .main-card {
    flex-direction: row;
    max-width: 850px;
    margin: auto;
  }
  .quick-filters-container {
    display: none;
  }
  .mc-image {
    flex: 1 1;
    max-width: 285px;
    height: auto;
  }
  .mc-body {
    flex: 1 1;
  }
  .secondary-cards {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }
  .secondary-card {
    width: 300px;
  }
  .sc-image {
    width: calc(100% - 20px);
  }
  .footer-top {
    padding: 36px 20px;
  }
  .footer-contact h4,
  .footer-links h4,
  .footer-services h4 {
    font-size: 16px;
  }
  .footer-center nav a {
    font-size: 15px;
    margin: 0 6px;
  }
  .footer-bottom {
    font-size: 13px;
  }
  .ad-970 {
    width: 95%;
    max-width: 970px;
  }
  .footer-contact p,
  .footer-links a,
  .footer-logo p,
  .footer-services a {
    font-size: clamp(14px, 2vw, 16px);
  }
  .footer-contact h4,
  .footer-links h4,
  .footer-services h4 {
    font-size: clamp(17px, 2.2vw, 20px);
  }
  .mc-title {
    font-size: 2.15vw;
  }
  .mc-main {
    gap: 3px;
  }
}
@media (max-width: 769px) and (min-width: 481px) {
  #topHeader {
    flex-direction: column;
    gap: 0.5rem;
    padding: 0 0.5rem;
    height: 70px;
    align-items: center;
    justify-content: center;
  }
  .header-wrapper {
    align-items: center;
    justify-content: center;
  }
  #headerNavLinks {
    display: none;
  }
  #standardNavText {
    padding: 25px 0;
  }
  #standardNavText h1 {
    font-size: 4.375vw;
    text-align: center;
  }
  #headerLogo {
    padding: 0;
  }
  #announce {
    scale: 1;
    margin-top: 4px;
    margin-left: -2px;
  }
  #announce img {
    height: 2.3rem;
    margin-bottom: 8px;
  }
  #logo img {
    height: 3.2rem;
  }
  #headerNavLinks {
    display: none;
  }
  #searchInput {
    font-size: 0.9rem;
    width: 100%;
    height: 50px;
    font-size: 18px;
  }
  .boxes-carousel {
    top: 105px;
    margin-top: -90px;
    margin-bottom: 80px;
  }
  #navBoxesContainer {
    display: flex;
    justify-content: start;
    align-items: center;
    overflow-x: auto;
    top: 0;
    gap: 10px;
    max-width: calc(140px * 3 + 24px);
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  #navBoxesContainer::-webkit-scrollbar {
    display: none;
  }
  #cardInner {
    display: none;
  }
  .box-card {
    width: 100%;
    aspect-ratio: 1/1;
    animation: slide-up 1s ease-out;
    z-index: 5;
    position: relative;
    min-width: 140px;
    padding: 4px;
    gap: 0.3rem;
    scroll-snap-align: start;
  }
  .box-card h2 {
    font-size: 16px;
  }
  .box-card img {
    width: 30%;
  }
  #dropdownButton span,
  #filterButton span {
    display: none;
  }
  #searchBtnContainer {
    margin-bottom: 0;
  }
  #phoneNavBar {
    display: flex;
  }
  #dropdownButton,
  #filterButton {
    height: 50px;
    gap: 20px;
    padding: 0 20px;
  }
  #dropdownButton svg,
  #filterButton svg {
    width: 26px;
    height: 26px;
  }
  #mainSearchContainer {
    width: 100%;
    margin: 0 20px;
  }
  #contentArea {
    padding: 6px;
  }
  #cardsContainer {
    flex-direction: column-reverse;
  }
  .quick-filters-container {
    display: none;
  }
  .main-card {
    flex-direction: column;
    max-width: 300px;
    margin: 0;
  }
  .main-cards {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  .mc-tag {
    min-width: 0;
    font-size: 10px;
    padding: 2px 5px;
  }
  .mc-tag svg {
    height: 13px;
  }
  .mc-tags {
    gap: 4px;
  }
  .mc-image {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 200px;
    flex: none;
  }
  .mc-body {
    flex: 1 1;
  }
  .secondary-cards {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }
  .secondary-card {
    width: 300px;
  }
  .sc-image {
    width: calc(100% - 20px);
  }
  footer {
    margin-bottom: 50px;
  }
  .footer-copyright {
    font-size: 10px;
  }
  .footer-top {
    padding: 24px 12px;
    gap: 16px;
  }
  .footer-center nav a {
    font-size: 13px;
  }
  .footer-bottom {
    font-size: 12px;
    gap: 12px;
  }
  .apps img {
    height: 32px;
  }
  .custom-select {
    width: 140px;
  }
  .mc-tag {
    min-width: 90px;
  }
  .mc-title {
    font-size: 1.2rem;
  }
  .links-footer-bottom svg {
    height: 22px;
  }
  .ad-970 {
    width: 95%;
  }
  .footer-contact p,
  .footer-links a,
  .footer-logo p,
  .footer-services a {
    font-size: clamp(12px, 2.5vw, 16px);
  }
  .footer-contact h4,
  .footer-links h4,
  .footer-services h4 {
    font-size: clamp(15px, 2.7vw, 19px);
  }
}
@media (max-width: 480px) {
  #standardNavText h1 {
    font-size: 6.17vw !important;
    text-align: center;
    padding: 0;
  }
  #standardNavText {
    padding: 20px 0;
  }
  #headerLogo {
    padding: 0;
    height: min-content;
    gap: 8px;
    margin-left: 2px;
  }
  #logo img {
    height: 2.6rem;
    margin-left: 0;
  }
  #announce img {
    height: 2.2rem;
    margin-bottom: 0;
    margin-right: -5px;
  }
  #topHeader {
    flex-direction: column;
    gap: 0.5rem;
    padding: 0;
    height: 4rem;
    align-items: center;
    justify-content: center;
  }
  .quick-filters-container {
    display: none;
  }
  .header-wrapper {
    align-items: center;
    justify-content: center;
  }
  #headerNavLinks {
    display: none;
  }
  #searchInput {
    height: 40px;
    font-size: 15px;
    width: 100%;
    padding: 0 5px;
  }
  #dropdownButton span,
  #filterButton span {
    display: none;
  }
  #dropdownButton svg,
  #filterButton svg {
    width: 18px;
  }
  #dropdownButton {
    padding: 0 8px 0 12px;
    height: 40px;
  }
  #dropdownButton svg {
    scale: 1.2;
  }
  #filterButton {
    padding: 0 12px 0 8px;
    height: 40px;
  }
  #standardNavText a {
    gap: 2px;
  }
  #standardNavText a span svg {
    width: 1.5rem;
    margin-top: -2px;
  }
  #standardNavText a span {
    font-size: 1rem;
    line-height: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .boxes-carousel {
    top: calc(clamp(70px, 25vw, 100px) / 2);
    margin-top: -48px;
    margin-bottom: calc(clamp(70px, 25vw, 100px) * 0.7);
  }
  #navBoxesContainer {
    display: flex;
    justify-content: start;
    gap: 0.5rem;
    max-width: calc(clamp(75px, 25vw, 999px) * 3 + 0.5rem * 2);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  #navBoxesContainer::-webkit-scrollbar {
    display: none;
  }
  .arrow.back,
  .arrow.left {
    left: -1.75rem;
  }
  .arrow.right {
    right: -1.75rem;
  }
  .arrow {
    width: 24px;
    height: 24px;
  }
  .arrow > svg {
    width: 14px;
    height: auto;
  }
  .box-card {
    width: clamp(75px, 25vw, 999px);
    height: clamp(70px, 25vw, 100px);
    min-width: clamp(75px, 25vw, 999px);
    min-height: clamp(70px, 25vw, 100px);
    aspect-ratio: auto;
    animation: slide-up 1s ease-out;
    z-index: 5;
    position: relative;
    scroll-snap-align: start;
    padding: 1px;
  }
  .box-card h2 {
    font-size: 10px;
    margin-bottom: 0;
  }
  .box-card img {
    width: 24px;
  }
  #cardInner {
    display: none;
  }
  #searchBtnContainer > button > svg {
    width: 1.1rem;
    aspect-ratio: 1/1;
  }
  #searchBtnContainer > button > span {
    font-weight: 700;
    font-size: 1rem;
  }
  #searchBtnContainer > button {
    padding-top: 0.4rem;
    padding-bottom: 0.5rem;
    padding-left: 1rem;
    padding-right: 1.3rem;
    margin-top: 0.8rem;
    margin-bottom: 1.4rem;
    scale: 1;
  }
  #phoneNavBar {
    display: flex;
  }
  #phoneNavBar ul li a span {
    font-size: 10px;
  }
  #standardNavSearchContainer {
    padding-bottom: 0.4rem;
  }
  #searchBtnContainer {
    margin-bottom: 0.9rem;
  }
  #mainSearchContainer {
    width: 100%;
    margin: 0 10px;
  }
  #sidebarContent {
    padding-left: 0;
  }
  #sidebarSection {
    padding-left: 0;
  }
  #categoriesDropdown {
    margin-top: -2px;
  }
  #contentArea {
    padding: 6px;
  }
  #cardsContainer {
    flex-direction: column-reverse;
  }
  .sc-image {
    width: calc(100% - 20px);
  }
  .secondary-cards {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .item-like {
    padding: 8px;
  }
  .item-like img {
    width: 24px;
    height: auto;
    transition: scale 0.2s;
  }
  .footer-top {
    padding: 24px 12px;
    gap: 16px;
  }
  .footer-center nav a {
    font-size: 13px;
  }
  .footer-bottom {
    font-size: 12px;
    gap: 12px;
  }
  .apps img {
    height: 32px;
  }
  .custom-select {
    width: 140px;
  }
  .mc-tag {
    min-width: 0;
    font-size: 10px;
    padding: 2px 5px;
  }
  .mc-tag svg {
    height: 13px;
  }
  .mc-tags {
    gap: 4px;
  }
  footer {
    margin-bottom: 50px;
  }
  #categoriesDropdown {
    display: none;
  }
  #filterButton {
    border-bottom-right-radius: 20px;
  }
  .ad-970 {
    width: 95%;
  }
  .footer-contact p,
  .footer-links a,
  .footer-logo p,
  .footer-services a,
  .mc-cat,
  .mc-loc-data,
  .mc-post-date {
    font-size: 12px;
  }
  .footer-contact h4,
  .footer-links h4,
  .footer-services h4,
  .mc-title {
    font-size: clamp(16px, 4.4vw, 18px);
  }
}
@media (min-width: 770px) {
  .cat-sidebar-container {
    max-width: 375px !important;
  }
  #sidebarContent {
    max-width: 500px !important;
  }
  #categoriesDropdown {
    display: flex;
  }
}
@media (max-width: 769px) {
  .cat-sidebar-container {
    display: block;
  }
  #categoriesDropdown {
    display: none !important;
  }
  #filterButton {
    border-bottom-right-radius: 20px;
  }
  #dropdownButton {
    border-bottom-left-radius: 20px;
  }
}
@media (max-width: 341px) {
  .cat-card {
    min-width: 50px !important;
    height: 110px !important;
  }
  .cat-card span {
    font-size: 12px;
    font-weight: 700;
  }
}
.ad-card {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border: 2px dashed #666;
  border-radius: 8px;
  color: #555;
  font-size: 1rem;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.m-auto {
  margin: auto;
  margin-bottom: 10px;
}
.navicon-badge {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 12px;
  background-color: red;
  width: 13px;
  height: 13px;
  border-radius: 99px;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  content: "1";
}
@media (min-width: 1018px) and (max-width: 1220px) {
  #navBoxesContainer {
    max-width: calc(152px * 5 + 2.1rem);
  }
}
@media (max-width: 659px) {
  #categoryBack {
    display: none !important;
  }
}

#geoDataDetails {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  background-color: var(--secondary-dark);
  padding: 6px 12px;
  color: white;
  gap: 10px;
  text-transform: capitalize;
}

.gd-row {
  display: flex;
  gap: 5px;
  font-family: "Nunito", sans-serif;
}

#bottom-progress-bar {
  transition: none !important;
}

#adRedirect {
  display: inline-block;
  position: relative;
}

#adRedirect::after {
  content: none !important;
}

.ad-media-wrapper {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--secondary-dark);
  overflow: hidden;
}

#myVideo,
#myImage {
  max-width: 100vw;
  width: 100vw;
  max-height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

#bottom-progress-bar {
  background-color: var(--yellow) !important;
}

.sub-cats-container {
  display: flex;
  flex-direction: column;
  background-color: var(--teal-light);
  border-radius: 20px;
  padding: 12px 10px;
  gap: 12px;
  min-width: 100%;
  border: 3px solid var(--secondary-dark);
  transition: none !important;
}

.cat-row {
  display: flex;
  gap: 12px;
  background-color: #fff0;
  padding: 10px;
  border-radius: 10px;
  cursor: pointer;
}

.cat-row:hover {
  background-color: #fff3;
}

.cat-row span {
  display: flex;
  align-items: center;
  justify-content: start;
  font-size: 18px;
  width: 100%;
}

.catside-body * {
  user-select: none;
}

#gd-lang {
  text-transform: none !important;
}

.footer-applications {
  color: #8b8b8b !important;
  font-weight: bold !important;
}

.qfc-location-box {
  width: 300px;
  max-width: 300px;
  min-width: 300px;
  background-color: white;
  padding: 0;
  padding-bottom: 10px;
  /* height: 100%; */
  border: 2px solid #ddd;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.qfc-loc-title {
  background-color: var(--secondary-dark);
  color: white;
  padding: 6px 0;
  margin-bottom: 6px;
  text-align: center;
}

.qfc-loc-input {
  max-width: 500px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0px 10px;
}

.qfc-loc-dropdown {
  margin-top: 12px;
  padding: 0px 10px;
}

.quick-filters-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.qfc-filters {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  overflow: hidden;
  transition: none !important;
  padding-bottom: 12px;
}

.qfc-filter-row {
  display: flex;
  flex-direction: row;
  gap: 4px;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
  transition: none !important;
}

.qfc-filter-row.qfc-row-title {
  justify-content: center;
  font-weight: bold;
  font-size: 19px;
  background-color: var(--secondary-dark);
  padding: 5px 0;
  text-transform: capitalize;
  color: white;
  transition: none !important;
  min-height: 47px;
}

.qfc-filter-row.pl {
  padding-left: 14px;
  transition: none !important;
}

.qfc-filter-row.pl .clickable-text {
  width: 100%;
  transition: none !important;
}

.active-category-bg {
  border: 3px solid rgba(0, 0, 0, 0.4);
  box-sizing: border-box;
}

.qfc-filter-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  padding: 0 14px;
  transition: none !important;
}

.qfc-filter-input {
  background-color: white;
  color: var(--secondary-dark);
  border: 2px solid var(--secondary-dark);
  border-radius: 10px;
  /* width: 100%; */
  margin: 0 14px;
  padding: 5px 10px;
  outline: none;
}

.qfc-riw {
  flex-grow: 1;
  gap: -1px;
}

.range-group.qfc-rg {
  width: 100% !important;
  gap: 5px;
  padding: 0 10px !important;
  flex-direction: column;
}

.qfc-row-title {
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0;
  font-weight: 600;
}

.qfc-row-title .arrow {
  transition: transform 0.3s ease;
  font-size: 0.9em;
  color: #aaa;
  margin-left: 6px;
}

.qfc-row-title.expanded .arrow {
  transform: rotate(180deg);
  color: #8b5cf6;
}

.all-rounded {
  border-radius: .5rem;
  padding: 0;
  text-align: center;
}

.qfc-filter-select {
  margin: 0 10px;
  padding: 6px 8px;
  background-color: white;
  border: 2px solid var(--secondary-dark);
  outline: none;
  border-radius: .5rem;
}

.range-input.price-min,
.range-input.price-max {
  padding: 0;
  text-align: center;
  outline: none;
}

.qfc-unit-label {
  padding: 0 0.7rem;
}

.qfc-riw > input {
  height: 33px !important;
  font-size: 14px !important;
}