@font-face {
  font-family: 'Canela';
  src: url('../assets/fonts/Canela_Collection/Canela_Family/Canela-Light-Trial.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Canela';
  src: url('../assets/fonts/Canela_Collection/Canela_Family/Canela-LightItalic-Trial.otf') format('opentype');
  font-weight: 300;
  font-style: italic;
}

:root {
  --bg-color: #f4efea;
  --dark-bg: #f4efea;
  --darker-bg: #eae5de;
  --light-bg: #ffffff;
  --accent-color: #1a1a1a;
  --secondary-accent: #d9683a;
  --text-color: #111111;
  --text-secondary: #555555;
  --success-color: #4caf50;

  --accent-blue: #54749e;
  --accent-blue-rgb: 84, 116, 158;

  --accent-color-rgb: 26, 26, 26;
  --secondary-accent-rgb: 217, 104, 58;
  --text-color-rgb: 17, 17, 17;
}

.profile-picture {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  color: white;
  text-transform: uppercase;
  user-select: none;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.profile-picture:hover {
  transform: scale(1.05);
}

.profile-picture.large {
  width: 80px;
  height: 80px;
  font-size: 32px;
}

.profile-picture.small {
  width: 24px;
  height: 24px;
  font-size: 10px;
}

.nav-user-section {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  background-color: #c1c8d5;
  overscroll-behavior-y: none;
}

body {
  font-family: 'General Sans', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: clip;
  overscroll-behavior-y: none;
}

h1,
h2,
h3 {
  font-family: 'Canela', serif;
  font-weight: 300;
}

h1 {
  font-size: 5.5rem;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

h1 em {
  font-style: italic;
  color: var(--secondary-accent);
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--accent-color);
}

p {
  font-family: 'Raleway', sans-serif;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.container {
  width: 85%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 0;
}

.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background-color: var(--accent-color);
  color: white;
  border: none;
  border-radius: 50px;
  font-family: 'Kanit', sans-serif;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: center;
}

.btn:hover {
  background-color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(31, 28, 25, 0.25);
}

.btn-outlined {
  background-color: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
}

.btn-outlined:hover {
  background-color: var(--accent-color);
  color: white;
}

.btn-secondary {
  background-color: var(--secondary-accent);
  color: white;
}

.btn-secondary:hover {
  background-color: #b25327;
}

.btn-tiny {
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  border-radius: 20px;
}

header {
  padding: 0.5rem 0;
  background-color: transparent;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo {
  font-family: 'Canela', serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--text-color);
  text-decoration: none;
  position: relative;
  letter-spacing: -0.01em;
}

.logo-dot {
  color: var(--secondary-accent);
}

.footer-partner {
  display: inline-flex;
  margin-top: 1.4rem;
  line-height: 0;
  opacity: 0.85;
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-partner img {
  height: 46px;
  width: auto;
  display: block;
}

.footer-partner:hover {
  opacity: 1;
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  gap: 2.6rem;
  align-items: center;
}

@media (min-width: 769px) {
  .nav-links {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}

.nav-links a {
  color: var(--text-color);
  text-decoration: none;
  font-family: 'Canela', serif;
  font-weight: 300;
  font-size: 1.06rem;
  letter-spacing: 0.005em;
  white-space: nowrap;
  opacity: 0.7;
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:hover {
  opacity: 1;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-login {
  color: var(--text-color);
  text-decoration: none;
  font-family: 'General Sans', sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  opacity: 0.7;
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-login:hover {
  opacity: 1;
}

.btn-get-started {
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.15), 0 30px 80px rgba(0,0,0,0.02);
  color: var(--text-color);
  border-radius: 50px;
  padding: 0.6rem 1.2rem;
  font-family: 'General Sans', sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-get-started:hover {
  transform: translateY(-1px);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.3), 0 40px 90px rgba(0,0,0,0.03);
  background-color: rgba(255, 255, 255, 0.1);
}

.btn-get-started i {
  font-size: 0.9rem;
}

.nav-account {
  position: relative;
}

.account-trigger {
  cursor: pointer;
}

.account-caret {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-account.open .account-caret {
  transform: rotate(180deg);
}

.account-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 172px;
  padding: 0.4rem;
  background-color: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 18px;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.4), 0 20px 50px rgba(31, 28, 25, 0.12);
  z-index: 300;
  transform-origin: top right;
  animation: accountMenuIn 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes accountMenuIn {
  from {
    opacity: 0;
    transform: translateY(-6px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.account-menu a {
  display: block;
  padding: 0.6rem 0.9rem;
  border-radius: 13px;
  font-family: 'General Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-color);
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.account-menu a:hover {
  background-color: rgba(255, 255, 255, 0.8);
}

.account-menu a:last-child {
  color: var(--text-secondary);
}

.account-menu a:last-child:hover {
  color: var(--text-color);
}

.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  color: var(--text-color);
  background: none;
  border: none;
  cursor: pointer;
}

.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-color: var(--bg-color);
}

.hero-bg {
  position: absolute;
  top: -5%; left: -5%; width: 110%; height: 110%;
  background-image: url('../assets/hero-inventure.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  filter: saturate(0.96);
  z-index: 0;
  will-change: transform;
}

.haze-overlay {
  position: absolute;
  inset: 0;
  background: rgba(245, 241, 235, 0.26);
  z-index: 1;
  pointer-events: none;
}

.caustics {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(circle at 40% 40%, rgba(255,255,255,0.06) 0%, transparent 50%);
  mix-blend-mode: overlay;
  animation: panLight 15s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes panLight {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.1) translate(4%, 3%); }
}

.hero-line,
.hero-content .search-bar-pill {
  opacity: 0;
  transform: translateY(24px);
  filter: blur(6px);
  transition: opacity 1.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.8s cubic-bezier(0.16, 1, 0.3, 1),
              filter 1.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-content.revealed .hero-line-1 {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition-delay: 0s;
}

.hero-content.revealed .hero-line-2 {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition-delay: 0.15s;
}

.hero-content.revealed .search-bar-pill {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition-delay: 0.45s;
}

.hero-content {
  width: 85%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  margin-top: 0.5rem;
}

.search-bar-pill {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background-color: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.35), 0 30px 90px rgba(0, 0, 0, 0.07);
  border-radius: 50px;
  padding: 0.55rem 0.55rem 0.55rem 1.4rem;
  width: 100%;
  max-width: 430px;
  transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.search-bar-pill:hover, .search-bar-pill:focus-within {
  background-color: rgba(255, 255, 255, 0.42);
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.5), 0 40px 110px rgba(0, 0, 0, 0.09);
}

.search-icon {
  color: var(--text-color);
  font-size: 1.05rem;
  opacity: 0.45;
  flex-shrink: 0;
}

.search-input {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  padding: 0.35rem 0;
  font-family: 'General Sans', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: var(--text-color);
  outline: none;
  letter-spacing: 0.015em;
}

.search-input::placeholder {
  color: var(--text-color);
  opacity: 0.4;
  font-weight: 400;
}

.search-submit {
  background-color: var(--espresso, #1f1c19);
  border: none;
  color: #ffffff;
  font-size: 1rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
  line-height: 1;
}

.search-submit:hover {
  transform: translateX(2px);
  background-color: #000000;
}

.form-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
  flex: 1;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-family: 'General Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  background-color: var(--dark-bg);
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--text-color);
  border-radius: 12px;
  font-family: 'General Sans', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: rgba(0, 0, 0, 0.2);
  background-color: #fbf8f5;
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(31, 28, 25, 0.45);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 1rem;
}

.modal-overlay .modal {
  background-color: #ffffff;
  border-radius: 22px;
  width: 90%;
  max-width: 450px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.2rem 2rem;
  position: relative;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.16);
  border: 1px solid rgba(0, 0, 0, 0.05);
  animation: modalIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  scrollbar-width: thin;
  scrollbar-color: rgba(31, 28, 25, 0.22) transparent;
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .modal-overlay .modal {
    animation: none;
  }
}

.modal-overlay .modal::-webkit-scrollbar {
  width: 10px;
}

.modal-overlay .modal::-webkit-scrollbar-track {
  background: transparent;
  margin: 14px 0;
}

.modal-overlay .modal::-webkit-scrollbar-thumb {
  background-color: rgba(31, 28, 25, 0.16);
  border-radius: 999px;
  border: 3px solid #ffffff;
  background-clip: padding-box;
}

.modal-overlay .modal::-webkit-scrollbar-thumb:hover {
  background-color: rgba(31, 28, 25, 0.32);
}

.modal-close {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.35rem;
  line-height: 1;
  color: var(--text-secondary);
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.modal-close:hover {
  background-color: rgba(0, 0, 0, 0.06);
  color: var(--text-color);
}

.modal-header {
  text-align: center;
  margin-bottom: 1.8rem;
  padding-top: 0.5rem;
}

.modal-title {
  font-family: 'Canela', serif;
  font-weight: 300;
  font-size: 1.9rem;
  color: var(--text-color);
}

.modal-overlay .login-modal {
  max-width: 400px;
  padding: 2.4rem 2.2rem 2.2rem;
}

.login-title {
  font-family: 'Canela', serif;
  font-weight: 300;
  font-size: 1.85rem;
  color: var(--text-color);
  margin-bottom: 0.6rem;
}

.login-title-dot {
  color: var(--secondary-accent);
}

.login-lede {
  font-family: 'General Sans', sans-serif;
  font-size: 0.93rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0 0 1.6rem;
}

.login-modal-content .login-title,
.login-modal-content .login-lede {
  text-align: left;
}

.btn-google {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 50px;
  background-color: transparent;
  font-family: 'General Sans', sans-serif;
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--text-color);
  cursor: pointer;
  transition: background-color 0.25s ease, border-color 0.25s ease;
}

.btn-google:hover {
  background-color: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.25);
}

.btn-google i {
  font-size: 1.05rem;
}

.login-form input {
  margin-bottom: 0.8rem;
}

.login-form .btn {
  font-family: 'General Sans', sans-serif;
  font-size: 0.93rem;
}

.login-success {
  font-family: 'General Sans', sans-serif;
  font-size: 0.92rem;
  line-height: 1.55;
  color: #3d8c40;
  text-align: left;
  margin: 0 0 1.1rem;
}

.or-divider {
  display: flex;
  align-items: center;
  margin: 1rem 0;
  color: var(--text-secondary);
}

.or-divider::before,
.or-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.08);
}

.or-divider span {
  padding: 0 1rem;
}

.auth-error {
  font-family: 'General Sans', sans-serif;
  color: #a63c3c;
  text-align: left;
  margin-bottom: 1.1rem;
  font-size: 0.92rem;
  line-height: 1.55;
}

.form-success {
  color: var(--success-color);
  background-color: rgba(76, 175, 80, 0.1);
  padding: 1rem;
  border-radius: 5px;
  text-align: center;
  margin-bottom: 1.5rem;
}

footer {
  background-color: var(--darker-bg);
  padding: 3rem 0;
  text-align: center;
}

.footer-logo {
  font-family: 'Canela', serif;
  font-weight: 300;
  letter-spacing: -0.01em;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  display: inline-block;
  position: relative;
}

.footer-logo::after {
  content: ".";
  font-size: 2rem;
  color: var(--secondary-accent);
  position: absolute;
  bottom: -5px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 1.5rem 0;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-color);
}

copyright {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.made-with-love {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.made-with-love a {
  color: var(--accent-color);
  text-decoration: none;
}

.made-with-love a:hover {
  text-decoration: underline;
}

.heart {
  color: var(--secondary-accent);
  display: inline-block;
  animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
  0% {
    transform: scale(1);
  }

  5% {
    transform: scale(1.25);
  }

  10% {
    transform: scale(1);
  }

  15% {
    transform: scale(1.25);
  }

  20% {
    transform: scale(1);
  }

  100% {
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.8rem;
  }

  .hero h1 {
    font-size: 3.6rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    padding: 0 1rem;
  }

  .hero-content {
    padding: 0 1rem;
  }

  .hero-btns {
    flex-direction: column;
    margin-top: 1.5rem;
  }

  .btn {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    padding: 1rem 2rem;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    order: 3;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    margin-left: 0.65rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.35), 0 10px 24px rgba(31, 28, 25, 0.06);
    font-size: 1.1rem;
  }

  .nav-actions {
    order: 2;
    margin-left: auto;
    gap: 0.9rem;
  }

  .nav-login {
    display: none;
  }

  .mobile-menu-active .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.1rem;
    background-color: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(20px) saturate(1.5);
    -webkit-backdrop-filter: blur(20px) saturate(1.5);
    padding: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 24px;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.4), 0 20px 50px rgba(31, 28, 25, 0.14);
    z-index: 99;
    transform-origin: top center;
    animation: accountMenuIn 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .mobile-menu-active .nav-links a {
    padding: 0.85rem 1rem;
    text-align: center;
    width: 100%;
    font-size: 1.15rem;
    border-radius: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.25s ease, opacity 0.25s ease;
  }

  .mobile-menu-active .nav-links a:active {
    background-color: rgba(255, 255, 255, 0.8);
    opacity: 1;
  }

  .form-row {
    flex-direction: column;
    gap: 1.5rem;
  }

  .container {
    width: 90%;
    padding: 1rem 0;
  }

  .modal-overlay .modal {
    width: 95%;
    padding: 1.8rem 1.4rem;
    max-width: 400px;
    max-height: 85vh;
    max-height: 85dvh;
  }

  .modal-title {
    font-size: 1.5rem;
  }

  .hero {
    min-height: 100vh;
    padding: 2rem 0;
  }

  .hero-bg {
    background-image: url('../assets/hero-inventure-mobile.jpg');
    background-size: cover;
    background-position: center top;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .nav-links {
    gap: 0.8rem;
  }

  .nav-links a {
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
    white-space: nowrap;
  }

  .btn-outlined {
    font-size: 0.85rem;
    padding: 0.6rem 1.2rem;
  }

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

@media (max-width: 480px) {
  h1 {
    font-size: 2.2rem;
  }

  .hero h1 {
    font-size: 3.1rem;
  }

  .logo {
    font-size: 1.55rem;
  }

  .btn-get-started {
    padding: 0.55rem 1rem;
    font-size: 0.8rem;
  }

  .nav-actions {
    gap: 0.6rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }

  .hero-content {
    padding: 0 0.5rem;
  }
}

.w-100 {
  width: 100%;
}

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

.mt-1 {
  margin-top: 1rem;
}

.mt-05 {
  margin-top: 0.5rem;
}

.text-success {
  color: var(--success-color);
}

.text-accent {
  color: var(--accent-color);
}

.text-secondary-color {
  color: var(--text-secondary);
}

.clear-both {
  clear: both;
}

* {
  scrollbar-width: thin;
  scrollbar-color: #c6bfb4 transparent;
}

::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: #c6bfb4;
  border-radius: 999px;
  border: 3px solid var(--bg-color);
  background-clip: padding-box;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #c9501f;
}

::-webkit-scrollbar-corner {
  background: transparent;
}

.select-menu::-webkit-scrollbar {
  width: 8px;
}

.select-menu::-webkit-scrollbar-thumb {
  border: 2px solid #ffffff;
}

.mb-1-5 {
  margin-bottom: 1.5rem;
}
