@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&display=swap");
:root {
  
  --headings: #0f2b46;
  --background: #f5f7fb;
  --paragraph: #4a5568;
  --highlight-light: #ffffff;
  --highlight-dark: #e6eef7;
  --waves-color: #0ea5e9;
  --accent-amber: #f5c94f;
  --accent-muted: #c0d7e9;

  
  --h1: 5.5rem;
  --h2: 4rem;
  --h3: 1.9rem;
  --h4: 1.35rem;
  --text-base: 1.1rem;
  --text-sm: 1rem;
  --text-lg: 1.3rem;
  --header-height: 6.25rem;
}

body.dark-theme {
  --headings: #e8f0ff;
  --background: #0f172a;
  --paragraph: #cbd5f5;
  --highlight-light: #1f2937;
  --highlight-dark: #111827;
  --waves-color: #38bdf8;
  --accent-amber: #facc15;
  --accent-muted: #374151;
  background: radial-gradient(
    circle at 20% 20%,
    #0f172a 0,
    #0b1221 40%,
    #080f1c 100%
  );
  color: var(--headings);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  
}
html {
  font-size: 18px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "DM Sans", sans-serif;
  color: var(--headings);
  background: radial-gradient(
    circle at 20% 20%,
    #edf4ff 0,
    #f5f7fb 40%,
    #f5f7fb 100%
  );
  overflow-x: hidden;
  padding-top: var(--header-height);
}

a,
button {
  cursor: pointer;
}
img {
  object-fit: cover;
}
a {
  text-decoration: none;
  transition: color 0.2s ease-out;
}
a:hover {
  color: var(--waves-color);
}
h1 {
  font-size: var(--h1);
  font-weight: bolder;
  letter-spacing: -2px;
  margin: 3rem auto;
  line-height: 1.1;
}
h2 {
  font-size: var(--h2);
  font-weight: bolder;
  letter-spacing: -1px;
  margin-bottom: 3rem;
  line-height: 1;
}
h3 {
  font-size: var(--h3);
  margin-bottom: 1rem;
  color: var(--headings);
}
h1,
h2,
h3,
h4 {
  text-wrap: balance;
}
p {
  font-size: var(--text-base);
  color: var(--paragraph);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: var(--text-sm);
  color: #5b6b7f;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.label {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: var(--text-sm);
  color: #6b7c92;
  font-weight: 700;
}
.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--highlight-dark), #e8edf4);
  color: var(--headings);
  font-size: var(--text-sm);
  font-weight: 600;
  margin-right: 0.35rem;
  margin-bottom: 0.35rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}
.pill.dark {
  background: var(--headings);
  color: #fff;
}
.dark-theme .pill {
  background: linear-gradient(135deg, #1f2937, #111827);
  color: #e5e7eb;
}
.dark-theme .pill.dark {
  background: #e5e7eb;
  color: #0f172a;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}
.primary-btn {
  background-color: var(--headings);
  color: #fff;
  text-transform: uppercase;
  border: none;
  border-radius: 50px;
  padding: 1rem 2rem;
  margin-right: 1rem;
  transition: all 0.2s ease-out;
  cursor: pointer;
}
.small {
  padding: 0.5rem 1rem !important;
  font-size: 0.75rem;
  margin: 0;
}
.primary-btn:hover {
  background-color: #f5c94f;
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.4);
  color: #000;
}
.dark-theme .primary-btn {
  background-color: var(--waves-color);
  color: #0b1221;
}
.dark-theme .primary-btn:hover {
  background-color: var(--accent-amber);
  color: #0b1221;
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.6);
}
.ghost-btn {
  padding: 1rem 1.5rem;
  border-radius: 50px;
  border: 1px solid var(--headings);
  color: var(--headings);
  background: transparent;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  transition: all 0.2s ease-in-out;
}
.ghost-btn:hover {
  background: var(--headings);
  color: #fff;
}
body.dark-theme .ghost-btn:hover {
  background: var(--headings);
  color: #0f172a;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1100;
  height: var(--header-height);
  display: flex;
  align-items: center;
  padding: 0;
  margin-bottom: 0;
}
header nav {
  position: relative;
  width: 100%;
  max-width: none;
  height: 100%;
  margin: 0;
  background-color: var(--background);
  padding: 0 1.5rem;
  border-radius: 0;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  border: 0;
  border-bottom: 1px solid var(--highlight-dark);
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.container {
  width: min(100%, 75rem);
  margin: auto;
}
main .container {
  padding-bottom: 3rem;
}
.container > .nav {
  padding: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--highlight-dark);
}
header .container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .nav {
  width: 100%;
  gap: 1rem;
  height: 100%;
  padding: 0;
  border-top: none;
  position: relative;
  justify-content: space-between;
}
header nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  margin: 0;
  gap: 2rem;
}
header nav ul li {
  list-style: none;
  position: relative;
}
header nav ul li::before {
  content: none;
}
header nav ul li a {
  font-size: 0.98rem;
  text-decoration: none;
  color: var(--headings);
  font-weight: 600;
  letter-spacing: 0.01em;
}
header nav ul li a:hover {
  color: var(--waves-color);
}
.dark-theme header nav ul li a {
  color: #e5e7eb;
}
.dark-theme header nav ul li a:hover {
  color: var(--accent-amber);
}
header nav .cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.theme-toggle-btn {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  border: 1px solid var(--highlight-dark);
  background: linear-gradient(135deg, #fef9c3, #fde68a);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}
.theme-toggle-btn.small-toggle {
  width: 1.9rem;
  height: 1.9rem;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
}
.theme-toggle-btn.small-toggle .sunmoon {
  width: 0.95rem;
  height: 0.95rem;
}
.theme-toggle-btn .sunmoon {
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  position: relative;
  background: radial-gradient(
    circle at 30% 30%,
    #fde047 45%,
    #facc15 60%,
    #f59e0b 100%
  );
  box-shadow: inset -4px -4px 10px rgba(0, 0, 0, 0.15);
}
.theme-toggle-btn .sunmoon::after {
  content: "";
  position: absolute;
  width: 65%;
  height: 65%;
  border-radius: 50%;
  right: -15%;
  top: -10%;
  background: #0f172a;
  opacity: 0;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}
.theme-toggle-btn .sunmoon::before {
  content: "";
  position: absolute;
  inset: -25%;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.06);
}
.skiper-btn {
  background: transparent;
  border: none;
  padding: 0;
}
.theme-toggle-btn:active {
  transform: scale(0.95);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}
.dark-theme .theme-toggle-btn {
  background: linear-gradient(135deg, #0ea5e9, #0f172a);
  border-color: rgba(255, 255, 255, 0.12);
}
.dark-theme .theme-toggle-btn .sunmoon {
  background: radial-gradient(
    circle at 40% 40%,
    #38bdf8 35%,
    #0ea5e9 60%,
    #0ea5e9 100%
  );
}
.dark-theme .theme-toggle-btn .sunmoon::after {
  opacity: 1;
  transform: translate(-2px, 1px);
}

header nav .cta img {
  width: 3rem;
  object-fit: cover;
  margin-left: 0.5rem;
  margin-right: auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  height: 100%;
  flex: 0 0 auto;
  position: relative;
  z-index: 2;
}
.brand a {
  display: flex;
  align-items: center;
}
.brand img {
  width: auto;
  height: 86%;
  max-height: 4.1rem;
  object-fit: contain;
  filter: none;
}
.dark-theme .brand img {
  filter: invert(1);
}
.brand-tagline {
  font-size: 0.82rem;
  letter-spacing: 1.7px;
  color: var(--paragraph);
  text-transform: uppercase;
  line-height: 1.15;
  font-weight: 600;
}
.brand-tagline em {
  font-style: italic;
  color: var(--waves-color);
  font-weight: 700;
}
.brand-center-title {
  display: none;
  align-items: center;
  color: var(--headings);
  text-decoration: none;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}
.dark-theme .brand-center-title {
  color: #e5e7eb;
}
.nav-links .has-dropdown:hover .dropdown,
.nav-links .has-dropdown:focus-within .dropdown,
.sidebar .has-dropdown:hover .dropdown,
.sidebar .has-dropdown:focus-within .dropdown {
  display: block;
}
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  padding: 0.9rem 0.75rem 0.75rem;
  border-radius: 0.75rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  min-width: 170px;
  z-index: 1000;
}
.dark-theme .dropdown {
  background: #0b1221;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}
.dropdown a {
  display: block;
  padding: 0.5rem 0.75rem;
  color: var(--headings);
  font-weight: 500;
  border-radius: 0.5rem;
}
.dark-theme .dropdown a {
  color: #e5e7eb;
}
.dropdown a:hover {
  background: var(--highlight-dark);
}
.dark-theme .dropdown a:hover {
  background: rgba(255, 255, 255, 0.08);
}
.sidebar .dropdown {
  position: relative;
  top: 0;
  left: 0;
  box-shadow: none;
  padding: 0.25rem 0;
  background: transparent;
  display: block;
}
.sidebar .dropdown a {
  padding-left: 1rem;
}
#nav-icon {
  display: none;
  font-size: 1.1rem;
  color: var(--headings);
  cursor: pointer;
}
.dark-theme #nav-icon {
  color: #e5e7eb;
}
.sidebar {
  display: none;
}
.dark-theme header nav {
  background-color: var(--background);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
}
.dark-theme .sidebar {
  background-color: #0f172a;
}

#trust {
  padding: 3rem 0 1rem 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  padding: 0 1rem;
}
.trust-card {
  background: var(--highlight-light);
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 8px 20px rgba(12, 35, 64, 0.08);
  border: 1px solid var(--highlight-dark);
}
.trust-card h3 {
  margin: 0.25rem 0 0.75rem 0;
}
.trust-card p {
  margin: 0;
}
.dark-theme .trust-card {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

#gallery-strip {
  padding: 3rem 0 5rem 0;
  text-align: center;
}
.gallery-rail {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}
.gallery-rail img {
  width: 100%;
  height: clamp(16rem, 24vw, 21rem);
  object-fit: cover;
  display: block;
  border-radius: 1.25rem;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 1050px) {
  .gallery-rail {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gallery-rail img {
    height: 17rem;
  }
}

@media screen and (max-width: 768px) {
  .gallery-rail {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 92%;
    gap: 0.5rem;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 9%;
    padding: 0.85rem 9% 1rem;
    align-items: center;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .gallery-rail::-webkit-scrollbar {
    display: none;
  }

  .gallery-rail img {
    height: 20rem;
    border-radius: 1.35rem;
    border: 3px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 20px 45px rgba(15, 43, 70, 0.2);
    scroll-snap-align: center;
    transform: translateY(-0.2rem);
  }
}

@media screen and (max-width: 480px) {
  .gallery-rail {
    grid-auto-columns: 84%;
    padding-inline: 8%;
    scroll-padding-inline: 8%;
  }

  .gallery-rail img {
    height: 18rem;
  }
}

@media screen and (max-width: 768px) {
  .dark-theme .gallery-rail img {
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.35);
  }
}

.site-footer {
  background: #0b1221;
  color: #e5e7eb;
  padding: 4rem 0 2rem 0;
  margin-top: 2rem;
}
.dark-theme .site-footer {
  background: #050a14;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 2.5fr;
  gap: 2rem;
  align-items: start;
}
.footer-brand {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}
.footer-logo {
  width: 140px;
  height: auto;
  object-fit: contain;
  margin-bottom: 1rem;
  filter: invert(1) brightness(1.2);
}
.footer-brand p {
  color: #cfd7e0;
  margin-bottom: 0.5rem;
}
.footer-tagline {
  color: var(--waves-color);
  font-weight: 700;
  letter-spacing: 0.5px;
}
.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.25rem 2rem;
}
.footer-heading {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  color: var(--accent-amber);
  margin-bottom: 0.75rem;
  font-weight: 800;
}
.footer-columns a {
  display: block;
  color: #e5e7eb;
  text-decoration: none;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
}
.footer-columns a:hover {
  color: var(--waves-color);
}
.footer-columns a.footer-address {
  margin-bottom: 0.85rem;
  line-height: 1.5;
  font-style: normal;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 2rem;
  padding-top: 1rem;
}
.footer-bottom-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  align-items: center;
  gap: 1rem;
}
.footer-bottom p {
  margin: 0;
  color: #9aa6b6;
}
.footer-credit {
  color: #9aa6b6;
}
.footer-credit a {
  color: var(--accent-amber);
  font-weight: 700;
}
.footer-credit a:hover {
  color: var(--waves-color);
}
.footer-payments {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.footer-payments img {
  max-height: 18px;
}
.footer-socials {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
}
.footer-socials a {
  color: #e5e7eb;
  font-size: 1rem;
}
.footer-socials a:hover {
  color: var(--accent-amber);
}

.floating-whatsapp {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 3.9rem;
  height: 3.9rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 16px 35px rgba(37, 211, 102, 0.35);
  z-index: 1200;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease;
}

.floating-whatsapp i {
  font-size: 2rem;
}

.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.03);
  background: #1ebe5d;
  box-shadow: 0 20px 40px rgba(37, 211, 102, 0.42);
}

.floating-whatsapp:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.9);
  outline-offset: 4px;
}

.popup {
  position: fixed;
  bottom: 10px;
  right: 10px;
  background-color: #4caf50;
  color: white;
  padding: 10px;
  border-radius: 4px;
  display: none;
  animation: fadeOut 4s;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.fade-in {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.38s ease-out,
    transform 0.38s ease-out;
}

.js-ready .fade-in {
  opacity: 0;
  transform: translateY(28px);
  will-change: opacity, transform;
}

.js-ready .fade-in.visible {
  opacity: 1;
  transform: translateY(0);
  will-change: auto;
}

.wishlist {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  padding: 1rem;
  border-radius: 50%;
  width: 4rem;
  height: 4rem;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--paragraph);
  background-color: #fff;
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.5);
  z-index: 1000;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.wishlist:hover {
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.5);
  background-color: #f5c94f;
  color: #000;
}
.dark-theme .wishlist {
  background-color: #0f172a;
  color: #e5e7eb;
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.7);
}
.dark-theme .wishlist:hover {
  background-color: var(--accent-amber);
  color: #0b1221;
}

.wishlist-container {
  display: none;
  width: 40%;
  min-height: 400px;
  position: fixed;
  bottom: 2rem;
  right: 7rem;
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.5);
  background-color: var(--highlight-light);
  z-index: 1000;
}
.wishlist-content {
  justify-self: flex-start;
  align-self: flex-end;
  width: 100%;
}
.subtitle {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  color: var(--paragraph);
  margin-bottom: 0.5rem;
}
.wishlist-content h3 {
  margin: 0;
  font-weight: 400;
}
.wishlist-content hr {
  background-color: var(--paragraph);
  margin-bottom: 1rem;
  opacity: 0.5;
}
.wishlist-content select {
  border: 1px solid #6a96e2;
  padding: 0.5rem;
  color: #6a96e2;
}
.wishlist-content select:checked {
  border-color: #6a96e2;
}
.wishlist-content select > option {
  padding: 0.5rem 1rem;
}
.wishlist-content button {
  border: none;
  background-color: transparent;
  border: 1px solid #e6707c;
  border-radius: 50px;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  color: #e6707c;
}
.wishlist-content > div {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
}
.wishlist-content > div > div {
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.show {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
.show-btn {
  display: block;
}
.hide-btn {
  display: none;
}
@media screen and (max-width: 1050px) {
  :root {
    
    --h1: 4.5rem;
    --h2: 3.25rem;
    --h3: 1.5rem;
    --h4: 1.15rem;
  }
  html {
    font-size: 16px;
  }
  .primary-btn {
    padding: 0.75rem 1.5rem;
  }
  .container {
    padding: 0;
  }
  header {
    width: 100%;
    padding: 0;
  }
  header nav {
    padding: 0 1rem;
  }
  .container {
    width: 100%;
  }
  .container > .nav {
    padding: 1rem;
  }
  header nav ul {
    gap: 0.75rem;
  }

  header nav .cta .cta__btn {
    font-size: 0.75rem;
  }
  header nav .cta img {
    width: 1.25rem;
    margin-left: 0.25rem;
  }

  .popup {
    top: 1rem;
    bottom: auto;
    right: 4rem;
    background-color: #4caf50;
  }

  .wishlist-container {
    display: none;
    width: 50%;
    right: 7rem;
  }
  .show {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
  }
  .show-btn {
    display: block;
  }
  .hide-btn {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  header nav ul {
    display: none;
  }
  header .nav > .first {
    display: none;
  }
  .nav {
    position: relative;
  }
  #nav-icon {
    display: block;
  }
  .brand {
    gap: 0.5rem;
    margin-left: 0;
  }
  .brand-tagline {
    display: none;
  }
  .brand-center-title {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(calc(-50% + 20px), -50%);
    max-width: calc(100% - 8rem);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: center;
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: var(--header-height);
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0f2b46;
  }
  .nav-actions {
    position: relative;
    z-index: 2;
    margin-left: auto;
  }
  .sidebar {
    display: none;
    position: absolute;
    left: 50%;
    width: 85vw;
    top: 100%;
    transform: translateX(-50%);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-radius: 0;
    background-color: #ffffff;
    border-top: 0;
    z-index: 1000;
  }
  .show-sidebar {
    display: block;
  }
  #sidebar ul {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    margin: auto;
    position: relative;
    width: 100%;
    padding: 1.15rem 1.25rem;
  }
  #sidebar ul::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: calc(100% - 1rem);
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(
      90deg,
      transparent 0%,
      rgba(15, 43, 70, 0.06) 14%,
      rgba(15, 43, 70, 0.16) 50%,
      rgba(15, 43, 70, 0.06) 86%,
      transparent 100%
    );
  }
  #sidebar ul li {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-left: 0;
    padding: 0.8rem 0;
    width: 100%;
    position: relative;
  }
  #sidebar ul li::before {
    content: none;
  }
  #sidebar ul li + li::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: calc(100% - 1rem);
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(
      90deg,
      transparent 0%,
      rgba(15, 43, 70, 0.06) 14%,
      rgba(15, 43, 70, 0.16) 50%,
      rgba(15, 43, 70, 0.06) 86%,
      transparent 100%
    );
  }
  #sidebar ul li a {
    display: block;
    width: 100%;
    font-size: 0.95rem;
    margin-bottom: 0;
    text-decoration: none;
    color: var(--headings);
    font-weight: 600;
  }
  .dark-theme #sidebar ul::before {
    background: linear-gradient(
      90deg,
      transparent 0%,
      rgba(229, 231, 235, 0.07) 14%,
      rgba(229, 231, 235, 0.18) 50%,
      rgba(229, 231, 235, 0.07) 86%,
      transparent 100%
    );
  }
  .dark-theme #sidebar ul li + li::before {
    background: linear-gradient(
      90deg,
      transparent 0%,
      rgba(229, 231, 235, 0.07) 14%,
      rgba(229, 231, 235, 0.18) 50%,
      rgba(229, 231, 235, 0.07) 86%,
      transparent 100%
    );
  }
  #sidebar .nav .cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .second {
    margin-right: 1rem;
    min-width: 5rem;
  }
}
@media screen and (max-width: 635px) {
  :root {
    
    --h1: 3.75rem;
    --h2: 3rem;
    --h3: 1.4rem;
    --h4: 1.1rem;
    --header-height: 5.25rem;
  }
  html {
    font-size: 14px;
  }
  .primary-btn {
    padding: 0.5rem 1.5rem;
    font-size: 0.85rem;
  }
  .brand-center-title {
    max-width: calc(100% - 8.5rem);
    font-size: 2.2rem;
    letter-spacing: 0.08em;
  }
  .container > .nav {
    padding: 0;
    padding-top: 1rem;
  }
  header .container > .nav {
    padding: 0;
  }
  .wishlist-container {
    width: 70%;
  }
  .show {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
  }
  .show-btn {
    display: block;
  }
  .hide-btn {
    display: none;
  }
  .site-footer {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-columns {
    grid-template-columns: repeat(2, minmax(140px, 1fr));
  }
  .footer-bottom-content {
    grid-template-columns: 1fr;
    justify-items: flex-start;
  }
  .footer-socials {
    justify-content: flex-start;
  }
  .floating-whatsapp {
    right: 1rem;
    bottom: 1rem;
    width: 3.5rem;
    height: 3.5rem;
  }
  .floating-whatsapp i {
    font-size: 1.8rem;
  }
}

.popular-destinations {
  padding: 4rem 1.5rem;
  background: var(--background, #f9fafb);
}

.dark-theme .popular-destinations {
  background: var(--background, #111827);
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.popular-destinations .section-heading {
  text-align: left;
}

.dest-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  width: 100%;
  height: 40vh;
  text-decoration: none;
  display: block;
  background: #000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.dark-theme .dest-card {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.dest-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.dark-theme .dest-card:hover {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  opacity: 0.9;
}

.dest-card:hover img {
  transform: scale(1.08);
  opacity: 1;
}

.dest-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 3.5rem 1.5rem 1.5rem;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.4) 60%,
    transparent 100%
  );
  color: #fff;
  transition: padding-bottom 0.3s ease;
}

.dest-card:hover .dest-info {
  padding-bottom: 2rem;
}

.dest-info h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.dest-info p {
  font-size: 0.85rem;
  margin-top: 0.3rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}
