.recommended__container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

@media (min-width: 744px) {
  .recommended__container {
    flex-direction: row;
    gap: 32px;
    align-items: stretch;
    justify-content: space-between;
  }
}


.product-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 600px;
  font-family: Manrope, sans-serif;
  text-decoration: none;
}

@media (min-width: 744px) {
  .product-card {
    flex: 1;
  }
}


.product-card__image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  width: 100%;
  margin-bottom: 24px;
  padding: 20px;
  background-color: #f8f8f9;
}


.product-card__image {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.product-card__image:hover {
  transform: scale(1.1);
}


.product-card__title {
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  color: #1b2129;
  text-transform: uppercase;
}


.product-card__description {
  flex-grow: 1;
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.4;
  color: #1b2129;
}


.product-card__price {
  font-size: 16px;
  font-weight: 700;
  color: #1b2129;
}


.category-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}


.category-card__image-wrapper {
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  place-items: center;
  width: 100%;
  height: 324px;
  padding: 20px;
}


.category-card__image {
  display: block;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.category-card__image:hover {
  transform: scale(1.1);
}


.category-card__name {
  margin-top: 12px;
  font-size: 16px;
  font-weight: 700;
  color: #1b2129;
}


.timeless {
  padding-bottom: 60px;
  background-color: #f8f8f9;
}


.timeless__image-container {
  width: 100%;
  height: 400px;
  margin-top: 80px;
  margin-bottom: 170px;
}

@media (min-width: 744px) {
  .timeless__image-container {
    margin-top: 120px;
  }
}


.timeless__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.timeless__image:hover {
  transform: scale(1.1);
}


.timeless__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 744px) {
  .timeless__content {
    flex-direction: row;
    gap: 60px;
    justify-content: space-between;
  }
}


.timeless__title {
  flex: 1;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  color: #1b2129;
}


.timeless__description {
  flex: 1;
  font-size: 18px;
  line-height: 1.5;
  color: #1b2129;
}


.form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 560px;
}


.form__input {
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 4px;
  background-color: #f4f4f5;
  outline: none;
}


.form__button {
  height: 56px;
  border: none;
  border-radius: 4px;
  font-weight: 700;
  color: #fff;
  background-color: #ff8a00;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.form__button:hover {
  background-color: #313942;
}

.form__button:active {
  background-color: black;
}


.form__input--textarea {
  resize: none;
}


/* GLOBAL RESET */

*,
*::before,
*::after {
  box-sizing: border-box;
}


/* TOP BAR */

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px;
}

@media (min-width: 1260px) {
  .top-bar {
    padding: 32px 72px;
  }
}


.top-bar__logo-img {
  display: block;
  height: 35px;
  outline: none;
}


.top-bar__icons {
  display: flex;
  gap: 24px;
  align-items: center;
}


.top-bar__icon {
  position: relative;
  display: block;
  width: 32px;
  height: 32px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: transform 0.3s ease;
}

.top-bar__icon:hover {
  transform: scale(1.1);
}


.top-bar__icon--phone {
  background-image: url("../images/Phone-number.png");
}


.top-bar__icon--phone .phone-number {
  pointer-events: none;
  position: absolute;
  top: 50%;
  right: 35px;
  transform: translateY(-50%);
  display: none;
  font-family: Manrope, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  color: black;
  letter-spacing: 2px;
  white-space: nowrap;
  transition: opacity 0.3s ease;
}

@media (min-width: 1260px) {
  .top-bar__icon--phone:hover .phone-number {
    display: block;
  }
}


.top-bar__icon--burger {
  background-image: url("../images/Icon-Burger-menu.png");
}


/* PAGE */

.page {
  scroll-behavior: smooth;
  display: grid;
  row-gap: 40px;
  margin-bottom: 300px;
  font-family: Manrope, sans-serif;
  color: #1b2129;
}


.page__body {
  margin: 0;
  line-height: 1.5;
}


.page__menu {
  pointer-events: none;
  position: fixed;
  z-index: 1000;
  inset: 0;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  padding: 16px;
  opacity: 0;
  background-color: #fff;
  transition: opacity 0.3s ease;
}

@media (min-width: 1260px) {
  .page__menu {
    padding: 32px 72px;
  }
}


.page__menu:target {
  pointer-events: all;
  opacity: 1;
}


/* MENU */

.menu__top-bar {
  position: sticky;
  top: 0;
  z-index: 2;
  background-color: #fff;
}


.menu__nav {
  flex-grow: 1;
  margin-top: 64px;
}


.menu__list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin: 0;
  padding: 0;
  list-style: none;
}


.menu__link {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  color: #1b2129;
  text-decoration: none;
  text-transform: capitalize;
  transition: color 0.3s ease;
}

.menu__link:hover {
  color: #ff8a00;
}


.menu__footer {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 40px;
}


.menu__phone,
.menu__call-to-order {
  font-size: 20px;
  font-weight: 700;
  color: #1b2129;
  text-decoration: none;
  transition: color 0.3s ease;
}

.menu__phone:hover {
  color: #ff8a00;
}


.menu__call-to-order {
  text-transform: uppercase;
}


/* CLOSE ICON */

.close {
  display: block;
  width: 32px;
  height: 32px;
  background: url("../images/icon-close.png") center / contain no-repeat;
}


/* LOCK SCROLL WHEN MENU OPEN */

.page:has(.page__menu:target) {
  overflow: hidden;
}


/* HEADER */

.header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100vh;
  background: linear-gradient(
      rgba(0, 0, 0, 0.2),
      rgba(0, 0, 0, 0.2)
    ),
    url("../images/header-bg.png") center bottom / cover no-repeat;
}


.header__bottom {
  padding: 0 16px 40px;
}

@media (min-width: 1260px) {
  .header__bottom {
    padding: 0 72px 80px;
  }
}


.header__title {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
}

@media (min-width: 1260px) {
  .header__title {
    font-size: 48px;
  }
}


/* FOOTER */

.footer {
  position: sticky;
  bottom: 0;
  z-index: -1;
}


/*# sourceMappingURL=main.css.map */
