@charset "UTF-8";
/*
  L'ordre des imports : 
    - reset
    - vendors
    - pages
    - themes
    - layout
    - components
*/
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
.alert {
  position: fixed;
  top: 100px;
  right: -400px;
  max-width: 450px;
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  border-radius: 8px;
  padding: 1rem 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  transition: all 0.3s ease;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}
.alert.show {
  right: 20px;
  animation: slideInFromRight 0.3s ease;
}
.alert.hide {
  right: -400px;
  opacity: 0;
  animation: slideOutToRight 0.3s ease;
}
.alert.alert-danger {
  background-color: rgb(232, 127, 23);
  color: white;
  border-color: rgb(232, 127, 23);
}
.alert.alert-success {
  background-color: rgb(119, 224, 203);
  color: rgb(30, 74, 65);
  border-color: #c3e6cb;
}
.alert.alert-info {
  background-color: #d1ecf1;
  color: #0c5460;
  border-color: #bee5eb;
}
.alert .alert-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: currentColor;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
  line-height: 1;
  opacity: 0.7;
}
.alert .alert-close:hover {
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.1);
  transform: scale(1.1);
}
.alert .alert-close:active {
  transform: scale(0.95);
}

@keyframes slideInFromRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideOutToRight {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}
.notification-toast {
  position: fixed;
  top: 20px;
  right: 20px;
  min-width: 200px;
  max-width: 400px;
  padding: 12px 24px;
  border-radius: 6px;
  z-index: 9999;
  color: #fff;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  opacity: 1;
  transition: opacity 0.3s;
}
.notification-toast.notification-toast--success {
  background: #5eaa60;
}
.notification-toast.notification-toast--error {
  background: #eb6c5e;
}
.notification-toast.notification-toast--hide {
  opacity: 0;
}

*,
html {
  font-family: "Inter", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* border: 1px solid red  */
}

.f-hfp {
  font-size: 0.875rem;
  font-weight: 400;
  color: #333333;
  text-decoration: none;
}

.f-title-page-section {
  font-size: 1.25rem;
  font-weight: 500;
  color: #333333;
}

.f-title-item {
  font-size: 0.875rem;
  font-weight: 600;
  color: #000000;
}

.f-text {
  font-size: 0.875rem;
  font-weight: 400;
  color: #666666;
}

.f-hero-title {
  font-size: 4rem;
  font-weight: 500;
  color: #333333;
}

.f-hero-text {
  font-size: 1.125rem;
  font-weight: 300;
  color: #333333;
}

.f-card-product-title {
  font-size: 1rem;
  font-weight: 600;
  color: #000000;
}

.f-card-product-text {
  font-size: 0.875rem;
  font-weight: 400;
  color: #666666;
}

.f-card-product-price {
  font-size: 0.875rem;
  font-weight: 400;
  color: #333333;
}

.f-values-title {
  font-size: 1.25rem;
  font-weight: 500;
  color: #333333;
}

.f-values-text {
  font-size: 0.875rem;
  font-weight: 300;
  color: #333333;
}

.f-product-show-price {
  font-size: 1.875rem;
  font-weight: 300;
  color: #333333;
}

.f-product-show-title-description {
  font-size: 0.625rem;
  font-weight: 400;
  color: #666666;
}

.f-product-show-description {
  font-size: 0.875rem;
  font-weight: 400;
  color: #666666;
}

.f-cart-product-item-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #000000;
}

.f-cart-total-item-price {
  font-size: 1.25rem;
  font-weight: 400;
  color: #333333;
}

.f-comman-item-value {
  font-size: 0.875rem;
  font-weight: 500;
  color: #333333;
}

.form-error {
  margin-top: 0.5rem;
}
.form-error .error-message {
  display: flex;
  align-items: center;
  color: rgb(238, 155, 30);
  font-size: 0.875rem;
  /* background-color: #fef2f2;
  border: 1px solid #fecaca; */
  /*  border-radius: 4px; */
  padding: 0.5rem 0.75rem;
  margin-bottom: 0.25rem;
}
.form-error .error-message .icon-alert {
  margin-right: 0.5rem;
  color: rgb(238, 155, 30);
}
.form-error .error-message .icon-alert::before {
  content: "⚠️";
}
.form-error .error-message:last-child {
  margin-bottom: 0;
}

.login__form-item .form-control.is-invalid,
.login__form-item input.is-invalid {
  border-color: red;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.products__header {
  display: flex;
  align-items: center;
  height: 80px;
  padding: 0 4rem;
}
.products__header-title {
  text-transform: uppercase;
  font-size: 0.875rem;
}
.products__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 992px) {
  .products__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .products__list {
    grid-template-columns: 1fr;
  }
}

.values__item {
  height: 646px;
  display: flex;
}
.values__item:first-child {
  background-color: #EBE3D3;
}
.values__item:nth-child(2) {
  background-color: #E8F0E3;
}
.values__item.reverse {
  flex-direction: row-reverse;
}
.values__item.reverse .values__item-content {
  align-items: flex-end;
}
.values__item.reverse .values__item-content-reverse {
  max-width: 30rem;
}
.values__item-content {
  width: 66.66%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
}
.values__item-title {
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.values__item-text {
  margin-bottom: 1rem;
  max-width: 26rem;
}
.values__item-image {
  width: 33.33%;
  overflow: hidden;
}
.values__item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media screen and (max-width: 992px) {
  .values__item,
  .values__item.reverse {
    flex-direction: column;
    height: auto;
  }
  .values__item-content,
  .values__item.reverse-content {
    width: 100%;
    padding: 5rem;
    min-height: 30rem;
    justify-content: center;
  }
  .values__item-image,
  .values__item.reverse-image {
    width: 100%;
    height: 20rem;
  }
  .values__item-image img,
  .values__item.reverse-image img {
    object-fit: cover;
    object-position: center;
  }
}
.product__content {
  display: flex;
  padding-bottom: 5rem;
}
.product__image {
  flex: 1;
  overflow: hidden;
}
.product__image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.product__details {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.product__details-wrapper {
  max-width: 65%;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding-top: 5rem;
}
.product__details-title {
  margin-bottom: 1rem;
}
.product__details-price {
  margin-bottom: 3rem;
}
.product__details-description-title {
  margin-bottom: 0.5rem;
  text-transform: capitalize;
}
.product__details-description {
  margin-bottom: 1rem;
}
.product__details p:nth-last-of-type(1) {
  margin-bottom: 4rem;
}

@media screen and (max-width: 992px) {
  .product__details-wrapper {
    max-width: 100%;
    padding: 1rem 1rem 0rem 1rem;
  }
}
@media screen and (max-width: 768px) {
  .product__content {
    flex-direction: column;
  }
  .product__image {
    order: 1;
    padding: 3rem;
  }
  .product__image img {
    max-width: 100%;
    max-height: 30rem;
  }
  .product__details {
    order: 2;
  }
  .product__details-wrapper {
    padding: 3rem;
  }
}
.cart {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  align-items: flex-start;
  margin: 0 auto;
  padding: 6rem 0;
}
.cart__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  min-width: 55%;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.cart__title {
  margin-bottom: 1.5rem;
}
.cart__clear {
  cursor: pointer;
  border: none;
  background-color: transparent;
  align-self: start;
  margin-bottom: 1rem;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  line-height: 1;
  transition: all 0.3s ease;
}
.cart__clear:hover {
  color: #333333;
  font-weight: 400;
  border-bottom: 1px solid #333333;
  transition: all 0.3s ease;
}
.cart__item-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  gap: 0.3rem;
}
.cart__total {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  align-items: flex-end;
  width: 100%;
  background-color: #FFFDF7;
  padding: 1rem 3rem 1rem 1rem;
  margin-bottom: 2rem;
  justify-content: flex-start;
}
.cart__total-amount {
  font-size: 0.875rem;
}
.cart__total-price {
  margin-left: 0.1rem;
}
.cart__total-info {
  font-size: 0.75rem;
  letter-spacing: 0.2px;
}
.cart .form-cart-valid {
  width: 80%;
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}
.cart .form-cart-valid button {
  width: 100%;
}

@media screen and (max-width: 992px) {
  .cart__wrapper {
    min-width: 65%;
  }
}
@media screen and (max-width: 768px) {
  .cart__wrapper {
    min-width: 80%;
    max-width: 95%;
  }
  .cart .btn-secondary {
    width: 90%;
  }
}
.login {
  display: flex;
  margin: 0 auto;
}
.login__image {
  flex: 1;
  overflow: hidden;
}
.login__image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.login__form {
  flex: 1;
}
.login__form-title {
  margin-bottom: 2rem;
}
.login__form-wrapper {
  max-width: 70%;
  height: 100%;
  padding-top: 5rem;
  margin: 0 auto;
}
.login__form-item {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
}
.login__form-item input {
  margin-top: 0.5rem;
  height: 4.2rem;
  background-color: #FFFDF7;
  /*  border: 1px solid $gray-33; */
  padding: 1rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.login__form-item input.valid {
  border-color: #E8F0E3;
  background-color: #f6f9f4;
  box-shadow: 0 0 0 2px rgba(232, 240, 227, 0.2);
}
.login__form-item input.invalid {
  border-color: #e74c3c;
  background-color: #fdf2f2;
  box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.2);
}
.login__form-checkbox {
  margin-bottom: 1.5rem;
}
.login__link {
  margin-top: 2rem;
  width: 100%;
  text-align: center;
}
.login__link-a {
  transition: color 0.3s ease;
}
.login__link-a:hover {
  color: #1a1a1a;
}
.login input#registration_form_plainPassword_first,
.login input#registration_form_plainPassword_second {
  width: 100%;
}
.login button.toggle-password-button {
  margin-top: 0.8rem;
  font-size: 10px;
}
.login .btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  /*  background-color: lighten($gray-33, 30%); */
}

.password-requirements {
  margin-top: 1.5rem;
  margin-bottom: -1rem;
  padding: 0.3rem;
  border-radius: 6px;
}
.password-requirements small {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #8f99a1;
  font-size: 0.7rem;
}
.password-requirements .requirements-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.password-requirements .requirements-list li {
  padding: 0.05rem 0;
  transition: all 0.3s ease;
  font-weight: 400;
  font-size: 0.6rem;
  color: #7c858d;
}
.password-requirements .requirements-list li .requirement-icon {
  display: inline-block;
  margin-right: 0.5rem;
  font-size: 0.4rem;
  transition: all 0.3s ease;
}
.password-requirements .requirements-list li[data-valid=true] .requirement-icon {
  transform: scale(1.4);
  animation: bounce 0.3s ease;
}

@media screen and (max-width: 992px) {
  .login__image {
    flex: 1;
  }
  .login__form {
    flex: 2;
  }
  .login__form-wrapper {
    max-width: 75%;
  }
}
@media screen and (max-width: 768px) {
  .login {
    flex-direction: column;
  }
  .login__image {
    flex: none;
    height: 6rem;
  }
  .login__form {
    flex: none;
  }
  .login__form-wrapper {
    max-width: 90%;
  }
}
.account .account__item {
  margin: 0;
  height: 4rem;
  padding: 0;
}
.account .account__item .account__item__wrapper {
  display: flex;
  margin: 0;
  height: 100%;
  width: 100%;
}
.account .account__item .account__item__image {
  flex: 1;
}
.account .account__item .account__item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  padding: 0;
}
.account .account__item .account__item__info {
  flex: 2;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.account .account__item .account__item__info-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: rgb(151, 60, 3);
  margin-right: 2rem;
  margin-left: 1rem;
}
.account .account__item .account__item__info-details {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-left: auto;
  padding-right: 1rem;
}
.account .account__item .account__item__info-email {
  font-size: 0.7rem;
  color: #000000;
}
.account .account__item .account__item__info-date {
  font-size: 0.6rem;
  margin-left: auto;
  /*  color: $text-light; */
  font-style: italic;
}
.account .orders {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  width: 100%;
  padding: 4rem;
}
.account .orders__title {
  margin-bottom: 1.5rem !important;
  align-self: flex-start;
  display: block;
}
.account .orders__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 0.5rem;
}
.account .orders__table-head:nth-child(1) {
  text-align: left;
  width: 45%;
}
.account .orders__table-head:nth-child(2) {
  text-align: left;
  width: 100%;
}
.account .orders__table-head:nth-child(3) {
  text-align: left;
  width: 100%;
}
.account .orders__table-cell {
  vertical-align: middle;
  text-align: left;
  font-size: 14px;
  /*   &--header {
      font-weight: 600;
      color: #6c757d;
      font-size: 0.875rem;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      background-color: #f8f9fa;
  }

  &--number {
      font-weight: 600;
      color: $green;
      font-size: 1rem;
  }

  &--date {
      color: #6c757d;
      font-size: 0.9375rem;
  }

  &--price {
      font-weight: 600;
      font-size: 1rem;
      color: #212529;
  }

  &--empty {
      text-align: center;
      color: #6c757d;
      font-style: italic;
  } */
}
.account .orders__table-cell:nth-child(1) {
  text-align: left;
  width: 45%;
}
.account .orders__table-cell:nth-child(2) {
  text-align: left;
  width: 100%;
}
.account .orders__table-cell:nth-child(3) {
  text-align: left;
  width: 100%;
}

.header {
  background-color: #FFFDF7;
  border-bottom: 1px solid #F6F5F0;
  height: 80px;
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 4rem;
}
.header__logo-icon {
  height: 24px;
  width: auto;
}
.header__logo-icon:hover {
  opacity: 0.8;
  transition: opacity 0.3s ease;
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .header__nav {
    display: none;
  }
}
.header__nav-link {
  transition: color 0.3s ease;
}
.header__nav-link:hover {
  color: #000000;
}
.header__nav-link.active {
  color: #666666;
}
.header__burger {
  display: none;
  background: none;
  border: none;
  gap: 4px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.header__burger.active .header__burger-line:nth-child(1) {
  transform: rotate(45deg) translate(0, 6px);
}
.header__burger.active .header__burger-line:nth-child(2) {
  opacity: 0;
}
.header__burger.active .header__burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(0, -6px);
}
@media screen and (max-width: 768px) {
  .header__burger {
    display: flex;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }
}
.header__burger-line {
  width: 24px;
  height: 2px;
  background-color: #333333;
  border-radius: 2px;
  transition: all 0.3s ease;
  z-index: 999;
}
.header__mobilemenu {
  display: none;
  position: fixed;
  top: 80px;
  right: 0;
  width: 280px;
  height: calc(100vh - 80px);
  background-color: #FFFDF7;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  flex-direction: column;
  gap: 1.5rem;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 999;
}
.header__mobilemenu.active {
  transform: translateX(0);
}
@media screen and (max-width: 768px) {
  .header__mobilemenu {
    display: flex;
  }
}
.header__mobilemenu-link {
  padding: 1rem 0;
  border-bottom: 1px solid #E2E8F0;
  transition: color 0.3s ease;
}
.header__mobilemenu-link:last-child {
  border-bottom: none;
}
.header__mobilemenu-link.active {
  color: #666666;
}
.header__overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.header__overlay.active {
  display: block;
  opacity: 1;
}
.header__avatar {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #dbcdb0;
  color: #FFFFFF;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.875rem;
}
.header__avatar:hover {
  background-color: #cbb68d;
  transform: scale(1.05);
}
.header__avatar[data-tooltip]::before {
  content: attr(data-tooltip);
  position: absolute;
  top: 40px;
  right: -10px;
  background-color: #333333;
  color: #FFFFFF;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 0.625rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  transition-delay: 0.8s;
  z-index: 9999;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.header__avatar[data-tooltip]:hover::before {
  opacity: 1;
  visibility: visible;
}
.header__avatar[data-tooltip]:not(:hover)::before {
  transition-delay: 0s;
}

.footer {
  background-color: #FFFFFF;
  border: 1px solid #F6F5F0;
  height: 80px;
}
.footer .container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  padding: 0 4rem;
}

/* body {
    background-color: $beige-light;
} */
body {
  background-color: #FFFDF7;
  transition: background-color 0.3s ease;
}
body.page-default {
  background-color: #FFFDF7;
}
body.page-pink {
  background-color: #F7F1EC;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

.container--pink {
  background-color: #F7F1EC;
}

.container--height {
  min-height: calc(100vh - 160px);
}

.btn {
  font-size: 0.875rem;
  font-weight: 400;
  width: 100%;
  height: 4.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: all 0.5s ease;
  margin-top: auto;
  text-decoration: none;
  background-color: transparent;
}
.btn:hover {
  background-color: #333333;
}
.btn:hover .link {
  color: #FFFFFF;
  text-decoration: none;
}
.btn .link {
  color: #333333;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.btn-secondary {
  font-size: 0.875rem;
  font-weight: 400;
  width: 100%;
  height: 4.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: all 0.5s ease;
  margin-top: auto;
  text-decoration: none;
  background-color: #333333;
}
.btn-secondary:hover {
  background-color: #000000;
}
.btn-secondary:hover .link {
  color: #FFFFFF;
  text-decoration: none;
}
.btn-secondary .link {
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.order-validate {
  cursor: pointer;
}

.remove-item {
  font-size: 0.875rem;
  font-weight: 400;
  width: 100%;
  height: 4.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: all 0.5s ease;
  margin-top: auto;
  text-decoration: none;
  background-color: #666666;
  font-size: 0.47rem;
  padding: 0.5rem;
  border-radius: 50%;
  border: none;
  width: 1rem;
  height: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.remove-item:hover {
  background-color: #000000;
}
.remove-item:hover .link {
  color: #FFFFFF;
  text-decoration: none;
}
.remove-item .link {
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
.remove-item:hover {
  background-color: red;
  border-color: red;
  cursor: pointer;
}

.btn-toast {
  font-size: 0.875rem;
  font-weight: 400;
  width: 100%;
  height: 4.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: all 0.5s ease;
  margin-top: auto;
  text-decoration: none;
  background-color: rgba(47, 112, 99, 0.774);
  font-size: 0.8rem;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  border: none;
  color: #FFFFFF;
  max-width: 8rem;
}
.btn-toast:hover {
  background-color: #000000;
}
.btn-toast:hover .link {
  color: #FFFFFF;
  text-decoration: none;
}
.btn-toast .link {
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
.btn-toast:hover {
  background-color: #1a1a1a;
  cursor: pointer;
}

.cart-clear {
  cursor: pointer;
}

.hero {
  display: flex;
  min-height: 60vh;
  align-items: stretch;
  background-color: #E8F0E3;
}
.hero__left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.hero__left-wrapper {
  max-width: 380px;
  text-align: left;
}
.hero__title {
  margin-bottom: 1.5rem;
}
.hero__text {
  margin-bottom: 1.5rem;
  line-height: 1.3rem;
}
.hero__text:last-child {
  margin-bottom: 0;
}
.hero__right {
  flex: 1;
  overflow: hidden;
}
.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media screen and (max-width: 992px) {
  .hero__left-wrapper {
    max-width: 80%;
    padding: 3rem 1rem;
  }
  .hero__title {
    font-size: 3.4rem;
    margin-bottom: 1rem;
  }
  .hero__text {
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
  }
}
@media screen and (max-width: 768px) {
  .hero {
    flex-direction: column;
    min-height: auto;
  }
  .hero__left {
    flex: none;
    padding: 3rem 1rem;
  }
  .hero__title {
    font-size: 3rem;
  }
  .hero__text {
    margin-bottom: 1rem;
  }
  .hero__right {
    flex: none;
    height: 35vh;
    width: 100%;
  }
}

.card-product {
  display: flex;
  flex-direction: column;
}
.card-product__image {
  width: 100%;
  height: 470px;
  overflow: hidden;
}
.card-product__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom center;
}
@media screen and (max-width: 992px) {
  .card-product__image {
    height: 370px;
  }
}
@media screen and (max-width: 768px) {
  .card-product__image {
    height: 300px;
  }
}
.card-product__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding-top: 2rem;
}
.card-product__content-title {
  margin-bottom: 0.3rem;
}
.card-product__content-price {
  margin-top: 0.8rem;
  margin-bottom: 1rem;
}

.cart__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #FFFDF7;
  width: 100%;
  padding: 1rem;
}
.cart__item-image {
  width: 142px;
  height: 142px;
  overflow: hidden;
  border-radius: 5px;
}
.cart__item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart__item-details {
  flex: 1;
  margin-left: 1rem;
}
.cart__item-price {
  font-size: 1.125rem;
  margin-top: 0.5rem;
}

.cart__item-qty {
  width: 3rem;
  border: none;
}
.cart__item-qty:focus {
  outline: none;
}
.cart__item-qty::-webkit-inner-spin-button, .cart__item-qty::-webkit-outer-spin-button {
  opacity: 0.7;
}
.cart__item-qty::-ms-inner-spin-button {
  opacity: 0.7;
}
.cart__item-qty::-moz-inner-spin-button {
  opacity: 0.7;
}

/*# sourceMappingURL=app.output.css.map */
