/* Specification */
body {
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #403f3d;
  background: #e1d4c9;
}

html {
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5 {
  padding: 0;
  margin: 0;
}

h1,
h2 {
  font-size: 60px;
  font-weight: 600;
}

* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

p {
  margin: 0;
}

ul,
li {
  display: block;
  padding: 0;
  margin: 0;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1440px;
  padding: 0 40px 0;
  margin: 0 auto;
}

.different-color {
  color: #b0907a;
  font-style: italic;
}

.open {
  display: flex !important;
}

body.lock {
  overflow: hidden;
  touch-action: none;
}

/* HEADER */

.header {
  padding: 20px 0;
}

.header__wrapper {
  display: flex;
  align-items: center;
}

.header__wrapper > nav {
  flex: 1;
}

.header__mobile-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  margin-left: auto;
  position: relative;
  z-index: 300;
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(64, 63, 61, 0.5);
  z-index: 100;
}

.nav-overlay.active {
  display: block;
}

.menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  width: 100px;
}

.logo-1 {
  display: none;
  width: 80px;
  flex-shrink: 0;
}

.menu__list {
  display: flex;
}

.menu__item:not(:last-of-type) {
  margin-right: 40px;
}

.menu__item {
  padding-bottom: 3px;
  border: 2px solid transparent;
  transition: all 0.5s ease;
}

.menu__item:hover {
  border-bottom: 2px solid #403f3d;
  transition: all 0.5s ease;
}

.menu__link {
  color: #403f3d;
  font-weight: 600;
}

.header__menu-btn {
  display: flex;
  align-items: flex-end;
  color: #403f3d;
  font-weight: 600;
  line-height: 1.1;
  border: 2px solid transparent;
  padding-bottom: 3px;
}

.header__menu-btn:hover {
  border-bottom: 2px solid #403f3d;
  transition: all 0.5s ease;
}

.header__icon-img {
  margin-left: 8px;
}

.mobile-menu {
  display: none;
  position: relative;
  z-index: 300;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 100px;
  border: 1px solid #665f55;
  cursor: pointer;
  flex-shrink: 0;
}

.mobile-menu span {
  position: absolute;
  width: 16px;
  height: 1.5px;
  background-color: #403f3d;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.mobile-menu::before,
.mobile-menu::after {
  content: "";
  position: absolute;
  height: 1.5px;
  width: 16px;
  background-color: #403f3d;
  transition: all 0.3s ease;
}

.mobile-menu::before {
  top: 14px;
}

.mobile-menu::after {
  bottom: 14px;
}

.mobile-menu.active span {
  transform: scale(0);
}

.mobile-menu.active::before {
  top: 50%;
  transform: rotate(-45deg) translate(0, -50%);
  transition: all 0.5s ease;
}

.mobile-menu.active::after {
  bottom: 50%;
  transform: rotate(45deg) translate(0, 50%);
  transition: all 0.5s ease;
}

/* ================================
   HERO — enjoy
   ================================ */

.enjoy {
  padding: 16px;
}

.enjoy__wrapper {
  position: relative;
  border-radius: 40px;
  min-height: 580px;
  display: flex;
  flex-direction: column;
  background: url(../img/фон3.png) center / cover no-repeat;
  overflow: hidden;
}

.enjoy__wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(30, 25, 20, 0.82) 0%,
    rgba(30, 25, 20, 0.55) 55%,
    rgba(30, 25, 20, 0.15) 100%
  );
  border-radius: inherit;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

.offer {
  color: #e1d4c9;
  max-width: 640px;
  position: relative;
  z-index: 3;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  justify-content: center;
  margin-left: 100px;
  padding: 80px 0;
}

/* Badge above title */
.offer::before {
  content: "☕  Турецька кава та смаки Сходу";
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(176, 144, 122, 0.25);
  border: 1px solid rgba(176, 144, 122, 0.4);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #d4b9a8;
  margin-bottom: 28px;
  width: fit-content;
  backdrop-filter: blur(4px);
}

.offer__title {
  font-size: 68px;
  line-height: 108%;
  letter-spacing: -0.02em;
  margin: 0;
}

.offer__text {
  margin: 32px 0;
  line-height: 160%;
  color: rgba(225, 212, 201, 0.8);
  font-size: 17px;
}

.offer__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 32px;
  border-radius: 100px;
  background: #e1d4c9;
  color: #403f3d;
  font-weight: 700;
  font-size: 15px;
  margin-top: 40px;
  width: fit-content;
  letter-spacing: 0.02em;
  transition:
    background 0.25s,
    transform 0.2s,
    box-shadow 0.25s;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.offer__btn::after {
  content: "→";
  font-size: 18px;
  transition: transform 0.2s;
}

.offer__btn:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.offer__btn:hover::after {
  transform: translateX(4px);
}

/* ================================
   SLIDER — favourites coffee
   ================================ */

.favourites-coffee {
  padding: 60px 0 50px;
}

.favourites-coffee__title {
  text-align: center;
  line-height: 125%;
  margin-bottom: 40px;
  position: relative;
}

.favourites-coffee__title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #b0907a, #665f55);
  border-radius: 2px;
  margin: 20px auto 0;
}

.favourites-coffee__slider {
  padding: 0 20px;
}

.slider__wrapper {
  padding: 16px 10px;
}

.slick-track {
  display: flex;
  align-items: stretch;
}

.slick-slide {
  height: auto;
  display: flex;
}

.slider__wrapper {
  height: 100%;
}

.slider__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-radius: 28px;
  padding: 28px 20px;
  box-shadow: 0 4px 20px rgba(64, 63, 61, 0.07);
  border: 1px solid rgba(193, 182, 173, 0.35);
  transition: transform 0.3s ease;
  width: 100%;
}

.slider__content:hover {
  transform: translateY(-6px);
}

.slider__img {
  width: 130px;
  height: 130px;
  object-fit: contain;
}

.slider__title {
  font-size: 15px;
  font-weight: 700;
  margin-top: 16px;
  line-height: 135%;
  color: #2d2b29;
  overflow: visible;
}

.slider__text {
  display: none;
}

.slider__prise {
  font-size: 17px;
  font-weight: 700;
  color: #b0907a;
  margin-top: 14px;
}


/* Dots */
.slick-dots li {
  margin: 0 4px;
}

.slick-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c1b6ad;
  transition: all 0.3s;
  padding: 0;
}

.slick-dots li.slick-active button {
  background: #665f55;
  width: 28px;
  border-radius: 4px;
}

/* Arrows — мінімалістичні, злиті зі слайдером */
.slick-arrow {
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 16px rgba(64, 63, 61, 0.15);
  transition: all 0.25s ease;
  z-index: 10;
  top: 50%;
  margin-top: -22px;
}

.slick-arrow.slick-prev {
  background-image: url(../img/arrow-left.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px;
  left: -4px;
}

.slick-arrow.slick-next {
  background-image: url(../img/arrow-right.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px;
  right: -4px;
}

.slick-arrow:hover {
  background-color: #665f55;
  box-shadow: 0 6px 20px rgba(102, 95, 85, 0.3);
}

.slick-arrow.slick-prev:hover {
  background-image: url(../img/arrow-left2.svg);
  background-size: 18px;
}

.slick-arrow.slick-next:hover {
  background-image: url(../img/arrow-right2.svg);
  background-size: 18px;
}

.slider__title {
  font-size: 20px;
  margin-top: 20px;
  line-height: 125%;
}

.slider__text {
  max-width: 460px;
  text-align: center;
  line-height: 150%;
  margin: 16px 0;
}

.slider__img {
  width: 160px;
  height: 160px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.slider__order-btn {
  display: block;
  width: 100%;
  margin-top: 12px;
  padding: 10px 20px;
  border-radius: 100px;
  background: #b0907a;
  color: #fff;
  border: none;
  font-size: 14px;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  cursor: pointer;
  transition:
    background 0.25s,
    transform 0.2s;
}

.slider__order-btn:hover {
  background: #665f55;
  transform: translateY(-1px);
}

.slider__prise {
  font-size: 24px;
  font-weight: 600;
}

.slick-list {
  overflow: hidden;
}

.slick-track {
  display: flex;
  align-items: flex-start;
}

.slider {
  position: relative;
}

.slick-arrow {
  position: absolute;
  top: 50%;
  margin: -30px 0px 0px 0px;
  z-index: 10;
  font-size: 0;
  width: 60px;
  height: 60px;
  border: 1px solid #665f55;
  border-radius: 100px;
  background-color: transparent;
  transition: all ease 0.5s;
  cursor: pointer;
}

.slick-arrow.slick-prev {
  left: 0;
  background-image: url(../img/arrow-left.svg);
  background-repeat: no-repeat;
  background-position: center;
}

.slick-arrow.slick-next {
  right: 0;
  background-image: url(../img/arrow-right.svg);
  background-repeat: no-repeat;
  background-position: center;
}

.slick-arrow.slick-prev:hover {
  background-image: url(../img/arrow-left2.svg);
  background-color: #665f55;
}

.slick-arrow.slick-next:hover {
  background-image: url(../img/arrow-right2.svg);
  background-color: #665f55;
}

.slick-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.slick-dots li {
  list-style: none;
}

.slick-dots button {
  font-size: 0;
  border: none;
  cursor: pointer;
}

/* about */

.about {
  padding-bottom: 100px;
}

.about__title {
  font-size: 59px;
  margin-bottom: 40px;
  line-height: 125%;
}

.about__content-wrapper {
  display: flex;
  justify-content: space-between;
}

.about__images {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.about__images img {
  border-radius: 20px;
  object-fit: cover;
}

.about__img {
  width: 50%;
  border-radius: 20px;
  transition: all ease 0.6s;
}
.about__content-wrapper {
  display: flex;
}
.about__text {
  width: 80%;
  font-size: 20px;
}

.about__img1 {
  width: 660px;
  height: 430px;
  transition: all ease 0.6s;
}

.about__img:hover {
  transform: scale(0.9);
  transition: all ease 0.6s;
}

.about__img1:hover {
  transform: scale(0.9);
  transition: all ease 0.6s;
}

/* mobile-app */

.mobile-app__wrapper {
  display: flex;
  align-items: center;
}

.mobile-app__content {
  margin-right: 100px;
}

.mobile-app__title {
  line-height: 125%;
}

.mobile-app__text {
  margin: 40px 0;
  line-height: 150%;
}

.mobile-app__btn {
  font-size: 10px;
  font-weight: 600;
  text-align: left;
  padding-left: 64px;
  border: 1px solid #403f3d;
  border-radius: 100px;
  width: 200px;
  height: 64px;
  color: inherit;
  background-color: transparent;
  transition: all ease 0.5s;
  cursor: pointer;
  display: inline-block;
}

.mobile-app__btn-wrapper {
  display: flex;
  align-items: center;
}

.mobile-app__btn-icon {
  margin-right: 8px;
}

.mobile-app__btn-text span {
  display: block;
}

.mobile-app__btn-text {
  font-family: Inter;
  font-weight: 600;
  font-size: 10px;
  line-height: 140%;
  color: #403f3d;
  text-align: start;
  margin: 11px 0;
}

.mobile-app__fat {
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  color: #403f3d;
}

.btn-1 {
  background-image: url(../img/icon.svg);
  background-repeat: no-repeat;
  background-position: 20px 12px;
}

.btn-1:hover {
  background-image: url(../img/icon-col.svg);
  background-color: #665f55;
}

.btn-2 {
  background-image: url(../img/icon2.svg);
  background-repeat: no-repeat;
  background-position: 20px 12px;
  margin-left: 20px;
}

.btn-2:hover {
  background-image: url(../img/icon-col2.svg);
  background-color: #665f55;
}

.mobile-app__fat:hover {
  color: #e1d4c9;
}
.mobile-app__btn-text:hover {
  color: #e1d4c9;
}



/* ================================
   FOOTER
   ================================ */

.footer {
  padding: 50px 0 32px;
}

.footer__container {
  background: linear-gradient(135deg, #4a4440 0%, #665f55 60%, #7a6f63 100%);
  border-radius: 40px;
  max-width: 1360px;
  position: relative;
  overflow: hidden;
}

/* Decorative circle */
.footer__container::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  top: -200px;
  right: -100px;
  pointer-events: none;
}

.footer__wrapper {
  display: flex;
  align-items: flex-start;
  padding: 80px 72px;
  gap: 80px;
  color: #e1d4c9;
  position: relative;
  z-index: 1;
}

/* Left side */
.footer__social-networks {
  flex: 1;
}

.footer__title {
  font-size: 36px;
  font-weight: 700;
  line-height: 130%;
  letter-spacing: -0.01em;
}

.footer__title .different-color {
  color: #d4a98a;
  font-style: italic;
}

.social-networks__list {
  display: flex;
  margin-top: 36px;
  gap: 12px;
}

.social-networks__item:not(:last-of-type) {
  margin-right: 0;
}

.social-networks__item a {
  display: flex;
  width: 52px;
  height: 52px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 1.5px solid rgba(225, 212, 201, 0.3);
  background-color: rgba(225, 212, 201, 0.08);
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.25s ease;
}

.social-networks__item a:hover {
  background: rgba(225, 212, 201, 0.2);
  border-color: rgba(225, 212, 201, 0.6);
  transform: translateY(-3px);
}

.social-networks__link-inst {
  background-image: url(../img/instagram.svg);
  background-repeat: no-repeat;
  background-position: center;
}

.social-networks__link-twit {
  background-image: url(../img/twitter.svg);
  background-repeat: no-repeat;
  background-position: center;
}

.social-networks__link-facebook {
  background-image: url(../img/facebook.svg);
  background-repeat: no-repeat;
  background-position: center;
}

/* Right side — contacts */
.footer__contact {
  min-width: 260px;
}

.footer__contact-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(225, 212, 201, 0.55);
  margin-bottom: 28px;
}

.contact__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact__item:not(:last-of-type) {
  margin-bottom: 0;
}

.contact__link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 16px;
  color: #e1d4c9;
  border: none;
  padding: 0;
  max-width: none;
  transition:
    color 0.2s,
    gap 0.2s;
}

.contact__link:hover {
  color: #fff;
  gap: 16px;
  border-bottom: none;
}

.contact__clock {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
}

.contact__clock p {
  font-weight: 600;
  color: rgba(225, 212, 201, 0.85);
}

.contact__img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-right: 0;
  opacity: 0.7;
}

.contact__img {
  margin-right: 8px;
}

/* ================================
   GIFT BOX BUILDER
   ================================ */

.gift-box {
  padding: 50px 0 90px;
}

.gift-box__title {
  text-align: center;
  margin-bottom: 40px;
  line-height: 125%;
}

.gift-box__builder {
  background: rgba(193, 182, 173, 0.25);
  border-radius: 40px;
  padding: 48px;
}

.gift-box__step {
  margin-bottom: 48px;
}

.gift-box__step-title {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.gift-box__step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #b0907a;
  color: #fff;
  border-radius: 50%;
  font-size: 15px;
  font-weight: 700;
  flex-shrink: 0;
}

/* Size cards */
.gift-box__sizes {
  display: flex;
  gap: 20px;
}

.gift-size {
  flex: 1;
  cursor: pointer;
}

.gift-size input[type="radio"] {
  display: none;
}

.gift-size__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 16px;
  border: 2px solid #c1b6ad;
  border-radius: 24px;
  background: #e1d4c9;
  transition: all 0.25s ease;
  text-align: center;
  gap: 6px;
  height: 100%;
  box-sizing: border-box;
}

.gift-size__card:hover {
  border-color: #b0907a;
  transform: translateY(-3px);
}

.gift-size__card.selected {
  border-color: #665f55;
  background: #665f55;
  color: #e1d4c9;
}

.gift-size__letter {
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
}

.gift-size__name {
  font-weight: 600;
  font-size: 15px;
}

.gift-size__desc {
  font-size: 13px;
  opacity: 0.65;
}

.gift-size__base {
  font-weight: 700;
  font-size: 20px;
  margin-top: 6px;
  color: #b0907a;
}

.gift-size__card.selected .gift-size__base {
  color: #e1d4c9;
}

/* Categories */
.gift-box__categories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.gift-category {
  background: #e1d4c9;
  border-radius: 24px;
  padding: 24px;
}

.gift-category__title {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 16px;
  color: #403f3d;
}

.gift-category__items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gift-item {
  cursor: pointer;
  display: block;
}

.gift-item input[type="checkbox"] {
  display: none;
}

.gift-item__label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid #c1b6ad;
  border-radius: 12px;
  font-size: 14px;
  transition: all 0.2s;
  background: rgba(193, 182, 173, 0.2);
  gap: 8px;
}

.gift-item__label:hover {
  border-color: #b0907a;
}

.gift-item input:checked + .gift-item__label {
  background: #665f55;
  color: #e1d4c9;
  border-color: #665f55;
}

.gift-item input:checked + .gift-item__label:hover {
  background: #403f3d;
  border-color: #403f3d;
}

.gift-item__price {
  font-weight: 600;
  white-space: nowrap;
  color: #b0907a;
  flex-shrink: 0;
}

.gift-item input:checked + .gift-item__label .gift-item__price {
  color: rgba(225, 212, 201, 0.8);
}

/* Footer */
.gift-box__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  gap: 24px;
}

.gift-box__total-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 18px;
  font-weight: 600;
}

.gift-box__total-price {
  font-size: 32px;
  font-weight: 700;
  color: #b0907a;
}

.gift-box__btn {
  padding: 16px 40px;
  background: #665f55;
  color: #e1d4c9;
  border: none;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
  font-family: "Inter", sans-serif;
  white-space: nowrap;
  flex-shrink: 0;
}

.gift-box__btn:hover:not(:disabled) {
  background: #403f3d;
}

.gift-box__btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

/* Gift box — item limit counter */
.gift-box__limit-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.gift-items-counter {
  font-size: 13px;
  font-weight: 600;
  color: #665f55;
  transition: color 0.2s;
}

.gift-limit-hint {
  display: none;
  font-size: 13px;
  color: #b0907a;
  font-style: italic;
  margin-bottom: 16px;
}

.gift-item.disabled .gift-item__label {
  opacity: 0.38;
  cursor: not-allowed;
}

.gift-item.disabled input[type="checkbox"] {
  pointer-events: none;
}

/* Gift box — comment */
.gift-box__comment {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #c1b6ad;
}

.gift-box__comment-label {
  display: block;
  font-weight: 600;
  font-size: 15px;
  color: #665f55;
  margin-bottom: 10px;
}

.gift-box__comment-textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid #c1b6ad;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.5);
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: #403f3d;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
  resize: vertical;
  min-height: 90px;
}

.gift-box__comment-textarea:focus {
  border-color: #b0907a;
}

/* Cart item — gift box placeholder image */
.cart-item__img-placeholder {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background: rgba(193, 182, 173, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}

.cart-item__contents {
  font-size: 11px;
  color: #665f55;
  display: block;
  margin-bottom: 3px;
  line-height: 1.4;
  white-space: normal;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* ================================
   RESPONSIVE
   ================================ */

/* 1199px */
@media (max-width: 1199px) {
  .footer__wrapper {
    padding: 80px 40px;
  }
  .footer__container {
    margin: 0 40px;
  }
  .gift-box__builder {
    padding: 36px;
  }
}

/* 1199px */
@media (max-width: 1199px) {
  .footer__wrapper {
    padding: 64px 48px;
    gap: 60px;
  }
  .footer__container {
    margin: 0 40px;
  }
  .footer__title {
    font-size: 28px;
  }
}

/* 991px — tablet / mobile menu */
@media (max-width: 991px) {
  .logo-1 {
    display: block;
    z-index: 200;
  }
  .logo {
    display: none;
  }

  /* Mobile slide-in nav */
  .menu {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100vw;
    height: 100%;
    padding: 40px 32px;
    background-color: #e1d4c9;
    z-index: 250;
    overflow-y: auto;
    transition: right 0.4s ease;
  }

  .menu.open {
    right: 0;
  }

  /* Логотип всередині меню */
  .menu .logo {
    display: block;
    width: 90px;
    margin-bottom: 48px;
  }

  .menu__list {
    flex-direction: column;
    align-items: center;
    row-gap: 0;
    margin-bottom: 40px;
    width: 100%;
    text-align: center;
  }

  .menu__item {
    border: none;
    padding: 0;
    width: 100%;
  }

  .menu__item:not(:last-of-type) {
    margin-right: 0;
  }

  .menu__link {
    font-size: 24px;
    font-weight: 700;
    display: block;
    padding: 18px 0;
    color: #403f3d;
    border-bottom: 1px solid rgba(193, 182, 173, 0.6);
    transition: color 0.2s;
  }

  .menu__link:active {
    color: #b0907a;
  }

  .header__menu-btn {
    font-size: 16px;
    font-weight: 700;
    margin-top: 32px;
    color: #403f3d;
    padding: 14px 32px;
    border: 2px solid #665f55;
    border-radius: 100px;
    justify-content: center;
    transition: all 0.25s;
    align-self: center;
  }

  .header__icon-img {
    margin-left: 10px;
    width: 20px;
  }

  .mobile-menu {
    display: flex;
  }

  /* Disable hover effects on touch */
  .menu__item:hover {
    border-bottom: none;
  }
  .header__menu-btn:hover {
    border-bottom: none;
  }
  .slick-arrow.slick-next:hover {
    background-image: url(../img/arrow-right.svg);
    background-color: transparent;
  }
  .slick-arrow.slick-prev:hover {
    background-image: url(../img/arrow-left.svg);
    background-color: transparent;
  }
  .social-networks__link-inst:hover {
    background-image: url(../img/instagram.svg);
    background-color: transparent;
  }
  .contact__link:hover {
    border-bottom: none;
  }

  /* Offer */
  .offer {
    margin-left: 48px;
    max-width: 520px;
  }

  .offer__title {
    font-size: 52px;
  }

  /* Footer */
  .footer__wrapper {
    flex-wrap: wrap;
    gap: 48px;
  }

  .footer__contact {
    margin-left: 0;
    margin-top: 0;
  }

  /* Gift box */
  .gift-box__builder {
    padding: 28px 24px;
  }
  .gift-box__sizes {
    gap: 12px;
  }
  .gift-box__footer {
    flex-direction: column;
    align-items: stretch;
  }
  .gift-box__btn {
    width: 100%;
    text-align: center;
  }
}

/* 767px */
@media (max-width: 767px) {
  h1,
  h2 {
    font-size: 42px;
  }

  .offer {
    padding: 60px 24px;
    margin: 0;
    max-width: 100%;
  }

  .offer__title {
    font-size: 44px;
  }

  .offer::before {
    font-size: 12px;
    padding: 6px 14px;
  }

  .favourites-coffee {
    padding: 60px 0;
  }

  .favourites-coffee__title {
    font-size: 36px;
    line-height: 130%;
  }
  .about__text {
    width: 100%;
    
}
.about__img {
  display: none;
}

  .footer__wrapper {
    padding: 56px 32px;
    gap: 40px;
  }

  .footer__title {
    font-size: 24px;
  }

  .footer__social-networks {
    max-width: 100%;
  }

  /* Gift box — 1-column categories */
  .gift-box__categories {
    grid-template-columns: 1fr;
  }

  .gift-box__sizes {
    flex-direction: column;
    gap: 10px;
  }

  .gift-size__card {
    flex-direction: row;
    justify-content: space-between;
    padding: 16px 20px;
    gap: 12px;
  }

  .gift-size__letter {
    font-size: 28px;
    min-width: 36px;
  }

  .gift-size__desc {
    display: none;
  }

  .gift-box__total-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .gift-box__total-price {
    font-size: 26px;
  }
}

/* 575px — small mobile */
@media (max-width: 575px) {
  .container {
    padding: 0 16px;
  }

  .enjoy {
    padding: 8px;
  }

  .enjoy__wrapper {
    border-radius: 28px;
    min-height: 420px;
  }

  h2 {
    font-size: 32px;
  }

  .offer {
    padding: 48px 20px 60px;
    margin: 0;
  }

  .offer__title {
    font-size: 34px;
    letter-spacing: -0.01em;
  }

  .offer::before {
    font-size: 11px;
    padding: 5px 12px;
  }

  .offer__btn {
    padding: 15px 24px;
    font-size: 14px;
    margin-top: 28px;
  }

  .favourites-coffee {
    padding: 48px 0;
  }

  .favourites-coffee__title {
    font-size: 26px;
  }

  /* Mobile slider — peek effect без обрізання */
  .favourites-coffee {
    overflow: hidden;
  }

  .favourites-coffee .container {
    overflow: visible;
    padding-left: 0;
    padding-right: 0;
  }

  .favourites-coffee__title {
    padding: 0 16px;
  }

  .favourites-coffee__slider {
    padding: 0;
    margin: 0;
    overflow: visible;
  }

  .slick-list {
    overflow: visible !important;
  }

  .slider__wrapper {
    padding: 12px 8px;
  }

  .slider__content {
    padding: 20px 14px;
    border-radius: 20px;
  }

  .slider__img {
    width: 100px;
    height: 100px;
  }

  .slider__title {
    font-size: 13px;
    margin-top: 12px;
  }

  .slider__prise {
    font-size: 15px;
    margin-top: 10px;
  }

  .slick-dots {
    margin-top: 20px;
    padding: 0 16px;
  }

  /* Footer */
  .footer__wrapper {
    padding: 48px 24px;
  }

  .footer__contact {
    margin-top: 0;
  }

  .footer__container {
    margin: 0 16px;
    border-radius: 28px;
  }

  .footer__title {
    font-size: 20px;
    line-height: 138%;
  }

  /* Gift box */
  .gift-box {
    padding: 48px 0 60px;
  }

  .gift-box__title {
    font-size: 28px;
    margin-bottom: 36px;
  }

  .gift-box__builder {
    padding: 20px 16px;
    border-radius: 24px;
  }

  .gift-box__step-title {
    font-size: 17px;
  }
}
