@charset "UTF-8";
.footer {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 4rem 0;
}
.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 768px) {
  .footer__container {
    grid-template-columns: 1fr;
    text-align: start;
  }
}
.footer__brand {
  max-width: 400px;
}
@media (max-width: 768px) {
  .footer__brand {
    margin: 0 auto;
  }
}
.footer__logo {
  height: 40px;
  margin-bottom: 1rem;
}
.footer__description {
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  color: #cccccc;
}
.footer__social {
  display: flex;
  gap: 1rem;
}
@media (max-width: 768px) {
  .footer__social {
    justify-content: start;
  }
}
.footer__social-link {
  color: #ffffff;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}
.footer__social-link:hover {
  color: #ffb86d;
}
.footer__heading {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__link {
  color: #cccccc;
  text-decoration: none;
  font-size: 0.9rem;
  line-height: 2;
  transition: color 0.3s ease;
}
.footer__link:hover {
  color: #ffb86d;
  text-decoration: underline;
}

.bottom-footer {
  background-color: #1a1a1a;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.bottom-footer__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .bottom-footer__container {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
.bottom-footer__copyright {
  color: #cccccc;
  font-size: 0.875rem;
  margin: 0;
}
.bottom-footer__payment-methods {
  display: flex;
  gap: 1rem;
  align-items: center;
}
@media (max-width: 768px) {
  .bottom-footer__payment-methods {
    display: none;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.bottom-footer__payment-icon {
  height: 24px;
  width: auto;
  opacity: 0.8;
}

.newslatter {
  background-image: url("../images/newslatter.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  height: 366px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 50px 0px;
}
.newslatter h6 {
  font-size: 14px;
  font-weight: 600;
  line-height: 62px;
  text-align: right;
  text-underline-position: from-font;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  color: white;
}
.newslatter h1 {
  font-family: Jost;
  font-size: 40px;
  font-weight: 500;
  line-height: 52px;
  text-align: center;
  text-underline-position: from-font;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  color: white;
}
.newslatter h3 {
  color: white;
  font-size: 18px;
  font-weight: 400;
  line-height: 62px;
  text-align: right;
  text-underline-position: from-font;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}
.newslatter div {
  width: 100%;
  height: 53px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 50px 0px;
}
@media (max-width: 768px) {
  .newslatter div {
    width: 266px;
  }
}
.newslatter div input {
  height: 100%;
  width: 426px;
  color: white;
  background-color: transparent;
  padding: 10px 20px;
  border-radius: 4px;
  border: gray 2px solid;
  font-size: 18px;
  transition-duration: 0.5s;
}
.newslatter div input:focus {
  transform: translateY(-3px);
}
@media (max-width: 768px) {
  .newslatter div input {
    width: 181px;
    font-family: DM Sans;
    font-size: 12px;
    font-weight: 400;
    line-height: 15.62px;
    text-align: right;
    text-underline-position: from-font;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none;
  }
}
.newslatter div button {
  height: 100%;
  width: 111px;
  background-color: white;
  border: none;
  border-radius: 4px;
  font-size: 18px;
  transition-duration: 0.5s;
}
.newslatter div button:hover {
  transform: translateY(-3px);
}
@media (max-width: 768px) {
  .newslatter div button {
    width: 82px;
    font-family: DM Sans;
    font-size: 12px;
  }
}

* {
  font-family: "DM Sans", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  max-width: 2565px;
}
body:has(.scrolled) .main-container {
  margin-top: 78px;
}

.promo-header {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 42px;
  background-color: var(--color-primary, #cb9274);
  padding: 0 80px;
}
.promo-header .icons {
  width: 150px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.promo-header .icons img {
  width: 18px;
}
.promo-header .icons img:hover {
  filter: invert(1);
  cursor: pointer;
}
.promo-header .slide-promo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  width: 457px;
  text-align: center;
  overflow-x: hidden;
}
.promo-header .lang-curren {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.promo-header .lang-curren .lang,
.promo-header .lang-curren .curren {
  position: relative;
  background-color: var(--color-primary, #cb9274);
  border: none;
  color: #ffffff;
  font-size: 16px;
  padding: 8px 15px;
  cursor: pointer;
}
.promo-header .lang-curren .lang::after,
.promo-header .lang-curren .curren::after {
  content: "▼";
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  color: white;
  font-size: 12px;
  pointer-events: none;
}
.promo-header .lang-curren .lang:focus,
.promo-header .lang-curren .curren:focus {
  outline: none;
  background-color: white;
  color: var(--color-primary, #cb9274);
  text-decoration: underline;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.promo-header .lang-curren .lang:focus::after,
.promo-header .lang-curren .curren:focus::after {
  color: var(--color-primary, #cb9274);
}
.promo-header .lang-curren .lang option,
.promo-header .lang-curren .curren option {
  background-color: white;
  color: #333333;
  padding: 8px 12px;
  font-size: 16px;
}
.promo-header .lang-curren .lang option:checked,
.promo-header .lang-curren .curren option:checked {
  display: none;
}
.promo-header .lang-curren .lang option:hover,
.promo-header .lang-curren .curren option:hover {
  background-color: rgba(203, 146, 116, 0.1);
}
.promo-header .lang-curren .lang::-ms-expand,
.promo-header .lang-curren .curren::-ms-expand {
  display: none;
}
.promo-header .lang-curren .lang:-moz-focusring,
.promo-header .lang-curren .curren:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #ffffff;
}
.promo-header .lang-curren select::-webkit-scrollbar {
  width: 8px;
}
.promo-header .lang-curren select::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.promo-header .lang-curren select::-webkit-scrollbar-thumb {
  background: var(--color-primary, #cb9274);
  border-radius: 4px;
}
.promo-header .lang-curren .lang:focus,
.promo-header .lang-curren .curren:focus {
  outline: none;
}
.promo-header .lang-curren .lang:focus + .custom-options,
.promo-header .lang-curren .curren:focus + .custom-options {
  display: block;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  background-color: #333333;
  border: 1px solid #555555;
  border-top: none;
  z-index: 1000;
}
.promo-header .lang-curren .lang:focus + .custom-options .option,
.promo-header .lang-curren .curren:focus + .custom-options .option {
  padding: 10px;
  cursor: pointer;
  background-color: white;
}
.promo-header .lang-curren .lang:focus + .custom-options .option:hover,
.promo-header .lang-curren .curren:focus + .custom-options .option:hover {
  background-color: white;
}
.promo-header .lang-curren .lang:focus + .custom-options .option.selected,
.promo-header .lang-curren .curren:focus + .custom-options .option.selected {
  background-color: #777777;
  color: #ffffff;
}

@media (max-width: 768px) {
  .promo-header {
    justify-content: center;
    height: 30px;
    padding: 0 15px;
  }
  .promo-header .icons {
    display: none;
  }
  .promo-header .slide-promo {
    width: 257px;
    margin: 0 10px;
    font-size: 11px;
    font-weight: 500;
  }
  .promo-header .lang-curren {
    display: none;
  }
}

.main-container {
  height: 720px;
  display: flex;
}
@media (max-width: 768px) {
  .main-container {
    flex-direction: column;
    height: 1000px;
  }
}
.main-container .image-container {
  flex: 1;
}
@media (max-width: 768px) {
  .main-container .image-container {
    height: 40%;
  }
}
.main-container .image-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.main-container .form-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .main-container .form-container {
    flex: 3;
  }
}
.main-container .form-container h1 {
  color: #222222;
  font-family: Jost;
  font-size: 42px;
  font-weight: 500;
  line-height: 34px;
  text-align: right;
  text-underline-position: from-font;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  margin: 8px;
}
@media (max-width: 768px) {
  .main-container .form-container h1 {
    font-family: Jost;
    font-size: 32px;
    font-weight: 500;
    line-height: 34px;
    text-align: center;
    text-underline-position: from-font;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none;
    margin: 20px 0px 5px 0px;
  }
}
.main-container .form-container h3 {
  font-family: DM Sans;
  font-size: 18px;
  font-weight: 400;
  line-height: 17px;
  text-align: center;
  text-underline-position: from-font;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  color: #5b5859;
  margin: 8px;
}
@media (max-width: 768px) {
  .main-container .form-container h3 {
    font-family: DM Sans;
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
    text-align: center;
    text-underline-position: from-font;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none;
    margin: 0px 0px 40px 0px;
  }
}
.main-container .form-container form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 20px;
  gap: 10px;
}
@media (max-width: 768px) {
  .main-container .form-container form {
    align-items: center;
    width: 90%;
  }
}
.main-container .form-container form label {
  font-size: 15px;
  font-weight: 500;
  line-height: 19.53px;
  text-align: right;
  text-underline-position: from-font;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  color: #333333;
}
@media (max-width: 768px) {
  .main-container .form-container form label {
    font-family: DM Sans;
    font-size: 14px;
    font-weight: 500;
    line-height: 18.23px;
    align-self: flex-start;
    text-underline-position: from-font;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none;
  }
}
.main-container .form-container form input {
  width: 100%;
  height: 50px;
  background-color: #dddddd;
  border-radius: 4px;
  padding: 15px;
  display: flex;
  align-items: center;
  border: #dddddd 0.5px solid;
}
/* @media (max-width: 768px) {
    .main-container .form-container form input {
        width: 324px;
    }
} */
.main-container .form-container form input::-moz-placeholder {
  font-family: DM Sans;
  font-size: 14px;
  font-weight: 400;
  line-height: 18.23px;
  text-align: right;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: rgba(51, 51, 51, 0.3019607843);
}
.main-container .form-container form input::placeholder {
  font-family: DM Sans;
  font-size: 14px;
  font-weight: 400;
  line-height: 18.23px;
  text-align: right;
  text-underline-position: from-font;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  color: rgba(51, 51, 51, 0.3019607843);
}
.main-container .form-container button#submit-login:hover {
  background-color: #0e0e0eb0 !important;
}
.main-container .form-container button#submit-login {
  width: 100%;
  height: 50px;
  font-size: 18px;
  background-color: #252324 !important;
  color: white;
  border-radius: 4px;
  border: none;
  margin-top: 20px;
  text-transform: capitalize;
}
@media (max-width: 768px) {
  .main-container .form-container button#submit-login {
    font-family: DM Sans;
    font-size: 14px;
    font-weight: 600;
    line-height: 18.23px;
    text-align: center;
    text-underline-position: from-font;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none;
  }
}
.main-container .form-container p {
  font-size: 14px;
  font-weight: 400;
  line-height: 18.23px;
  text-align: right;
  text-underline-position: from-font;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  margin-top: 30px;
  color: #252324;
}
.main-container .form-container p a {
  color: #ffb86d;
  text-decoration: underline;
}
.page-authentication #content {
  max-width: none !important;
  margin: 0 !important;
  padding: 0;
}

#authentication #login-form .forgot-password a {
  float: left;
  color: #ffb86d;
  font-family: DM Sans;
  font-weight: 600;
  font-size: 12px;
  line-height: 12px;
  letter-spacing: 0%;
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-thickness: Auto;
}

.input-group input[type="text"],
.input-group input[type="email"] {
  width: 100% !important;
}

.page-customer-account #content .forgot-password {
  margin-top: -0.5rem;
}

#login-form > div {
  width: 100%;
}

.form-footer {
  width: 100%;
}

#authentication main .page-footer {
    margin-top: 0 !important;
}