/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */


 section {
  position: relative;
  --section-padding-y: 2.4rem;
  padding-top: var(--section-padding-y);
  padding-bottom: var(--section-padding-y);
}
@media (min-width: 768px) {
  section {
    --section-padding-y: 4rem;
  }
}
section.section-login {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 3.2rem;
  background-color: white;
}
@media (min-width: 768px) {
  section.section-login {
    background-color: var(--color-grey-100);
  }
}
section.section-review {
  overflow: hidden;
  --section-padding-y: 4rem;
}
@media (min-width: 768px) {
  section.section-review {
    --section-padding-y: 8rem;
  }
}
section.section-favorite > .container, section.section-browse > .container {
  display: flex;
  flex-direction: column;
}
@media (max-width: calc(768px - 0.02px)) {
  section.section-favorite > .container, section.section-browse > .container {
    padding: 0;
  }
}
@media (min-width: 768px) {
  section.section-favorite > .container, section.section-browse > .container {
    gap: 1.9rem;
    flex-direction: row;
  }
}
@media (min-width: 2xl) {
  section.section-favorite > .container, section.section-browse > .container {
    gap: 3.2rem;
  }
}
@media (max-width: calc(768px - 0.02px)) {
  section.section-favorite .card-location-col, section.section-browse .card-location-col {
    padding-top: 2.4rem;
    padding-left: 2.4rem;
    padding-right: 2.4rem;
  }
}
@media (min-width: 768px) {
  section.section-favorite .card-location-col, section.section-browse .card-location-col {
    flex: 1;
  }
}
@media (min-width: 2xl) {
  section.section-favorite .card-location-col .grid-card-on-desktop, section.section-browse .card-location-col .grid-card-on-desktop {
    gap: 3.2rem;
  }
}
@media (min-width: 768px) {
  section.section-favorite .card-profile-col,
  section.section-favorite .card-filter-col, section.section-browse .card-profile-col,
  section.section-browse .card-filter-col {
    flex: 0 0 24%;
  }
  section.section-favorite .card-profile-col__heading,
  section.section-favorite .card-filter-col__heading, section.section-browse .card-profile-col__heading,
  section.section-browse .card-filter-col__heading {
    font-weight: 500;
    font-size: 2rem;
    line-height: 3.2rem;
    margin-bottom: 3.2rem;
  }
}
@media (min-width: 768px) {
  section.section-favorite .card-filter-col, section.section-browse .card-filter-col {
    display: flex;
    flex-direction: column-reverse;
    justify-content: start;
    gap: 3.2rem;
  }
}
@media (max-width: calc(768px - 0.02px)) {
  section.section-favorite .card-filter-col__heading, section.section-browse .card-filter-col__heading {
    display: none;
  }
}
section.section-browse {
  background-color: white;
}
@media (min-width: 768px) {
  section.section-browse {
    background-color: var(--color-grey-050);
  }
}
@media (max-width: calc(768px - 0.02px)) {
  section.section-browse .card-location-col {
    padding-bottom: 2.4rem;
  }
}
section.section-favorite, section.section-location-detail {
  background-color: var(--color-grey-050);
}
@media (max-width: calc(768px - 0.02px)) {
  section.section-location-detail > .container {
    padding-left: 0;
    padding-right: 0;
  }
}
section.section-location-detail > .container > .detail-col > * {
  padding-left: 2.4rem;
  padding-right: 2.4rem;
}
section.section-location-detail .detail__top-section {
  padding-top: 0;
  padding-bottom: 0;
}
@media (max-width: calc(768px - 0.02px)) {
  section.section-location-detail .detail__top-section {
    border-bottom: 0.1rem solid var(--color-grey-300);
    padding-top: 2.4rem;
    padding-bottom: 2.4rem;
  }
}
section.section-location-detail .detail__title {
  font-weight: 500;
  font-size: 2rem;
  line-height: 3.2rem;
  margin-bottom: 1.6rem;
}
@media (min-width: 768px) {
  section.section-location-detail .detail__title {
    font-size: 3.2rem;
    line-height: 4.8rem;
    margin-bottom: 0.8rem;
  }
}
section.section-location-detail .detail__grade-rating {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: calc(768px - 0.02px)) {
  section.section-location-detail .detail__grade-rating .grade {
    gap: 0.4rem;
  }
}
section.section-location-detail .detail__grade-rating .grade-icon {
  width: 1.6rem;
  height: 1.6rem;
}
@media (min-width: 768px) {
  section.section-location-detail .detail__grade-rating .grade-icon {
    width: 2rem;
    height: 2rem;
  }
}
section.section-location-detail .detail__grade-rating .rating__score,
section.section-location-detail .detail__grade-rating .rating__total {
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.6rem;
}
@media (min-width: 768px) {
  section.section-location-detail .detail__grade-rating .rating__score,
  section.section-location-detail .detail__grade-rating .rating__total {
    font-size: 1.6rem;
    line-height: 2.4rem;
  }
}
section.section-location-detail .detail__grade-rating > div {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
@media (min-width: 768px) {
  section.section-location-detail .detail__grade-rating > div {
    gap: 1.6rem;
  }
}
section.section-location-detail .detail__heart img {
  width: 2.4rem;
  height: 2.4rem;
}
section.section-location-detail .detail__badges {
  margin-top: 2.4rem;
  gap: 0.4rem;
}
section.section-location-detail .detail__badges .badge {
  padding: 0.2rem 0.8rem;
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 2rem;
}
@media (min-width: 768px) {
  section.section-location-detail .detail__badges {
    margin-top: 1.6rem;
    gap: 1.6rem;
  }
}
section.section-location-detail .detail__summaries {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 2.4rem;
  margin: 2.4rem 0;
}
@media (min-width: 768px) {
  section.section-location-detail .detail__summaries {
    font-size: 1.6rem;
    line-height: 2.8rem;
  }
}
section.section-location-detail .detail__summary {
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 2rem;
}
section.section-location-detail .detail__summary h2 {
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 2.4rem;
  margin-bottom: 0.8rem;
}

section.section-location-detail .detail__summary ul {
  padding-left: 2.4rem;
  list-style: disc;
}

@media (min-width: 768px) {
  section.section-location-detail .detail__summary {
    font-size: 1.4rem;
    line-height: 2.4rem;
    padding-left: 2.4rem;
    border-left: 0.1rem solid var(--color-grey-300);
  }
  section.section-location-detail .detail__summary h2 {
    font-weight: 500;
    font-size: 2rem;
    line-height: 3.2rem;
    margin-bottom: 0.8rem;
  }
}
section.section-location-detail .detail__gallery {
  cursor: pointer;
  margin-top: 2.4rem;
  margin-bottom: 2.4rem;
}
@media (min-width: 768px) {
  section.section-location-detail .detail__gallery {
    margin-top: 3.2rem;
  }
}
@media (min-width: 768px) {
  section.section-location-detail .container {
    display: flex;
    gap: 3.2rem;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

#main > section:first-child:not(.section-login) {
  padding-top: var(--navbar-height);
}
@media (min-width: 768px) {
  #main > section:first-child:not(.section-login).section-favorite, #main > section:first-child:not(.section-login).section-browse, #main > section:first-child:not(.section-login).section-location-detail {
    padding-top: calc(var(--navbar-height) + 3.2rem);
  }
}

.container {
  padding-left: 2.4rem;
  padding-right: 2.4rem;
  margin: 0 auto;
}
.container-slim {
  max-width: 1080px !important;
}
@media (min-width: 768px) {
  .container {
    max-width: 1440px;
    padding-left: 6.4rem;
    padding-right: 6.4rem;
  }
}

.bg-puzzle::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -2;
  opacity: 12%;
  background-image: url("/banner.png");
  background-position: center center;
  background-size: cover;
}
.bg-puzzle--aqua::before {
  opacity: unset;
}
.bg-puzzle--aqua::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  opacity: 85%;
  background-color: var(--color-aqua-500);
}
@media (min-width: 768px) {
  .bg-puzzle--aqua {
    padding: 72px 32px;
  }
}
@media (min-width: 1280px) {
  .bg-puzzle--aqua {
    padding: 72px 64px;
  }
}

.bg-gray-100 {
  background-color: var(--color-grey-100);
}

.bg-gray-200 {
  background-color: var(--color-grey-200);
}

:root {
  /* Grey scale */
  --color-grey-950: #020618;
  --color-grey-900: #0f172b;
  --color-grey-800: #1d293d;
  --color-grey-700: #314158;
  --color-grey-600: #45556c;
  --color-grey-500: #62748e;
  --color-grey-400: #90a1b9;
  --color-grey-300: #cad5e2;
  --color-grey-200: #e2e8f0;
  --color-grey-100: #f1f5f9;
  --color-grey-050: #fafcfe;
  /* Brick scale */
  --color-brick-900: #c3381c;
  --color-brick-800: #dc4524;
  --color-brick-700: #eb4b28;
  --color-brick-600: #f9522d;
  --color-brick-500: #ff5831;
  --color-brick-400: #ff724e;
  --color-brick-300: #ff8c6e;
  --color-brick-200: #ffac97;
  --color-brick-100: #ffcdbf;
  --color-brick-050: #fbeae8;
  /* Aqua scale */
  --color-aqua-900: #105b9a;
  --color-aqua-800: #167bbc;
  --color-aqua-700: #198cd0;
  --color-aqua-600: #1d9fe4;
  --color-aqua-500: #21adf3;
  --color-aqua-400: #37b9f5;
  --color-aqua-300: #56c6f6;
  --color-aqua-200: #85d6f9;
  --color-aqua-100: #b5e6fb;
  --color-aqua-050: #e2f6fe;
  /* Green scale */
  --color-green-900: #006426;
  --color-green-800: #00843b;
  --color-green-700: #009647;
  --color-green-600: #5ea500;
  --color-green-500: #00b85e;
  --color-green-400: #00c475;
  --color-green-300: #3ecf8e;
  --color-green-200: #83dcae;
  --color-green-100: #b6eace;
  --color-green-050: #e1f7eb;
  /* Yellow scale */
  --color-yellow-900: #461901;
  --color-yellow-800: #7a3306;
  --color-yellow-700: #973c00;
  --color-yellow-600: #bb4d00;
  --color-yellow-500: #e17100;
  --color-yellow-400: #fe9a00;
  --color-yellow-300: #ffb900;
  --color-yellow-200: #ffd230;
  --color-yellow-100: #fee685;
  --color-yellow-050: #fef3c6;
  /* Red scale */
  --color-red-900: #4d0218;
  --color-red-800: #8b0836;
  --color-red-700: #c60036;
  --color-red-600: #ec003f;
  --color-red-500: #ff2056;
  --color-red-400: #ff637e;
  --color-red-300: #ffa1ad;
  --color-red-200: #ffccd3;
  --color-red-100: #ffe4e6;
  --color-red-050: #fff1f2;
  /* Utility colors */
  --color-white: #ffffff;
  --color-overlay-64: rgba(2, 6, 24, 0.64);
  --color-alpha-0: rgba(255, 255, 255, 0);
  /* Font stacks */
  --font-sans: "Inter", sans-serif;
  --font-alt: "Rethink Sans", sans-serif;
  /* Breakpoint */
  --breakpoint-sm: 480px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 1024px;
  --breakpoint-xl: 1280px;
  --breakpoint-2xl: 1440px;
}

/* 1. Better box-sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* 2. Remove default spacing */
* {
  margin: 0;
  padding: 0;
}

/* 3. Set base font size and height */
html {
  font-size: 62.5%; /* 1rem = 10px */
  height: 100%;
  scroll-behavior: smooth;
}

/* 4. Set base body styles */
body {
  height: 100%;
  line-height: 1.5;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--color-grey-900);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  position: relative;
}

/* 5. Media defaults */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* 6. Form elements inherit fonts and remove default styles */
input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  padding: 0;
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

/* 7. Anchor defaults */
a {
  text-decoration: none;
  color: inherit;
}

/* 8. Lists: remove bullets */
ul,
ol {
  list-style: none;
}

/* 9. Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* 10. Miscellaneous adjustments */
textarea {
  line-height: inherit;
}

/* Hide the native eye icon and autofill buttons inside password inputs */
input[type=password]::-ms-reveal,
input[type=password]::-ms-clear {
  display: none;
}

input[type=password]::-webkit-contacts-auto-fill-button,
input[type=password]::-webkit-credentials-auto-fill-button {
  display: none;
}

input[type=password]::-webkit-inner-spin-button,
input[type=password]::-webkit-outer-spin-button {
  display: none;
}

/* Note: Removed -webkit-text-security to allow password toggle functionality */

:root {
  --font-inter: var(--font-sans);
  --font-rethink: var(--font-alt);
}

body {
  font-family: var(--font-inter);
  font-size: 1.2rem;
  line-height: 2rem;
  color: var(--color-grey-900);
  background-color: var(--color-white);
}
@media (min-width: 768px) {
  body {
    font-size: 1.4rem;
    line-height: 2.4rem;
  }
}

h1 {
  font-family: var(--font-rethink);
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 4.4rem;
}

h2 {
  font-family: var(--font-rethink);
  font-weight: 500;
  font-size: 2rem;
  line-height: 3.2rem;
  margin-bottom: 2.4rem;
}
@media (min-width: 768px) {
  h2 {
    font-weight: 500;
    font-size: 3.2rem;
    line-height: 4.8rem;
    text-align: center;
  }
}

.headline {
  margin-bottom: 2rem;
}
.headline h2 {
  font-family: var(--font-rethink);
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 3.2rem;
  margin-bottom: 1.2rem;
}
@media (min-width: 768px) {
  .headline h2 {
    font-weight: 500;
    font-size: 3.2rem;
    line-height: 4.8rem;
    text-align: center;
  }
}
.headline p {
  font-family: var(--font-inter);
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 2.4rem;
  color: var(--color-grey-700);
}
@media (min-width: 768px) {
  .headline {
    margin-bottom: 4rem;
    text-align: center;
  }
}

.quote {
  font-family: var(--font-inter);
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 2.4rem;
  max-width: 80rem;
  margin: 0 auto 2rem auto;
}
@media (min-width: 768px) {
  .quote {
    font-size: 1.6rem;
    text-align: center;
    font-style: italic;
    margin-bottom: 4rem;
  }
}

.section-favorite h2,
.section-browse h2 {
  text-align: start;
}


.alert {
  position: absolute;
  width: 100%;
  top: 0;
  padding: 0.3rem 2.4rem;
  border: 1px solid;
  background-color: #fee2e2;
  color: #b91c1c;
  font-size: 1.2rem;
  display: none;
}
@media (min-width: 768px) {
  .alert {
    max-width: 34rem;
  }
}
.alert.show {
  display: block;
}
.alert.show + div:not(.alert), .alert.show + .alert + div:not(.alert) {
  margin-top: 2rem;
}
.alert--error {
  background-color: #fee2e2;
  border-color: #f87171;
  color: #b91c1c;
}
.alert--info {
  background-color: #e6fffa;
  border-top-width: 4px;
  border-color: #38b2ac;
  color: #234e52;
}
.alert__content {
  display: flex;
  align-items: flex-start;
}
.alert__icon-wrapper {
  padding-top: 0.25rem;
  margin-right: 1rem;
}
.alert__icon {
  width: 1.5rem;
  height: 1.5rem;
  fill: currentColor;
}
.alert__text {
  flex: 1;
}
.alert__title {
  font-weight: bold;
  margin-bottom: 0.25rem;
  font-size: 1.3rem;
}
.alert__message {
  font-size: 0.875rem;
}
.alert__close {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  padding: 1rem;
  background: none;
  border: none;
  cursor: pointer;
}

.badge {
  display: inline-block;
  padding-left: 0.6rem;
  padding-right: 0.6rem;
  font-family: var(--font-inter);
  font-weight: 500;
  font-size: 10px;
  line-height: 20px;
  border-radius: 1000px;
}
.badge--grey {
  background-color: var(--color-grey-200);
}
.badge--green {
  color: var(--color-white);
  background-color: var(--color-green-600);
}

.banner-homepage {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: visible;
  padding-bottom: 2.4rem;
}
@media (min-width: 768px) {
  .banner-homepage {
    align-items: center;
    gap: 2.4rem;
    margin-top: 10rem;
    padding-bottom: 0;
  }
  .banner-homepage .list-icon-text-wrapper {
    margin-top: 7.2rem;
  }
}
@media (min-width: 2xl) {
  .banner-homepage {
    margin-top: 14rem;
  }
}
.banner-homepage .search-form-wrapper {
  display: none;
}
@media (min-width: 768px) {
  .banner-homepage .search-form-wrapper {
    display: flex;
    margin-top: 1.6rem;
    padding: 2.4rem 3.2rem;
    background-color: white;
    width: 100%;
  }
}
.banner-homepage__heading {
  margin-top: 2.4rem;
  margin-bottom: 2.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .banner-homepage__heading {
    gap: 2.4rem;
  }
}
.banner-homepage__heading .heading span.brick {
  color: var(--color-brick-500);
}
.banner-homepage__heading .heading span.aqua {
  color: var(--color-aqua-700);
}
.banner-homepage__heading .heading span.green {
  color: var(--color-green-700);
}
@media (min-width: 768px) {
  .banner-homepage__heading .heading {
    font-weight: 700;
    font-size: 6.4rem;
    line-height: 8rem;
    text-align: center;
  }
}
.banner-homepage__heading .subheading {
  margin-top: 0.8rem;
  font-family: var(--font-inter);
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 2.4rem;
}
@media (min-width: 768px) {
  .banner-homepage__heading .subheading {
    margin-top: 1.6rem;
    font-size: 2rem;
    line-height: 3.2rem;
    text-align: center;
  }
}
@media (min-width: 768px) {
  .banner-homepage__heading {
    max-width: 82rem;
  }
}
@media (min-width: 768px) {
  .banner-homepage.container {
    padding-left: 0;
    padding-right: 0;
  }
}

.btn {
  display: inline-block;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
}
.btn-block, .btn-outline, .btn-transparent {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 0.8rem 1.4rem;
  width: 100%;
  font-family: var(--font-rethink);
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 2rem;
}
@media (min-width: 768px) {
  .btn-block, .btn-outline, .btn-transparent {
    width: fit-content;
  }
}
.btn-block:hover, .btn-outline:hover, .btn-transparent:hover {
  opacity: 80%;
}
.btn-block {
  color: var(--color-white);
  background-color: var(--color-brick-500);
}
.btn-block--disabled {
  background-color: var(--color-grey-300);
  pointer-events: none;
}
.btn-transparent, .btn-outline {
  color: var(--color-grey-700);
}
.btn-transparent {
  background-color: transparent;
}
.btn-outline {
  border: 1px solid var(--color-grey-300);
  background-color: white;
}
.btn-heart {
  padding: 1rem;
}
.btn-heart:hover {
  opacity: 80%;
}
.btn-hamburger {
  padding: 1.2rem;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 999;
}
.btn-hamburger button {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 13px;
  height: 10px;
}
.btn-hamburger span {
  display: block;
  height: 2px;
  background-color: white;
  border-radius: 1px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.btn-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(3px, 2.5px);
}
.btn-hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.btn-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(3px, -2.5px);
}
.btn__icon {
  margin-left: 0.8rem;
}
.btn--md {
  font-weight: 500;
  font-size: 1.4rem;
  padding: 0.8rem 1.6rem;
}
@media (min-width: 768px) {
  .btn--md {
    font-size: 1.6rem;
    padding: 1.4rem 1.8rem;
  }
}
.btn--lg {
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 2.4rem;
  padding: 0.8rem 1.6rem;
}
@media (min-width: 768px) {
  .btn--lg {
    font-size: 1.6rem;
    line-height: 2rem;
    padding: 1.4rem 1.8rem;
  }
}
.btn--full {
  width: 100% !important;
}
.btn--more {
  margin-top: 2.4rem;
}
@media (min-width: 768px) {
  .btn--more {
    margin: 3.2rem auto 0 auto;
  }
}

.filter .btn-outline {
  padding: 0.8rem 0.9rem;
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 2rem;
  width: 100%;
  margin: 0;
}
@media (min-width: 768px) {
  .filter .btn-outline {
    padding: 0.8rem 1.4rem;
    font-weight: 700;
  }
}

.gsi-material-button {
  display: block;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -webkit-appearance: none;
  background-color: WHITE;
  background-image: none;
  border: 1px solid #747775;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #1f1f1f;
  cursor: pointer;
  font-family: "Roboto", arial, sans-serif;
  font-size: 14px;
  height: 40px;
  letter-spacing: 0.25px;
  outline: none;
  overflow: hidden;
  padding: 0 12px;
  position: relative;
  text-align: center;
  -webkit-transition: background-color 0.218s, border-color 0.218s, box-shadow 0.218s;
  transition: background-color 0.218s, border-color 0.218s, box-shadow 0.218s;
  vertical-align: middle;
  white-space: nowrap;
  width: auto;
  min-width: min-content;
}

.blank-profile-card {
  display: block;
  min-width: 180px;
  /* width: 100%; */
  
  
  
}


.gsi-material-button .gsi-material-button-icon {
  height: 20px;
  margin-right: 12px;
  min-width: 20px;
  width: 20px;
}

.gsi-material-button .gsi-material-button-content-wrapper {
  -webkit-align-items: center;
  align-items: center;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  height: 100%;
  justify-content: center;
  position: relative;
  width: 100%;
}

.gsi-material-button .gsi-material-button-contents {
  font-family: "Roboto", arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: top;
}

.gsi-material-button .gsi-material-button-state {
  -webkit-transition: opacity 0.218s;
  transition: opacity 0.218s;
  bottom: 0;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.gsi-material-button:disabled {
  cursor: default;
  background-color: rgba(255, 255, 255, 0.3803921569);
  border-color: rgba(31, 31, 31, 0.1215686275);
}

.gsi-material-button:disabled .gsi-material-button-contents {
  opacity: 38%;
}

.gsi-material-button:disabled .gsi-material-button-icon {
  opacity: 38%;
}

.gsi-material-button:not(:disabled):active .gsi-material-button-state,
.gsi-material-button:not(:disabled):focus .gsi-material-button-state {
  background-color: #303030;
  opacity: 12%;
}

.gsi-material-button:not(:disabled):hover {
  -webkit-box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);
  box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);
}

.gsi-material-button:not(:disabled):hover .gsi-material-button-state {
  background-color: #303030;
  opacity: 8%;
}

.card {
  border-radius: 0.8rem;
  background-color: var(--color-white);
  box-shadow: 0 0 0 0.1rem var(--color-grey-200);
  overflow: hidden;
  margin-bottom: 1rem;
}
.card .btn-block {
  width: 100%;
}
.card-info {
  width: 340px;
  padding: 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.card-info__title {
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 2.4rem;
  margin-bottom: 1.2rem;
}
@media (min-width: 768px) {
  .card-info__distance-price-time, .card-info__hours {
    border-bottom: 0.1rem solid var(--color-grey-200);
    padding-bottom: 2.4rem;
  }
}
.card-info__distance-price {
  margin-bottom: 1.6rem;
}
@media (max-width: calc(768px - 0.02px)) {
  .card-info__distance-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.card-info__price {
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 2.4rem;
}
@media (min-width: 768px) {
  .card-info__price {
    font-size: 1.6rem;
    line-height: 3.2rem;
  }
}
.card-info__distance {
  font-size: 1.4rem;
  line-height: 2.4rem;
  display: flex;
  gap: 1.2rem;
  align-items: center;
}
@media (min-width: 768px) {
  .card-info__distance {
    font-size: 1.6rem;
    line-height: 3.2rem;
    margin-bottom: 0.8rem;
  }
}
.card-info__time {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
.card-info__time:not(:last-child) {
  margin-bottom: 0.8rem;
}
.card-info__time > div {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.card-info__location {
  color: var(--color-brick-500);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 500;
}
.card-info__location img {
  width: 1.6rem;
  height: 1.6rem;
}
@media (min-width: 768px) {
  .card-info__location {
    gap: 0.8rem;
  }
  .card-info__location img {
    width: 2rem;
    height: 2rem;
  }
}
.card-info__map img {
  height: 16rem;
  width: 100%;
  object-fit: cover;
}
@media (min-width: 768px) {
  .card-info__map {
    border-radius: 0.6rem;
    overflow: hidden;
  }
}
.card-info__hour-wrapper {
  display: flex;
  gap: 3.2rem;
}
.card-info__hour-wrapper > * {
  flex: 1;
  border-left: 0.1rem solid var(--color-grey-200);
}
.card-info__hour {
  display: flex;
  justify-content: space-between;
  padding-left: 1.2rem;
  font-size: 1.2rem;
  line-height: 2rem;
}
.card-info__hour:not(:last-child) {
  margin-bottom: 0.8rem;
}
.card-info__icon-text {
  display: flex;
  align-items: start;
  gap: 0.8rem;
}
.card-info__link {
  color: var(--color-brick-500);
  font-weight: 600;
  font-size: 1.2rem;
  line-height: 2rem;
}
.card-info__contact {
  display: flex;
  justify-content: space-between;
  padding: 0;
}
.card-info__contact:not(:last-child) {
  margin-bottom: 1.6rem;
}
@media (min-width: 768px) {
  .card-info__contact:not(:last-child) {
    margin-bottom: 0.8rem;
  }
}
@media (min-width: 768px) {
  .card-info__contact {
    padding: 0.6rem 0;
  }
}
.card-info__hours-contacts {
  display: flex;
  flex-direction: column-reverse;
  gap: 3.2rem;
}
@media (min-width: 768px) {
  .card-info__hours-contacts {
    flex-direction: column;
    gap: 2rem;
  }
}
@media (max-width: calc(768px - 0.02px)) {
  .card-info {
    width: 100%;
    background-color: unset;
    box-shadow: none;
    padding: 0;
  }
  .card-info > *:not(.card-info__map) {
    padding-left: 2.4rem;
    padding-right: 2.4rem;
  }
}
.card-form {
  font-family: var(--font-rethink);
  border: none;
  background: white;
  width: 100%;
  padding: 2.4rem;
  min-height: 80vh;
}
@media (min-width: 768px) {
  .card-form {
    border-radius: 0.8rem;
    max-width: 33.8rem;
    min-height: unset;
  }
}
.card-form__logo img {
  height: 4rem;
  margin-bottom: 1rem;
}
.card-form__profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
  margin-top: 3rem;
}
.card-form__profile-image {
  width: 6.4rem;
  height: 6.4rem;
  object-fit: cover;
  border-radius: 50%;
}
.card-form__profile-location {
  display: flex;
  gap: 0.4rem;
}
.card-form__profile-location svg {
  height: 1.6rem;
}
.card-form__profile-location p {
  font-size: 1.2rem;
  line-height: 1.6rem;
}
.card-form__field {
  display: flex;
  flex-direction: column;
}
.card-form__title {
  font-weight: 500;
  font-size: 2rem;
  line-height: 3.2rem;
  text-align: start;
  margin-bottom: 1.2rem;
}
.card-form__subtitle, .card-form__text {
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 2rem;
  color: var(--color-grey-700);
}
.card-form__form {
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 2.4rem;
}
.card-form__label {
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.4rem;
  margin-bottom: 0.6rem;
}
.card-form__checkbox {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 0.4rem;
}
.card-form__checkbox-input {
  width: 1.6rem;
  height: 1.6rem;
  cursor: pointer;
  background-color: white;
  border: 0.5px solid #ccc;
  border-radius: 0.3rem;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
  margin: 0;
}
.card-form__checkbox-input:hover {
  border-color: var(--color-brick-500, #007bff);
}
.card-form__checkbox-input:focus {
  border-color: var(--color-brick-500, #007bff);
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 88, 49, 0.2);
}
.card-form__checkbox-input:checked {
  background-color: var(--color-brick-500, #007bff);
  border-color: var(--color-brick-500, #007bff);
}
.card-form__checkbox-input:checked::after {
  content: '✓';
  display: block;
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.4rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.card-form__checkbox-label {
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.4rem;
  cursor: pointer;
  margin-bottom: 0;
}

/* Error messages styling */
.card-form__errors {
  background-color: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 0.375rem;
  padding: 1rem;
  margin-bottom: 1.5rem;
}

.card-form__error-header {
  font-weight: 600;
  color: #dc2626;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.card-form__error-list {
  margin: 0;
  padding-left: 1.25rem;
  list-style-type: disc;
}

.card-form__error-item {
  color: #dc2626;
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

/* Success messages styling */
.card-form__errors--success {
  background-color: #f0fdf4;
  border: 1px solid #bbf7d0;
}

.card-form__error-header--success {
  color: #16a34a;
}

/* Modal Gallery Styles */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal.open {
  opacity: 1;
  visibility: visible;
}

.modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modal__content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  z-index: 10000;
  padding: 10px 15px;
  line-height: 1;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal__close:hover {
  background: rgba(0, 0, 0, 0.7);
}

.gallery-swiper {
  width: 100%;
  height: 100%;
}

.gallery-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
}

.gallery-modal__image {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Mobile-specific fixes */
@media (max-width: 768px) {
  .modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
  }
  
  .modal__content {
    width: 100vw;
    height: 100vh;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .gallery-swiper {
    width: 100vw;
    height: 100vh;
    display: block;
  }
  
  .gallery-swiper .swiper-wrapper {
    width: 100%;
    height: 100%;
  }
  
  .gallery-swiper .swiper-slide {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    box-sizing: border-box;
    background: transparent;
  }
  
  .gallery-modal__image {
    max-width: calc(100vw - 40px);
    max-height: calc(100vh - 160px);
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
  }
  
  .modal .swiper-button-next,
  .modal .swiper-button-prev {
    width: 44px;
    height: 44px;
    margin-top: -22px;
    background-color: rgba(255, 255, 255, 0.9);
    color: #000;
  }
  
  .modal .swiper-button-next:after,
  .modal .swiper-button-prev:after {
    font-size: 18px;
    color: #000;
    font-weight: bold;
  }
  
  .modal .swiper-button-next {
    right: 15px;
  }
  
  .modal .swiper-button-prev {
    left: 15px;
  }
  
  .modal__close {
    position: fixed;
    top: 15px;
    right: 15px;
    width: 44px;
    height: 44px;
    font-size: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    color: #000;
    border-radius: 50%;
    z-index: 10001;
  }
  
  .modal .swiper-pagination {
    bottom: 30px;
    z-index: 10000;
  }
  
  .modal .swiper-pagination-bullet {
    background-color: rgba(255, 255, 255, 0.8);
    width: 12px;
    height: 12px;
    margin: 0 6px;
  }
  
  .modal .swiper-pagination-bullet-active {
    background-color: white;
  }
}

/* Swiper Navigation Buttons */
.modal .swiper-button-next,
.modal .swiper-button-prev {
  color: white;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  margin-top: -25px;
}

.modal .swiper-button-next:hover,
.modal .swiper-button-prev:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.modal .swiper-button-next:after,
.modal .swiper-button-prev:after {
  font-size: 18px;
  font-weight: bold;
}

.modal .swiper-button-next {
  right: 20px;
}

.modal .swiper-button-prev {
  left: 20px;
}

.modal .swiper-pagination {
  bottom: 20px;
}

.modal .swiper-pagination-bullet {
  background-color: white;
  opacity: 0.6;
  width: 10px;
  height: 10px;
}

.modal .swiper-pagination-bullet-active {
  opacity: 1;
  background-color: white;
}

/* Gallery Grid Styles */
.detail__gallery {
  cursor: pointer;
  margin-bottom: 2rem;
}

.detail__gallery:hover {
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.detail__gallery.gallery--no-photos {
  cursor: default;
  background-color: #f8f9fa;
  border: 2px dashed #dee2e6;
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
}

.detail__gallery.gallery--no-photos:hover {
  opacity: 1;
}

.gallery__placeholder p {
  color: #6c757d;
  font-size: 1rem;
  margin: 0;
}

.card-form__countdown {
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 2rem;
  display: flex;
  justify-content: space-between;
  margin-top: 0.8rem;
}
.card-form__countdown--done {
  color: var(--color-grey-400);
}
.card-form__countdown a {
  color: var(--color-brick-500);
}
.card-form__password-wrapper {
  position: relative;
  margin-bottom: 0.8rem;
}
.card-form__toggle-password {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
}
.card-form__forgot-password {
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 2rem;
  text-align: right;
  text-decoration: none;
  display: block;
  color: var(--color-brick-500);
}
.card-form__button {
  width: 100%;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 2rem;
  padding: 1.8rem 1.4rem;
}
.card-form__button--google {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 0.1rem solid #ccc;
  background-color: white;
  color: #333;
}
.card-form__back {
  margin-bottom: 2.4rem;
}
.card-form__back button {
  cursor: pointer;
  display: block;
}
.card-form__divider {
  font-family: var(--font-inter);
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 2rem;
  text-align: center;
  color: var(--color-grey-400);
  margin-top: 2.4rem;
  margin-bottom: 2.4rem;
}
.card-form__register {
  font-family: var(--font-inter);
  display: flex;
  flex-direction: column;
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 2rem;
  text-align: center;
  color: var(--color-grey-700);
  margin-top: 2.4rem;
}
.card-form__register a {
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 2rem;
  text-align: center;
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  color: var(--color-brick-500);
}
.card-form--profile, .card-form--filter {
  overflow: visible;
  position: relative;
  min-height: unset;
}
@media (max-width: calc(768px - 0.02px)) {
  .card-form--profile, .card-form--filter {
    border-radius: 0;
    border: none;
  }
}
.card-form--profile .card-form__form, .card-form--filter .card-form__form {
  padding-top: 2.4rem;
}
.card-form--profile .card-form__text, .card-form--filter .card-form__text {
  margin-top: 2.4rem;
  text-align: center;
}
.card-form--profile .card-form__button.gsi-material-button, .card-form--filter .card-form__button.gsi-material-button {
  margin-top: 1.6rem;
}
.card-form--profile .card-form__back, .card-form--filter .card-form__back {
  margin-bottom: 2.4rem;
}
.card-form--profile .alert, .card-form--filter .alert {
  left: 0;
}
.card-form--profile .alert__title, .card-form--filter .alert__title {
  font-size: 1.4rem;
}
@media (max-width: calc(768px - 0.02px)) {
  .card-form--filter {
    background-color: var(--color-grey-100);
    padding-top: 1.2rem;
    box-shadow: 0px 6.65px 5.32px rgba(15, 23, 42, 0.0283), 0px 22.34px 17.87px rgba(15, 23, 42, 0.0417), 0px 100px 80px rgba(15, 23, 42, 0.07);
    position: absolute;
    transform: translateY(-130%);
    transition: transform 0.4s ease;
    max-height: 70vh;
  }
  .card-form--filter.open {
    transform: translateY(0);
  }
  .card-form--filter form {
    max-height: calc(70vh - 36px);
    overflow-y: auto;
  }
}
@media (max-width: calc(768px - 0.02px)) {
  .card-form--auth {
    box-shadow: unset;
  }
}
.card-testimonial, .card-cta {
  padding: 2.4rem;
}
.card-cta {
  text-align: center;
  max-width: 64rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .card-cta .headline {
    margin-bottom: 2rem;
    padding: 0 10rem;
  }
}
.card-testimonial__rating {
  display: flex;
  gap: 1.6rem;
  margin-bottom: 1.6rem;
}
.card-testimonial__rating-number {
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 2rem;
  line-height: 3.2rem;
}
.card-testimonial__rating-stars {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.card-testimonial__rating-stars img {
  height: 2rem;
}
.card-testimonial__review {
  font-family: var(--font-inter);
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 2.4rem;
  margin-bottom: 2rem;
}
.card-testimonial__author {
  display: flex;
  gap: 1.6rem;
  align-items: center;
  font-family: var(--font-inter);
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 2.4rem;
}
.card-testimonial__author img {
  width: 3.2rem;
  height: 3.2rem;
  object-fit: cover;
  border-radius: 50%;
}
.card-icon {
  display: flex;
  align-items: start;
  gap: 1.2rem;
  padding: 1.6rem;
  margin-bottom: 1.6rem;
}
.card-icon__icon {
  padding: 0.3rem;
}
.card-icon__text h3 {
  margin-bottom: 1.2rem;
}
.card-icon__text p {
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 2rem;
  color: var(--color-grey-700);
}
.card-location {
  display: flex;
}
.card-location__thumbnail {
  display: block;
  position: relative;
  height: 16rem;
  background-image: image-url("/assets/images/card-bae2baae.png");
  background-position: center center;
  background-size: cover;
}
.card-location__thumbnail .card-location__categories {
  display: flex;
  flex-wrap: wrap;
  position: absolute;
  padding-left: 1.6rem;
  padding-right: 1.6rem;
  bottom: 1.2rem;
}
@media (min-width: 768px) {
  .card-location__thumbnail {
    height: 20rem;
  }
}
@media (min-width: 768px) {
  .card-location__content {
    padding: 2.4rem;
  }
}
.card-location > div:first-child {
  flex: 1;
}
.card-location__thumbnail {
  display: none;
}
.card-location__thumbnail-info {
  display: flex;
  gap: 1.6rem;
}
.card-location__thumbnail-info__thumbnail {
  height: 9.2rem;
  width: 9.2rem;
  border-radius: 0.6rem;
  background-image: image-url("/assets/images/card-bae2baae.png");
  background-position: center center;
  background-size: cover;
}
.card-location__thumbnail-info__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.card-location__content {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  font-family: var(--font-inter);
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.6rem;
}
.card-location__categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.card-location__title {
  font-family: var(--font-rethink);
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 2.4rem;
}
.card-location__grade-rating {
  display: flex;
  gap: 0.8rem;
}
.card-location__grade-rating .grade {
  display: flex;
  gap: 0.6rem;
}
.card-location__grade-rating .grade-icon {
  height: 1.6rem;
}
.card-location__grade-rating .rating {
  display: flex;
  gap: 0.4rem;
}
.card-location__grade-rating .rating__score {
  color: var(--color-grey-900);
}
.card-location__grade-rating .rating__total {
  color: var(--color-grey-400);
}
.card-location__distance-time {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.card-location__description {
  color: var(--color-grey-500);
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 2rem;
}
.card-location__buttons {
  display: flex;
  gap: 0.8rem;
  width: 100%;
}
.card-location__buttons > .btn:first-child {
  flex: 1;
}
@media (min-width: 1280px) {
  .card-location {
    max-width: 29.5rem;
  }
}
.card__line-divider hr {
  border: 0.5px solid var(--color-grey-200);
}

.swiper-slide .card-location {
  padding: 0;
}
.swiper-slide .card-location__thumbnail {
  display: block;
}
.swiper-slide .card-location__content {
  padding: 1.6rem;
}
@media (min-width: 768px) {
  .swiper-slide .card-location__content {
    padding: 2.4rem;
  }
}

.card-location-list {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.card-location-list .card-location {
  box-shadow: none;
}
@media (min-width: 768px) {
  .card-location-list .card-location {
    box-shadow: 0 0 0 0.1rem var(--color-grey-200);
    flex: 0 1 calc(30% - 1rem);
  }
  .card-location-list .card-location > div:last-child {
    display: none;
  }
  .card-location-list .card-location__thumbnail {
    display: block;
  }
  .card-location-list .card-location__thumbnail-info {
    display: block;
  }
  .card-location-list .card-location__thumbnail-info__thumbnail {
    display: none;
  }
  .card-location-list .card-location__thumbnail-info__info {
    flex: unset;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
  }
}

@media (min-width: 1280px) {
  .card-location-list .card-location {
    flex: 0 1 calc(31.999% - 1rem);
  }
}
@media (min-width: 768px) {
  .card-location-list {
    display: flex;
    flex-wrap: wrap;
  }
}

@media (min-width: 768px) {
  .card-benefits-list {
    display: flex;
    column-gap: 1.6rem;
    flex-wrap: wrap;
  }
}
.card-benefits-list > .card {
  flex: 0 1 calc(49% - 1rem);
}

@media (min-width: 768px) and (max-width: calc(1180px - 0.02px)) {
  .card-location-col .card-location {
    flex: 0 1 calc(49% - 1.5rem);
  }
}
@media (min-width: 2xl) {
  .card-location-col .card-location {
    flex: unset;
    max-width: unset;
    width: 30rem;
  }
}

.filter-bar {
  position: relative;
  z-index: 99 !important;
  display: flex;
  align-items: center;
  padding: 1.2rem 0 1.2rem 1.6rem;
  font-size: 1.2rem;
  line-height: 2rem;
  border-bottom: 0.1rem solid var(--color-grey-200);
  overflow: visible;
}
@media (min-width: 768px) {
  .filter-bar {
    border-bottom: unset;
    padding: 0;
  }
}
.filter-bar__button {
  padding: 0.6rem 1.4rem;
  border: 1px solid var(--color-grey-200);
  border-radius: 0.6rem;
  background: transparent;
  cursor: pointer;
  white-space: nowrap;
  font-weight: 700;
}
@media (min-width: 768px) {
  .filter-bar__button {
    display: none;
  }
}
.filter-bar__divider {
  width: 1px;
  height: 2rem;
  margin-left: 1.6rem;
  background-color: var(--color-grey-300);
}
@media (min-width: 768px) {
  .filter-bar__divider {
    display: none;
  }
}
.filter-bar__tags {
  display: flex;
  gap: 0.8rem;
  overflow-x: auto;
  overflow-y: visible;
  padding-top: 0.2rem;
  padding-bottom: 0.25rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.filter-bar__tags::-webkit-scrollbar {
  display: none;
}
@media (min-width: 768px) {
  .filter-bar__tags {
    flex-wrap: wrap;
  }
}
.filter-bar__tag {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  background-color: var(--color-grey-200);
  border-radius: 999px;
  white-space: nowrap;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}
.filter-bar__tag:hover {
  background-color: var(--color-grey-300);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}
.filter-bar__tag:active {
  transform: translateY(0);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}
.filter-bar__tag:first-child {
  margin-left: 1.6rem;
}
@media (min-width: 768px) {
  .filter-bar__tag:first-child {
    margin-left: 0;
  }
}
.filter-bar__tag-icon {
  height: 1.4rem;
  width: 1.4rem;
  max-width: unset;
  transition: transform 0.2s ease;
}
.filter-bar__tag:hover .filter-bar__tag-icon {
  transform: scale(1.1);
}
.filter-bar__tag--empty {
  background-color: var(--color-grey-100);
  color: var(--color-grey-500);
  cursor: default;
  font-style: italic;
}
.filter-bar__tag--empty:hover {
  background-color: var(--color-grey-100);
  transform: none;
  box-shadow: none;
}

.filter > *:not(:first-child) {
  margin-top: 1.6rem;
}
@media (min-width: 768px) {
  .filter > *:not(:first-child) {
    margin-top: 2rem;
  }
}
.filter__heading {
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 2rem;
}
.filter__label {
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 2rem;
  color: var(--color-grey-700);
  margin-bottom: 0.8rem;
}
.filter__options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.filter__options > * {
  flex: 0 0 48%;
}
@media (min-width: 768px) and (max-width: calc(1200px - 0.02px)) {
  .filter__options > * {
    flex: 0 0 100%;
  }
}
@media (max-width: calc(768px - 0.02px)) {
  .filter__options--sort > * {
    flex: 1 1 0;
    max-width: 25%;
  }
}
.filter__choice {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.filter__input-checkbox, .filter__input-radio {
  display: none;
}
.filter__input-checkbox:checked + .btn, .filter__input-radio:checked + .btn {
  color: var(--color-white);
  background-color: var(--color-brick-500);
}
.filter__label-checkbox, .filter__label-radio {
  padding: 0.5rem 0.75rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  background: #f9f9f9;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.filter__label-checkbox:hover, .filter__label-radio:hover {
  background-color: #efefef;
}
.filter__price-range {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.filter__price-range.input {
  background-color: transparent;
}
.filter__price-range.input input {
  background-color: white;
  border: 1px solid var(--color-grey-300);
}
@media (max-width: calc(768px - 0.02px)) {
  .filter__price-range.input input {
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
    padding-right: 1.2rem;
  }
}
.filter__separator {
  font-weight: bold;
  color: #555;
}
.filter__actions, .filter__actions--mobile {
  display: flex;
  justify-content: end;
  align-items: center;
}
.filter__actions {
  gap: 1.6rem;
}
.filter__actions--mobile {
  margin-top: 2rem;
  padding-top: 1.2rem;
  gap: 0.8rem;
}
.filter__actions--mobile .btn-transparent {
  color: var(--color-grey-500);
}
.filter__actions--mobile .btn-block {
  flex: 0 0 73%;
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .filter__actions--mobile {
    display: none;
  }
}
.filter__link {
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: unset;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 2rem;
  color: var(--color-grey-400);
}
.filter__link--highlighted {
  color: var(--color-brick-500);
  font-weight: 600;
}
.filter .card__line-divider hr {
  border: 0.5px solid var(--color-grey-300);
}

.footer {
  padding: 0 2.4rem;
  border-top: 1px solid var(--color-grey-200);
  background-color: var(--color-grey-050);
}
.footer > div {
  padding-top: 2.4rem;
  padding-bottom: 2.4rem;
}
.footer__logo {
  margin-bottom: 2.4rem;
}
.footer__logo img {
  height: 3.6rem;
}
@media (min-width: 768px) {
  .footer__logo img {
    margin: 0 auto;
  }
}
.footer__content {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}
.footer__content > div {
  padding-left: 3.6rem;
  border-left: 1px solid var(--color-grey-300);
}
@media (min-width: 768px) {
  .footer__content > div {
    border-left: unset;
  }
}
@media (min-width: 768px) {
  .footer__content {
    align-items: center;
    gap: 4rem;
  }
}
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2rem;
  color: var(--color-grey-500);
}
.footer__contact .title,
.footer__contact .subtitle {
  font-size: 1.4rem;
  line-height: 2.4rem;
}
.footer__contact .title {
  font-weight: 600;
  margin-bottom: 1.2rem;
}
.footer__contact .subtitle {
  font-weight: 400;
  margin-bottom: 1.6rem;
}
.footer__contact .links {
  display: flex;
  flex-direction: column;
  color: var(--color-grey-500);
}
.footer__contact .links a:not(:last-child) {
  margin-bottom: 1.6rem;
}
@media (min-width: 768px) {
  .footer__contact .links {
    flex-direction: row;
    gap: 2.4rem;
  }
}
@media (min-width: 768px) {
  .footer__contact {
    text-align: center;
  }
}
.footer__copyright {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--color-grey-300);
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 2rem;
  color: var(--color-grey-500);
}
.footer--login .footer__logo img {
  margin: 0 auto;
}
.footer--login .footer__nav {
  justify-content: center;
  border: none;
}
.footer--login .footer__content {
  align-items: center;
}
.footer--login .footer__contact {
  text-align: center;
  border: none;
}
.footer--login .footer__contact .links {
  flex-direction: row;
}

.gallery {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.gallery__item {
  position: relative;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 0.5rem;
  object-fit: cover;
}
.gallery__item--main {
  width: 100%;
}
.gallery__item--main img {
  max-height: 400px;
}
.gallery__item--half {
  flex: 0 0 calc(50% - 0.5rem);
  height: 144.5px;
}
.gallery__item--quarter {
  flex: 0 0 calc(50% - 0.5rem);
  height: 144.5px;
}
.gallery__item--overlay .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  color: #fff;
  font-family: var(--font-inter);
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 2.4rem;
  text-align: center;
}
@media (min-width: 768px) {
  .gallery__item--overlay .overlay {
    font-size: 3.2rem;
    line-height: 4.8rem;
  }
}
.gallery__row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.gallery__quarter-wrapper {
  display: flex;
  flex-direction: row;
  flex: 0 0 calc(50% - 0.5rem);
  gap: 1rem;
}
@media (max-width: 768px) {
  .gallery {
    flex-direction: row;
    height: 167px;
  }
  .gallery__item--main {
    flex: 0 0 calc(50% - 0.5rem);
    height: 100%;
  }
  .gallery__item--main img {
    max-height: 100%;
    height: 100%;
  }
  .gallery__row {
    flex: 0 0 calc(50% - 0.5rem);
    max-height: 100%;
  }
  .gallery__item--half {
    flex: 0 0 100%;
    max-height: calc(50% - 0.5rem);
  }
  .gallery__quarter-wrapper {
    flex: 0 0 100%;
    max-height: calc(50% - 0.5rem);
  }
  .gallery__item--quarter {
    max-height: 100%;
  }
}

.grid-icon-text {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
@media (min-width: 768px) {
  .grid-icon-text {
    flex-wrap: nowrap;
    justify-content: center;
    gap: 3.2rem;
  }
}
.grid-icon-text__item {
  flex: 1 1 calc(25% - 1rem);
  width: 82.5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--font-rethink);
  font-weight: 600;
  font-size: 12px;
  line-height: 20px;
}
.grid-icon-text__item img {
  padding: 0.8rem;
}

.grid-icon-text__item p {
  text-align: center;
}
@media (min-width: 768px) {
  .grid-icon-text__item {
    flex: unset;
  }
}
@media (min-width: 768px) {
  .grid-card-on-desktop {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    gap: 3.2rem;
  }
}
@media (min-width: 768px) {
  .grid-card-on-desktop > div {
    flex: 0 1 calc(30% - 1rem);
  }
}
@media (min-width: 1280px) {
  .grid-card-on-desktop > div {
    flex: 0 1 calc(31.999% - 1rem);
  }
}

.image-user {
  object-fit: cover;
  border-radius: 50%;
}

.input {
  width: 100%;
  position: relative;
  background-color: white;
  border-radius: 0.6rem;
}
.input input {
  width: 100%;
  padding: 1.1rem 1.6rem 1.1rem 1.6rem;
  border: 0.5px solid #ccc;
  outline: none;
  color: black;
  border-radius: 0.6rem;
  font-family: var(--font-inter);
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2.4rem;
}
.input input::placeholder {
  color: var(--color-grey-400);
}
.input input:focus {
  border-color: #007bff;
}
.input input:first-child {
  border-top-left-radius: 0.6rem;
  border-bottom-left-radius: 0.6rem;
}
@media (min-width: 768px) {
  .input input {
    padding: 0.8rem 1.2rem 0.8rem 1.4rem;
  }
}
.input-with-icon {
  --icon-width: 2.4rem;
}
@media (min-width: 768px) {
  .input-with-icon {
    --icon-width: 2rem;
  }
}
.input-with-icon .icon {
  position: absolute;
  z-index: 9;
  width: var(--icon-width);
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 1.6rem;
  color: #888;
}
.input-with-icon input {
  padding: 1.1rem 1.6rem 1.1rem calc(var(--icon-width) + 1.6rem);
}
@media (min-width: 768px) {
  .input-with-icon input {
    padding: 0.8rem 1.2rem 0.8rem calc(var(--icon-width) + 1.4rem);
  }
}
.input-with-icon--end .icon {
  left: unset;
  right: 1rem;
}
.input-with-icon--end .icon-btn {
  cursor: pointer;
  pointer-events: all;
}
.input-with-icon--end input {
  padding: 1.1rem 1.6rem 1.1rem 1.6rem;
}
.input.dropdown {
  position: relative;
  font-family: inherit;
}
.input.dropdown .dropdown__list {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 10;
  background-color: #fff;
  border-radius: 0.6rem;
  box-shadow: 0 1rem 1.5rem rgba(0, 0, 0, 0.1);
  list-style: none;
  margin: 0;
  padding: 0.6rem;
}
.input.dropdown .dropdown__list--visible {
  display: block;
}
@media (max-width: calc(768px - 0.02px)) {
  .input.dropdown .dropdown__list--visible.hide-mobile {
    display: none;
  }
}
.input.dropdown .dropdown__item {
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 2.4rem;
  color: var(--color-grey-900);
  padding: 0.4rem 0.8rem;
  cursor: pointer;
  transition: background-color 0.2s;
}
.input.dropdown .dropdown__item:hover {
  background-color: #f3f4f6;
}
.input .gsi-material-button-icon {
  position: absolute;
  height: 2.4rem;
  width: 2.4rem;
  top: 50%;
  right: 1.6rem;
  transform: translateY(-50%);
}

.search-form {
  width: 100%;
  background-color: var(--color-brick-500);
  padding: 1.6rem;
  border: none;
}
.search-form:first-child {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: calc(768px - 0.02px)) {
  .search-form {
    z-index: 999;
  }
}
@media (min-width: 768px) {
  .search-form {
    background-color: white !important;
    padding: 0 !important;
  }
}
.search-form-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .search-form-wrapper {
    flex-direction: row;
    align-items: center;
    width: 60%;
  }
}
.search-form--submit {
  display: none;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  padding: 0.8rem 1.6rem;
  border: 0.1rem solid var(--color-brick-500);
  font-size: 1.4rem;
  line-height: 2.4rem;
}
@media (min-width: 768px) {
  .search-form--submit {
    display: flex;
  }
}
.search-form--location {
  position: absolute;
  top: 7.9rem;
  padding-top: 0;
  z-index: 9 !important;
  transform: translateY(-200%);
  transition: transform 0.4s ease, opacity 0.3s ease;
}
.search-form--location.open {
  transform: translateY(-0.5px);
}
@media (min-width: 768px) {
  .search-form--location {
    position: static;
    top: unset;
    transform: translateY(0);
  }
}
.search-form input {
  font-size: 1.6rem;
  outline: none;
}
@media (min-width: 768px) {
  .search-form--activity {
    flex: 0 0 60%;
  }
}
@media (min-width: 1280px) {
  .search-form--activity {
    flex: 0 0 65%;
  }
}
@media (min-width: 768px) {
  .search-form--activity .input-with-icon input {
    border-width: 0.5px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
}
@media (min-width: 768px) {
  .search-form--location {
    flex: 1 0;
  }
}
@media (min-width: 768px) {
  .search-form--location .input-with-icon input {
    border-width: 0.5px;
    border-radius: 0;
  }
}

@media (min-width: 768px) {
  .list-icon-text-wrapper {
    width: 100%;
    background-color: var(--color-brick-500);
    display: flex;
    justify-content: center;
  }
}
@media (min-width: 768px) {
  .list-icon-text {
    display: flex;
    width: 100%;
    justify-content: center;
    gap: 3.2rem;
    padding: 2.4rem 6.4rem;
    color: white;
  }
  .list-icon-text > * {
    flex: 0 0 33%;
  }
}
@media (min-width: 1280px) {
  .list-icon-text {
    width: 75%;
  }
}
.list-icon-text__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 12px;
  line-height: 24px;
}
.list-icon-text__item:not(:last-child) {
  margin-bottom: 0.8rem;
}
@media (min-width: 768px) {
  .list-icon-text__item:not(:last-child) {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .list-icon-text__item-icon {
    display: none;
  }
}
.list-icon-text__item-icon--white {
  display: none;
}
@media (min-width: 768px) {
  .list-icon-text__item-icon--white {
    display: block;
  }
}

.marquee-wrapper {
  overflow: visible;
  width: 100%;
}
.marquee-track {
  display: flex;
  width: fit-content;
  animation: scroll-left 20s linear infinite;
}
.marquee-track .card {
  width: 36rem;
  margin-right: 3.2rem;
  flex-shrink: 0;
  box-shadow: 0 0.4rem 1rem rgba(0, 0, 0, 0.05);
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.98);
  justify-content: center;
  align-items: center;
  z-index: 99999999;
}
.modal.open {
  display: flex;
}
.modal .close-btn {
  position: absolute;
  top: 10px;
  right: 20px;
  background: transparent;
  color: white;
  font-size: 3rem;
  border: none;
  cursor: pointer;
  z-index: 2;
}
@media (min-width: 768px) {
  .modal .close-btn {
    font-size: 4rem;
  }
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  color: white;
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
@media (min-width: 768px) {
  .navbar {
    background-color: white !important;
    border-bottom: 1px solid var(--color-grey-200);
  }
}
.navbar-wrapper {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
@media (min-width: 768px) {
  .navbar-wrapper {
    flex-direction: row;
    align-items: center;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 1.8rem 6.4rem;
  }
}
@media (min-width: 768px) {
  .navbar__hamburger {
    display: none;
  }
}
.navbar__hamburger span {
  width: 100%;
}
.navbar__logo, .navbar__form {
  background-color: var(--color-brick-500);
  z-index: 999;
  padding: 1.6rem;
  border: none;
}
.navbar__logo:first-child, .navbar__form:first-child {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .navbar__logo, .navbar__form {
    background-color: white !important;
    padding: 0 !important;
  }
}
.navbar__logo img {
  height: 3.6rem;
}
.navbar__logo--white {
  display: block;
}
@media (min-width: 768px) {
  .navbar__logo--white {
    display: none;
  }
}
.navbar__logo--regular {
  display: none;
}
@media (min-width: 768px) {
  .navbar__logo--regular {
    display: block;
  }
}
.navbar__links {
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.6rem;
  color: var(--color-grey-600);
  display: none;
}
@media (min-width: 1280px) {
  .navbar__links {
    display: block;
  }
}
.navbar__auth {
  display: none;
  align-items: center;
  gap: 1rem;
}
.navbar__auth > .btn {
  font-size: 1.4rem;
  line-height: 1.6rem;
  padding: 1.3rem 1.4rem;
}
@media (min-width: 768px) {
  .navbar__auth {
    display: flex;
    justify-content: end;
  }
}
@media (min-width: 1280px) {
  .navbar__auth {
    gap: 0.8rem;
  }
}
.navbar-expand {
  position: fixed;
  top: var(--navbar-height);
  left: 0;
  right: 0;
  box-shadow: 0px 6.65px 5.32px rgba(15, 23, 42, 0.0283), 0px 22.34px 17.87px rgba(15, 23, 42, 0.0417), 0px 100px 80px rgba(15, 23, 42, 0.07);
  background-color: white;
  color: var(--color-grey-800);
  z-index: 999;
  padding-top: 1.6rem;
  transform: translateY(-200%);
  pointer-events: none;
  transition: transform 0.4s ease, opacity 0.3s ease;
}

/* Original hide rule - now superseded by more comprehensive rule at end of file */
.navbar-expand.open {
  transform: translateY(0);
  pointer-events: auto;
}
.navbar-expand--categories, .navbar-expand--locations {
  top: var(--double-navbar-height);
  padding-bottom: 1.6rem;
}

/* CRITICAL: Ensure mobile dropdowns are absolutely hidden on desktop - placed at end for highest precedence */
@media (min-width: 768px) {
  .navbar-expand,
  .navbar-expand.open,
  .navbar-expand--categories,
  .navbar-expand--categories.open,
  .navbar-expand--locations,
  .navbar-expand--locations.open {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    transform: translateY(-200%) !important;
    pointer-events: none !important;
    height: 0 !important;
    overflow: hidden !important;
    max-height: 0 !important;
    position: absolute !important;
    left: -9999px !important;
  }
}
.navbar-expand__item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.2rem 1.6rem;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2.4rem;
}
.navbar-expand__item img {
  height: 2.4rem;
}
.navbar-expand__item .btn-cta {
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 2.4rem;
}
@media (min-width: 1280px) {
  .navbar-expand {
    box-shadow: unset;
  }
}

.navbar-login {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 4rem;
  background-color: white;
}
@media (min-width: 768px) {
  .navbar-login {
    background-color: var(--color-grey-100);
  }
}

.sticky-bottom {
  position: sticky;
  bottom: 0;
  z-index: 999999;
  display: flex;
  gap: 1.6rem;
  padding: 2.4rem;
  background: white;
  box-shadow: 0px -6.65px 5.32px 0px rgba(15, 23, 42, 0.03), 0px -22.34px 17.87px 0px rgba(15, 23, 42, 0.04), 0px -100px 80px 0px rgba(15, 23, 42, 0.07);
}
.sticky-bottom .btn-heart {
  padding: 1.3rem;
}
.sticky-bottom .btn-heart img {
  width: 2.1rem;
  height: 2.1rem;
  max-width: unset;
}
.sticky-bottom .btn--lg {
  font-size: 1.6rem !important;
  line-height: 2rem !important;
}

.swiper {
  width: 100%;
  max-width: 600px;
  margin: auto;
  overflow: visible !important;
}
.swiper-container {
  overflow: hidden;
}
.swiper-slide {
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}
@media (min-width: 768px) {
  .swiper-on-mobile.swiper {
    margin-left: unset;
    margin-right: unset;
    width: 100%;
    max-width: unset;
  }
  .swiper-on-mobile .swiper-wrapper {
    transform: unset;
    max-width: unset;
    width: 100%;
  }
  .swiper-on-mobile .swiper-wrapper .swiper-slide {
    width: unset;
    flex-shrink: unset;
  }
}
.swiper-gallery {
  --swiper-theme-color: white;
  --swiper-navigation-size: 24px;
  max-width: unset;
}
.swiper-gallery .swiper-slide {
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  .swiper-gallery .swiper-slide img {
    max-height: 88vh;
  }
}
.swiper-gallery .swiper-wrapper {
  align-items: center !important;
}
@media (min-width: 768px) {
  .swiper-gallery {
    --swiper-navigation-size: 44px;
  }
}

.d-none {
  display: none;
}

@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
}

.d-block {
  display: block;
}

@media (min-width: 768px) {
  .d-md-block {
    display: block !important;
  }
}

.d-flex {
  display: flex;
}

@media (min-width: 768px) {
  .d-md-flex {
    display: flex !important;
  }
}

.justify-content-between {
  justify-content: space-between;
}

.align-items-center {
  align-items: center;
}

.overflow-hidden {
  overflow: hidden !important;
}

.text-center {
  text-align: center !important;
}

.text-start {
  text-align: start !important;
}

.text-end {
  text-align: end !important;
}

.m-0 {
  margin: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.f-400 {
  font-weight: 400;
}

.f-500 {
  font-weight: 500;
}

/*# sourceMappingURL=main.css.map */






/* Old CSS down below */





 .old_css_wrapper {
	font-family: Calibri, sans-serif ;
}

/* Like Button Styles */
.old_css_wrapper .like-button {
  display: inline-block;
  margin-left: 10px;
}

.old_css_wrapper .like-button form {
  display: inline-block;
  margin: 0;
  padding: 0;
}

.old_css_wrapper .btn-like {
  background: none !important;
  border: none !important;
  cursor: pointer;  
  font-size: 1.5rem;
  padding: 5px 10px;
  border-radius: 20px;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.old_css_wrapper .btn-like:hover {
  background-color: rgba(0, 0, 0, 0.05) !important;
  transform: scale(1.1);
}

.old_css_wrapper .btn-like.liked {
  color: #e74c3c !important;
}

.old_css_wrapper .btn-like:not(.liked) {
  color: #999 !important;
}

.old_css_wrapper .btn-like:not(.liked):hover {
  color: #e74c3c !important;
}

/* Search Input Fixes */
.old_css_wrapper .search-filter {
  display: block !important;
  margin-bottom: 1rem !important;
}

.old_css_wrapper .search-input {
  width: 100% !important;
  padding: 0.5rem !important;
  border: 1px solid #ddd !important;
  border-radius: 4px !important;
  font-size: 1rem !important;
  background: white !important;
  box-sizing: border-box !important;
  display: block !important;
}

/* Price Range Filter Fixes */
.old_css_wrapper .price-range-filter {
  display: block !important;
}

.old_css_wrapper .price-inputs {
  display: flex !important;
  align-items: center !important;
  gap: 1rem !important;
  flex-wrap: nowrap !important;
}

.old_css_wrapper .price-input-group {
  position: relative !important;
  flex: 1 !important;
  min-width: 80px !important;
}

.old_css_wrapper .price-input {
  width: 100% !important;
  padding: 0.5rem 0.5rem 0.5rem 1.5rem !important;
  border: 1px solid #ddd !important;
  border-radius: 4px !important;
  font-size: 1rem !important;
  background: white !important;
  box-sizing: border-box !important;
}

.old_css_wrapper .currency-symbol {
  position: absolute !important;
  left: 0.5rem !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  color: #666 !important;
  pointer-events: none !important;
}

.old_css_wrapper .price-separator {
  color: #666 !important;
  white-space: nowrap !important;
}

/* ==========================================
   ADMIN PANEL STYLING
   ========================================== */

/* Admin Layout */
.admin-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
  background-color: #f8f9fa;
  min-height: 100vh;
}

.admin-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 30px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.admin-header h1 {
  margin: 0 0 15px 0;
  font-size: 2.5em;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.admin-user-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
}

.admin-user-details p {
  margin: 0;
  font-size: 1.1em;
  opacity: 0.95;
}

/* Admin Buttons */
.admin-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.admin-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  color: white;
  text-decoration: none;
}

.admin-btn-danger {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
}

.admin-btn-success {
  background: linear-gradient(135deg, #51cf66 0%, #40c057 100%);
}

.admin-btn-secondary {
  background: linear-gradient(135deg, #868e96 0%, #6c757d 100%);
}

.admin-btn-outline {
  background: transparent;
  border: 2px solid #667eea;
  color: #667eea;
}

.admin-btn-outline:hover {
  background: #667eea;
  color: white;
}

/* Admin Cards */
.admin-card {
  background: white;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid #e9ecef;
}

.admin-card h2, .admin-card h3, .admin-card h4, .admin-card h5 {
  color: #495057;
  margin-top: 0;
  margin-bottom: 16px;
}

.admin-card h2 {
  font-size: 1.75em;
  font-weight: 700;
  color: #2d3748;
  border-bottom: 2px solid #e9ecef;
  padding-bottom: 12px;
}

/* Admin Forms */
.admin-form {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid #e9ecef;
}

.admin-form h1 {
  color: #2d3748;
  margin-bottom: 24px;
  font-size: 2em;
  font-weight: 700;
}

.admin-form-group {
  margin-bottom: 20px;
}

.admin-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #4a5568;
  font-size: 14px;
}

.admin-form input[type="search"],
.admin-form input[type="text"],
.admin-form input[type="email"],
.admin-form textarea,
.admin-form select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background-color: #ffffff;
}

.admin-form input:focus,
.admin-form textarea:focus,
.admin-form select:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* Admin Location List */
.admin-locations-list {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid #e9ecef;
}

.admin-location-item {
  padding: 20px 24px;
  border-bottom: 1px solid #e9ecef;
  transition: background-color 0.2s ease;
}

.admin-location-item:last-child {
  border-bottom: none;
}

.admin-location-item:hover {
  background-color: #f8f9fa;
}

.admin-location-link {
  color: #667eea;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: color 0.2s ease;
}

.admin-location-link:hover {
  color: #5a67d8;
  text-decoration: underline;
}

/* Admin Stats/Info Sections */
.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.admin-stat-card {
  background: white;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid #e9ecef;
}

.admin-stat-value {
  font-size: 2em;
  font-weight: 700;
  color: #667eea;
  margin-bottom: 8px;
}

.admin-stat-label {
  color: #6c757d;
  font-size: 14px;
  font-weight: 500;
}

/* Admin Actions */
.admin-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #e9ecef;
}

/* Admin Photos Section */
.admin-photos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.admin-photo-item {
  background: white;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid #e9ecef;
  transition: transform 0.2s ease;
}

.admin-photo-item:hover {
  transform: translateY(-2px);
}

.admin-photo-item.primary {
  border-color: #51cf66;
  background: linear-gradient(135deg, #f8fff9 0%, #f0fff4 100%);
}

.admin-photo-item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 12px;
}

.admin-photo-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
}

.admin-photo-status.primary {
  color: #40c057;
}

/* Admin Navigation */
.admin-nav {
  display: flex;
  gap: 16px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.admin-nav-link {
  color: #667eea;
  text-decoration: none;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.admin-nav-link:hover {
  background-color: #667eea;
  color: white;
  text-decoration: none;
}

/* Admin Info Sections */
.admin-info-section {
  margin-bottom: 30px;
}

.admin-info-section h5 {
  color: #2d3748;
  font-size: 1.1em;
  font-weight: 700;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid #e2e8f0;
}

.admin-info-section p {
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .admin-container {
    padding: 15px;
  }

  .admin-header {
    padding: 20px;
  }

  .admin-header h1 {
    font-size: 2em;
  }

  .admin-user-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .admin-actions {
    flex-direction: column;
  }

  .admin-btn {
    justify-content: center;
  }

  .admin-photos-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================= */
/* FINAL OVERRIDE: ABSOLUTELY HIDE MOBILE DROPDOWNS ON DESKTOP */
/* This rule is placed at the end for maximum CSS precedence */
/* ========================================= */
@media (min-width: 767.98px) {
  .navbar-expand,
  .navbar-expand.open,
  .navbar-expand--categories,
  .navbar-expand--categories.open,
  .navbar-expand--locations,
  .navbar-expand--locations.open {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    transform: translateY(-200%) !important;
    pointer-events: none !important;
    height: 0 !important;
    max-height: 0 !important;
    overflow: hidden !important;
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    z-index: -9999 !important;
  }
}

/* Extra specific rules for the problematic 768-1023px range */
@media (min-width: 768px) and (max-width: 1023px) {
  .navbar-expand,
  .navbar-expand.open,
  .navbar-expand--categories,
  .navbar-expand--categories.open,
  .navbar-expand--locations,
  .navbar-expand--locations.open {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    transform: translateY(-200%) !important;
    pointer-events: none !important;
    height: 0 !important;
    max-height: 0 !important;
    overflow: hidden !important;
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    z-index: -9999 !important;
  }
}

/* Double override for extra safety */
@media (min-width: 768px) {
  div.navbar-expand--categories.open,
  div.navbar-expand--categories,
  div.navbar-expand--locations.open,
  div.navbar-expand--locations {
    display: none !important;
  }
}

/* ULTRA-SPECIFIC RULE for the exact problematic range 768-1023px */
@media (min-width: 768px) and (max-width: 1023.98px) {
  body .navbar-expand,
  body .navbar-expand.open,
  body .navbar-expand--categories,
  body .navbar-expand--categories.open,
  body .navbar-expand--locations,
  body .navbar-expand--locations.open,
  html body .navbar-expand,
  html body .navbar-expand.open,
  html body .navbar-expand--categories,
  html body .navbar-expand--categories.open,
  html body .navbar-expand--locations,
  html body .navbar-expand--locations.open {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    transform: translateY(-300%) !important;
    pointer-events: none !important;
    height: 0 !important;
    max-height: 0 !important;
    min-height: 0 !important;
    overflow: hidden !important;
    position: absolute !important;
    left: -10000px !important;
    top: -10000px !important;
    right: -10000px !important;
    bottom: -10000px !important;
    z-index: -99999 !important;
    clip: rect(0, 0, 0, 0) !important;
    border: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    white-space: nowrap !important;
  }
}