.header-text,
.hamburger-text {
  color: #303030;
  transition: color 0.2s, transform 0.2s;
  cursor: pointer;
  text-decoration: none;
}

.header-text:hover,
.hamburger-text:hover {
  color: #0b3a40;
  transform: scale(1.08);
}

.fa-cart-shopping,
.fa-user {
  color: #303030;
  transition: color 0.2s, transform 0.2s;
  cursor: pointer;
}

.fa-cart-shopping:hover,
.fa-user:hover {
  color: #0b3a40;
  transform: scale(1.15);
}

label {
  font-family: "Montserrat", Verdana, Geneva, Tahoma, sans-serif;
}

.login-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.login-modal-box {
  display: flex;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  min-width: 340px;
  max-width: 1000px;
  width: 90%;
  min-height: 350px;
}
.login-modal-left {
  background: #eee;
  display: flex;
  align-items: stretch;
  justify-content: center;
  min-width: 180px;
  max-width: 500px;
}
.login-modal-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.login-modal-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
  min-width: 200px;
}
.login-modal-logo {
  max-width: 185px;
  margin-bottom: 12px;
}
.login-modal-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.login-modal-form label {
  font-weight: 600;
  margin-top: 8px;
}
.login-modal-form input {
  padding: 8px;
  border-radius: 5px;
  border: 1px solid #e8e8e8;
}
.login-modal-btn {
  margin-top: 12px;
  padding: 10px 0;
  background: #0b3a40;
  color: #fff;
  border: none;
  border-radius: 25px;
  font-size: 1em;
  cursor: pointer;
}
.login-modal-forgot {
  color: #0b3a40;
  font-size: 0.95em;
  margin: 10px 0 0 0;
  cursor: pointer;
  text-decoration: underline dotted;
  width: 100%;
  text-align: left;
  transition: color 0.2s;
}
.login-modal-forgot:hover {
  color: #5e2c07;
  text-decoration: underline;
  cursor: pointer;
}
.login-modal-separator {
  width: 100%;
  height: 1px;
  background: #ccc;
  margin: 18px 0 10px 0;
}
.sign-up__text {
  color: #0b3a40;
  font-size: 1em;
  font-family: "Tittillium Web", Verdana, Geneva, Tahoma, sans-serif;
  text-decoration: none;
  text-wrap: nowrap;
  padding: 10px 40px;
  border-radius: 20px;
  margin: 10px auto 0 auto;
  position: relative;
  display: inline-block;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.sign-up__text:hover {
  background: #0b3a40;
  color: #fff;
}

.footer-fake-link {
  text-decoration: none;
  cursor: pointer;
  pointer-events: auto;
  transition: color 0.2s;
}
.footer-fake-link:hover {
  color: #5e2c07;
  text-decoration: underline;
}
.footer-links-right a {
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
}
.footer-links-right a:hover {
  color: #5e2c07;
  text-decoration: underline;
}
