/*
Theme Name: Vines Theme
Theme URI: https://yourdomain.com
Author: Nikita B.
Author URI: https://yourdomain.com
Description: Тема для сайта Vines Theme
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: vinestheme
*/

/* ===== VARIABLES & RESET ===== */
:root {
  --max-w: 1200px;
  --primary-red: #902732;
  --dark-red: #ce1119;
  --primary-green: #339966;
  --dark-green: #2a7a53;
  --text-dark: #222;
  --text-gray: #666;
  --bg-light: #f5f5f7;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: 'TildaSans', Arial, sans-serif;
}

h1, h2, h3, h4, h5, h6, p, a, li, span {
    font-family: 'TildaSans', Arial, sans-serif;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
}

.flex-container {
  display: flex;
  padding-top: 20px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

/* ===== HEADER & NAVIGATION ===== */
header {
  background: #fff;
  box-shadow: 0 1px 8px rgba(18, 18, 18, 0.5);
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-inner {
  width: 70%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  max-width: 100%;
  padding: 10px 0;
  height: 90px;
}

.header-inner_first {
  display: flex;
  align-items: center;
  gap: 18px;
  width: 100%;
  height: 100%;
}

.header-inner_first div {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  height: 100%;
}

.header-inner_first__logo {
  flex-basis: 10%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  height: 100%;
}

.header-inner_first__logo img {
  object-fit: contain;
  height: 100%;
  width: 100%;
}

.header-inner_first__text {
  font-size: 12px;
  font-weight: 500;
}

.header-inner_first__phone a {
  font-size: 18px;
  font-weight: 500;
  color: #902732;
  text-decoration: none;
  display: flex;
  justify-content: center;
}

.header-inner_first__phone {
  display: flex;
  justify-content: center;
  width: 100%;
}

.header-inner_first__search {
  height: 32px;
}

.header-inner_first__search img {
  width: 100%;
  height: 100%;
}

.header-inner_first__search span {
  display: flex;
  height: 100%;
  align-items: center;
}

.header-inner_first__socials {
  display: flex;
  height: 100%;
  align-items: center;
}

.header-inner_second {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.header-inner_second nav {
  font-size: 14px;
  font-weight: 600;
  flex: 1;
  display: flex;
  align-items: center;
  gap: 3px;
}

.header-inner_second nav a {
  color: var(--text-dark);
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 8px;
  font-weight: 600;
  width: max-content;
}

.header-inner_second nav a:hover {
  color: var(--dark-red);
}

.header-inner_first__phone a:hover {
  color: var(--dark-red);
}

.header-inner_second__make-call {
  display: flex;
  width: 170px;
  align-items: center;
  height: 40px;
  justify-content: center;
  background-color: #902732;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.2s 
ease-in-out;
}

/* ===== MOBILE MENU ===== */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  position: absolute;
  right: 20px;
  z-index: 1001;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  background: #fff;
  z-index: 1000;
  transition: left 0.3s ease;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.mobile-menu.active {
  left: 0;
}

.mobile-menu__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
  background: #fff;
}

.mobile-menu__logo img {
  height: 35px;
  width: auto;
}

.mobile-menu__close {
  background: none;
  border: none;
  font-size: 32px;
  color: var(--text-dark);
  cursor: pointer;
  line-height: 1;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.mobile-menu__nav {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-menu__nav a {
  padding: 16px 0;
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 16px;
  border-bottom: 1px solid #f0f0f0;
  transition: color 0.2s ease;
}

.mobile-menu__nav a:last-child {
  border-bottom: none;
}

.mobile-menu__contacts {
  padding: 20px;
  background: #f8f8f8;
  border-top: 1px solid #eee;
}

.mobile-menu__phone {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-red);
  margin-bottom: 15px;
  text-align: center;
}

.mobile-menu__socials {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.mobile-menu__socials img {
  width: 35px;
  height: 35px;
}

.mobile-menu__call-btn {
  display: block;
  width: 100%;
  padding: 14px;
  background: var(--primary-red);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  font-size: 16px;
}

.mobile-menu__call-btn:hover {
  background: var(--dark-red);
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu__logo-additional {
  display: none;
}

/* ===== SLIDERS & CAROUSELS ===== */
.main-hero {
  position: relative;
  width: 100%;
  height: 100vh; /* на весь экран */
  overflow: hidden;
}

.main-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

/* Контейнер поверх изображения */
.container.hero-content {
  position: absolute; /* <-- ключевой момент */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* растягиваем на весь блок */
  z-index: 2;
  display: flex;
  align-items: center; /* выравнивание по вертикали */
  justify-content: center; /* выравнивание по горизонтали */
  flex-direction: column;
  text-align: center;
  color: #fff;
  padding: 0 20px;
  background: rgba(0, 0, 0, 0.3); /* затемнение при необходимости */
  max-width: 100%;
}

.hero-text {
  margin-top: 250px;
  width: 50%;
}

.hero-buttons {
  justify-content: center;
  display: flex;
}

.hero-text h1 {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: 600;
}

.hero-text p {
  font-size: 22px;
  line-height: 1.5;
  color: #fff;
}

.owl-carousel .item {
  height: 60vh;
  background-size: cover;
  background-position: center;
  margin: 0;
  overflow: hidden;
}

.owl-carousel-second .item {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
}

.owl-carousel-second .item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: zoom-in;
}

.owl-nav button.owl-prev,
.owl-nav button.owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.6) !important;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  font-size: 2rem !important;
  color: #333 !important;
  border: none;
  outline: none;
}

.owl-nav button.owl-prev { left: 15px; }
.owl-nav button.owl-next { right: 15px; }

.owl-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
}

.second-slider {
  display: flex;
  flex-direction: column;
}

.button-block {
  display: flex;
  justify-content: center;
  padding-top: 30px;
}

.main-hero {
  position: relative;
  width: 100%;
  height: 100vh; /* картинка на весь экран */
  overflow: hidden;
}

.main-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center; /* вертикальное выравнивание */
  justify-content: center; /* горизонтальное выравнивание */
  flex-direction: column;
  text-align: center;
  color: #fff; /* чтобы текст был виден на фоне */
  padding: 0 20px;
  background: rgba(0, 0, 0, 0.3); /* лёгкая затемнённая подложка (по желанию) */
}

.hero-text h1 {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: 600;
}

.hero-text p {
  font-size: 40px;
  line-height: 1.5;
  color: #fff;
}

/* ===== MARQUEE BANNERS ===== */
.marquee-banner {
  background-color: #902732;
  overflow: hidden;
  padding: 25px 0;
  position: relative;
}

.marquee-banner-footer {
  background-color: #076e64;
  overflow: hidden;
  padding: 25px 0;
  position: relative;
  margin-top: 60px;
}

.marquee, .marquee-footer {
  width: 100%;
  overflow: hidden;
}

.marquee-content, .marquee-content-footer {
  display: flex;
  width: fit-content;
}

.marquee-track, .marquee-track-footer {
  display: flex;
  gap: 60px;
  animation: marquee 120s linear infinite;
  will-change: transform;
  padding: 0 30px;
}

.marquee-item, .marquee-item-footer {
  color: #fff;
  font-size: 18px;
  white-space: nowrap;
  flex-shrink: 0;
  font-weight: 500;
  position: relative;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== FEATURES SECTION ===== */
.feature {
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
  padding: 0 20px;
  gap: 20px;
  text-align: left;
  flex: 1;
  justify-content: center;
}

.feature img {
  width: 80px;
  margin-bottom: 10px;
}

.feature p {
  font-size: 16px;
  line-height: 16px;
  margin: 0;
}

.line {
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background-color: red;
}

.feature:last-child .line {
  display: none;
}

/* ===== CARDS SECTIONS ===== */
.basic_h2 {
  text-align: center;
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 40px;
  position: relative;
  color: #333;
}

.cards-section {
  padding: 60px 20px;
  text-align: center;
  background-color: #fff;
  padding-top: 100px;
  padding-bottom: 0;
  overflow: hidden;
}

.cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 1200px;
}

.card {
  padding: 25px 20px;
  transition: all 0.3s ease;
  flex: 1 1 calc(25% - 20px);
  box-sizing: border-box;
  text-align: center;
  border-radius: 6px;
  transition: transform 0.3s ease;
}

.card-wrapper_first {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.card-wrapper_first img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.card h3 {
  font-size: 20px;
  margin: 10px 0 5px;
}

.card p {
  font-size: 16px;
  color: #444;
  margin: 0;
  line-height: 1.4;
  text-align: left;
}

/* ===== PRODUCTS SECTION ===== */
.products-section {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 5%;
}

.products-wrapper {
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  width: 100%;
  box-sizing: border-box;
  row-gap: 80px;
  display: -webkit-grid;
  display: grid;
  grid-auto-rows: auto;
}

.product-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  min-width: 0
}

.product-image {
  position: relative;
  width: 100%;
  padding-top: 100%;
  overflow: hidden;
}

.product-image img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.product-image .hover-img {
  opacity: 0;
}

.product-image:hover .hover-img {
  opacity: 1;
}

.product-image:hover .main-img {
  opacity: 0;
}

.add-favorite {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(255,255,255,0.8);
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  cursor: pointer;
  font-size: 16px;
}

.product-info {
  padding: 15px;
  text-align: center;
  height: 80px;
}

.product-info h3 {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin: 0;
  text-decoration: none;
}

.product-price-wrapper {
  padding: 0 15px 15px;
  text-align: center;
}

.product-price-wrapper_prices {
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
}

.price-current {
  font-size: 18px;
  font-weight: bold;
  color: #333;
}

.price-old {
  font-size: 14px;
  text-decoration: line-through;
  color: #888;
}

.sold-count {
  font-size: 12px;
  color: #666;
}

.product-link {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  min-width: 0;
  width: 100%;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}

.btn-primary {
  display: flex;
  background-color: #902732;
  color: #fff;
  border: #902732;
  width: 300px;
  justify-content: center;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 5px;
  align-items: center;
  text-align: center;
  font-weight: bold;
}

.btn-primary:hover {
  background-color: var(--dark-red);
  border-color: var(--dark-red);
}

a.primary:hover {
  background-color: var(--dark-red);
  border-color: var(--dark-red);
}

a.header-inner_second__make-call:hover {
  background-color: var(--dark-red);
  border-color: var(--dark-red);
}

.btn-secondary {
  background-color: #fff;
  color: var(--primary-red);
  border: 1px solid var(--primary-red);
  display: flex;
  flex-basis: 30%;
  justify-content: center;
}

.btn-secondary:hover {
  background-color: var(--dark-red);
  color: #fff;
  border-color: var(--dark-red);
}

.btn-buy {
  display: block;
  width: calc(100% - 30px);
  margin: 0 auto 15px;
  padding: 10px;
  text-align: center;
  background-color: var(--primary-red);
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.btn-buy:hover {
  background-color: var(--dark-red);
}

/* ===== OFFER SECTION ===== */
.offer-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: visible;
  padding-bottom: 0;
  height: 250px;
  max-width: 1200px;
  margin: 0 auto;
}

.offer-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  flex-basis: 50%;
  justify-content: center;
}

.offer-btn {
  display: inline-block;
  padding: 15px 30px;
  font-size: 16px;
  border-radius: 5px;
  text-decoration: none;
  text-align: center;
  font-weight: 500;
  transition: all 0.3s ease;
}

.offer-btn.primary {
  display: flex;
  background-color: var(--primary-red);
  color: #fff;
  border: 1px solid var(--primary-red);
  flex-basis: 45%;
  justify-content: center;
  align-items: center;
  transition: all 0.2s 
ease-in-out;
}

.offer-btn.secondary {
  background-color: #fff;
  color: var(--primary-red);
  border: 1px solid var(--primary-red);
  display: flex;
  flex-basis: 45%;
  justify-content: center;
  align-items: center;
}

.offer-image {
  width: 370px;
  transform: rotate(12deg);
  position: relative;
  top: -190px;
}

/* ===== CONTENT SECTIONS ===== */
.main-products {
  background-color: var(--bg-light);
}

.basic-section {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 5%;
}

.gift-description {
  background-color: var(--bg-light);
  text-align: center;
  margin: 0;
  max-width: 100%;
}

.gift-container {
  margin: 0 auto;
  line-height: 30px;
  font-size: 18px;
}

.gift-description p {
  font-size: 18px;
  color: #333;
  margin: 0;
}

.gift-description strong {
  color: #000;
}

.gift-warning {
  font-weight: bold;
}

.contact-buttons {
  background-color: var(--bg-light);
  text-align: center;
  padding-bottom: 60px;
}

.buttons-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease forwards;
}

.delivery-info {
  display: flex;
  justify-content: space-between;
  padding: 8px 16px;
  font-size: 12px;
  color: var(--text-gray);
}

.delivery-info img {
  width: 16px;
  height: 16px;
  margin-right: 4px;
  vertical-align: middle;
}

/* ===== DISCOUNTS SECTION ===== */
.discounts-section {
  text-align: center;
  font-family: sans-serif;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 5%;
}

.discounts-section__title {
  font-size: 42px;
  margin-bottom: 20px;
}

.discounts-section__descr {
  font-size: 20px;
  max-width: 560px;
  margin: 0 auto 50px auto;
  line-height: 1.5;
  font-weight: 300;
}

.discounts-section__cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
  flex-direction: column;
  align-items: center;
}

.discount-card {
  padding: 20px;
  text-align: center;
  width: 100%;
  border-bottom: 1px solid rgb(229,229,229);
  display: flex;
  justify-content: inherit;
  gap: 10%;
}

.discount-card_char {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-weight: bold;
}

.discount-card__uptitle {
  font-size: 14px;
  color: #888;
  margin-bottom: 10px;
}

.discount-card__range {
  font-weight: 500;
  margin-bottom: 10px;
  font-size: 30px;
}

.discount-card__price {
  font-size: 24px;
  font-weight: bold;
  color: #000000;
  width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.discounts-section__btn-wrapper {
  text-align: center;
}

.discounts-section__btn {
  display: inline-block;
  padding: 15px 40px;
  font-size: 16px;
  color: #fff;
  background-color: #902732;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
  font-weight: 600;
}

/* ===== ACCORDION ===== */
.accordion {
  max-width: 800px;
  margin: 0 auto;
  padding: 30px 0;
}

.accordion-item {
  border-top: 1px solid #eee;
}

.accordion-header {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 15px 0;
  font-size: 26px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.accordion-icon {
  transition: transform 0.3s ease;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  font-size: 14px;
  line-height: 1.6;
  padding-bottom: 0;
}

.accordion-content p {
  margin: 10px 0;
  font-size: 16px;
  font-weight: 300;
}

.accordion-item.active .accordion-content {
  max-height: 1000px;
  padding-top: 10px;
  padding-bottom: 15px;
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}

/* ===== GIFT BASKETS ===== */
.gift-baskets-section {
  padding: 50px 20px;
  font-family: Arial, sans-serif;
}

.gift-baskets__title {
  text-align: center;
  margin-bottom: 40px;
}

.gift-baskets-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.gift-baskets-container-reverse {
  flex-direction: row-reverse;
}

.gift-baskets-text {
  flex: 1;
  min-width: 300px;
}

.gift-baskets-description {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.gift-baskets-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.gift-baskets-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.gift-baskets-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* ===== PROCESS FLOW ===== */
.process-flow {
  display: flex;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.step {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 0 10px;
  position: relative;
}

.step-title {
  font-size: 18px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  border-radius: 5px;
  height: 130px;
  align-items: center;
  text-align: center;
  border-bottom: 7px solid #902732;
  position: relative;
  padding: 0px 15px;
}

.step-actions {
  display: flex;
  flex-direction: column;
  position: relative;
  gap: 30px;
}

.step-element {
  display: flex;
  border: 1px solid #902732;
  border-radius: 5px;
  height: 100px;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 10px 20px;
  background: white;
  position: relative;
}

.step-title.first::after,
.step-element.first::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 100%;
  bottom: -100%;
  width: 1px;
  background-color: #902732;
  transform: translateX(-50%);
}

.buttons-container-steps {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding-top: 30px;
}

.btn-primary-steps,
.btn-secondary-steps {
  display: flex;
}

/* ===== DISCOUNT BLOCK ===== */
.discount-block-last {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 60px 0;
  background-color: #fff;
}

.discount-block-last__image {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-image: url('https://static.tildacdn.com/tild3035-6438-4039-a436-376661303636/image_398_2.jpg');
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
  height: max-content;
}

.discount-block-last__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.discount-block-last__content {
  position: relative;
  z-index: 2;
  color: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.3);
  margin: 0%;
  border-radius: 0;
}

.discount-block-last__title {
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 10px;
}

.discount-block-last__subtitle {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 25px;
}

.discount-block-last__list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.discount-block-last__list li {
  font-size: 22px;
  line-height: 1.4;
  margin-bottom: 8px;
}

.discount-block-last__note {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.9;
  max-width: 600px;
}

/* ===== CHOOSE US ===== */
.choose-us {
  background-color: var(--bg-light);
  padding: 60px 0;
  font-family: 'TildaSans', sans-serif;
}

.choose-us__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.choose-us__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.choose-us__text {
  flex: 1 1 50%;
}

.choose-us__image {
  flex: 1 1 45%;
  text-align: center;
}

.choose-us__image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.choose-us__title {
  font-size: 46px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #000;
}

.choose-us__description {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #333;
}

.choose-us__buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-outline {
  background-color: #fff;
  color: var(--primary-red);
  border: 1px solid var(--primary-red);
}

.btn-outline:hover {
  background-color: var(--dark-red);
  color: #fff;
  border-color: var(--dark-red);
}

/* ===== PARTNERS & GALLERY ===== */
.who-tried {
  background-color: #fff;
  padding: 60px 0;
  text-align: center;
  font-family: 'TildaSans', sans-serif;
}

.who-tried__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.who-tried__title {
  font-size: 46px;
  font-weight: 600;
  color: #000;
  line-height: 1.3;
  margin-bottom: 20px;
}

.who-tried__subtitle {
  font-size: 20px;
  color: #333;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.partners-marquee {
  overflow: hidden;
  padding: 30px 0;
  background: #fff;
  position: relative;
}

.partners-marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 60s linear infinite;
  will-change: transform;
}

.partners-marquee__item {
  flex: 0 0 auto;
  margin: 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partners-marquee__item img {
  max-height: 100px;
  display: block;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.partners-marquee__item img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* Бесконечная плавная анимация */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.gallery-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gallery-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 0 10px;
}

.gallery-item {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.gallery-item-sm {
  flex: 1 1 200px;
}

.gallery-item-lg {
  flex: 2 1 400px;
  height: 800px;
}

.gallery-item-xl {
  flex: 1 1 100%;
  height: max-content;
}

.delivery-info__container {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.delivery-info__text {
  opacity: 0.7;
  line-height: 1.5;
  color: #000;
  font-size: 30px;
  font-weight: 300;
  text-align: left;
  max-width: 800px;
}

/* ===== FOOTER ===== */
.footer {
  background-color: var(--bg-light);
  font-family: 'Arial', sans-serif;
  padding-top: 40px;
}

.footer__container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  flex-direction: column;
}

.footer__container-first {
  display: flex;
  width: 100%;
}

.footer__logo {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer__logo-link {
  display: block;
}

.footer__logo-img {
  width: 150px;
  height: auto;
}

.footer__container-first-contacts {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer__container-first-contacts__phone {
  font-size: 24px;
  font-weight: 600;
  text-decoration: none;
  color: var(--primary-red);
}

.content-socials {
  display: flex;
  width: 100%;
  gap: 5px;
  align-items: center;
  justify-content: center;
}

.content-socials img {
  width: 50px;
}

.content-socials_footer {
  justify-content: flex-start;
}

.content-socials_footer img {
  width: 30px;
}

.footer__nav {
  flex: 1;
  justify-content: center;
  align-items: start;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.footer__nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer__nav-item {
  display: block;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
  padding: 0;
  font-weight: 400;
}

.footer__nav-item:hover {
  color: #e60000;
}

.footer__contacts {
  flex: 1;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}

.footer__contacts-mail-and-phone {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer__phone,
.footer__email {
  margin: 0;
  font-size: 14px;
  color: #333;
}

.footer__contacts-work-hours {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.footer__bottom {
  text-align: center;
  padding: 10px 0;
  font-size: 12px;
  width: 100%;
  display: flex;
}

.footer__copyright {
  margin: 0;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.step, .step-actions button {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.5s forwards;
}

.main-video_block {
  width: 100%;  
  height: 100%;
  object-fit: cover;
  object-position: top;
}

/* Общие стили попапа остаются */
.popup {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  transition: all 0.2s ease-in-out;
}

.popup.show {
  opacity: 1;
  visibility: visible;
}

.popup-content {
  background: #F0ECE4;
  width: 60%;
  display: flex;
  overflow: hidden;
  position: relative;
  transform: scale(0.8);
  transition: all 0.2s ease-in-out;
  border-radius: 20px;
  max-height: 90vh;
  flex-direction: row;
  overflow-y: auto;
  max-height: 90vh;
  overflow-y: auto;
}

.popup.show .popup-content {
  transform: scale(1);
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: #333;
}

/* Левая часть — фото */
.popup-left {
  flex: 0 0 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  background: #F0ECE4;
}

.popup-left img {
  width: 70%;
  height: 70%;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Правая часть — форма */
.popup-right {
  flex: 1;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #E1DBCD;
  border-radius: 20px;
}

.popup-right h2 {
  margin-bottom: 20px;
  font-size: 22px;
  text-align: center;
}

.popup-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.popup-form input {
  padding: 12px 15px;
  border: 1px solid #ccc;
  font-size: 16px;
  transition: border-color 0.2s;
  background: #F0ECE4;
  border-radius: 12px;
}

.popup-form input:focus {
  border-color: #902732;
  outline: none;
}

.popup-submit {
  background-color: transparent;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.2s;
  display: flex;
  height: 52px;
  padding: 19px 40px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: 200px;
  border: 1px solid #902732;
  color: #902732;
}

.popup-submit:hover {
  background-color: #902732;
  color: white;
}

.popup-policy {
  margin-top: 10px;
  font-size: 12px;
  text-align: center;
  color: #342318;
}

.popup-policy a {
  color: #342318;
  text-decoration: underline;
}


.gift-container_list {
  list-style: none;
}

.discounts-section__btn:hover {
  background-color: var(--dark-red);
}

/* Кнопка "Наверх" */
#scrollToTop {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 9999;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background: #902732;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s ease;
}

/* Появление кнопки */
#scrollToTop.show {
  opacity: 1;
  transform: scale(1);
}

/* Исчезновение кнопки */
#scrollToTop.hidden {
  opacity: 0;
  transform: scale(0);
  pointer-events: none;
}

/* Стрелка вверх */
#scrollToTop .arrow-up {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(135deg);
  transition: transform 0.3s ease;
}

/* Кнопка WhatsApp */
#whatsappButton {
  position: fixed;
  bottom: 100px; /* немного выше кнопки Наверх */
  right: 40px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, opacity 0.3s ease;
  z-index: 9999;
}

#whatsappButton:hover {
  transform: scale(1.1);
}

#whatsappButton.hidden {
  opacity: 0;
  transform: scale(0);
  pointer-events: none;
}

#whatsappButton:not(.hidden) {
  opacity: 1;
}

.reviews-slider {
  text-align: center;
  background-color: var(--bg-light);
  padding: 60px 10px;
}

.review-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.review-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin-bottom: 15px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.review-text {
  max-width: 500px;
  height: max-content;
  flex: 1;
  text-align: left;
}

.review-text p {
  font-size: 16px;
  line-height: 1.5;
  color: #444;
  margin-bottom: 10px;
  font-style: italic;
}

.review-author {
  font-weight: 600;
  color: #222;
}

.review-photo {
  width: 100%;
  flex: 1;
}

.owl-carousel-reviews .review-item.item {
  border-radius: 20px 20px 0 0;
  height: max-content;
}

.popup-form_input::placeholder {
  color: #342318;
  opacity: 1;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}

#popup-title {
  color: #342318;
  font-size: 22px;
  font-weight: 400;
  text-align: left;
}

.popup-right_logo {
  display: flex;
}

.header-inner_menu {
  display: flex;
  flex-basis: 70%;
  padding: 0 20px;
}

.header-inner_menu nav {
  display: flex;
  width: 100%;
}

.header-inner_menu nav a {
  text-decoration: none;
  color: #000;
  font-weight: bold;
}

.header-inner_menu nav a:hover {
  color: var(--dark-red);
}

.header-inner__contact-data {
  display: flex;
  flex-basis: 9%;
  flex-direction: column;
  gap: 5px;
}

.header-inner_first__socials span {
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: center;
}

.header-inner_first__socials span img {
  width: 30px;
  height: 30px;
}

/* ===== HEADER & NAVIGATION ===== */
header {
  background: #fff;
  box-shadow: 0 1px 8px rgba(18, 18, 18, 0.5);
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
}

.header-inner {
  width: 100%;
  max-width: 1900px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Логотип */
.header-inner_first__logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-inner_first__logo img {
  height: 60px;
  width: 150px;
  object-fit: contain;
}

/* Основное меню */
.header-inner_menu {
  flex: 1;
  display: flex;
  justify-content: center;
  padding: 0 20px;
}

.header-inner_menu nav {
  display: flex;
  align-items: center;
  width: 100%;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: center;
}

.header-inner_menu nav a {
  text-decoration: none;
  color: #000;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 10px;
  border-radius: 6px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

/* Контактные данные */
.header-inner__contact-data {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  flex: 0 0 auto;
}

.header-inner_first__phone a {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-red);
  text-decoration: none;
  transition: color 0.3s ease;
}

.header-inner_first__phone a:hover {
  color: var(--dark-red);
}

.header-inner_first__socials {
  display: flex;
  gap: 8px;
  align-items: center;
}

.header-inner_first__socials span {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-inner_first__socials img {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.header-inner_first__socials img:hover {
  transform: scale(1.1);
}

/* Кнопка заказа звонка */
.header-inner_second-block {
  flex: 0 0 auto;
  margin-left: 20px;
}

.header-inner_second__make-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background-color: var(--primary-red);
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  white-space: nowrap;
  min-height: 40px;
}

.header-inner_second__make-call:hover {
  background-color: var(--dark-red);
}

/* ===== MOBILE MENU ===== */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.mobile-menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  height: 100svh;
  background: #fff;
  z-index: 1000;
  transition: left 0.3s ease;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  padding-top: env(safe-area-inset-top);
  padding-bottom: env(safe-area-inset-bottom);
  -webkit-overflow-scrolling: touch;
}

.mobile-menu.active {
  left: 0;
}

.mobile-menu__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #eee;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1002;
}

.mobile-menu__logo img {
  height: 40px;
  width: auto;
}

.mobile-menu__close {
  background: none;
  border: none;
  font-size: 32px;
  color: var(--text-dark);
  cursor: pointer;
  line-height: 1;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu__nav {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-menu__nav a {
  padding: 18px 0;
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 18px;
  border-bottom: 1px solid #f0f0f0;
  transition: color 0.3s ease;
}

.mobile-menu__nav a:last-child {
  border-bottom: none;
}

.mobile-menu__nav a:hover {
  color: var(--dark-red);
}

.mobile-menu__contacts {
  padding: 30px 20px;
  background: #f8f8f8;
  border-top: 1px solid #eee;
}

.mobile-menu__phone {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-red);
  margin-bottom: 20px;
  text-align: center;
}

.mobile-menu__socials {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 25px;
}

.mobile-menu__socials img {
  width: 35px;
  height: 35px;
  transition: transform 0.3s ease;
}

.mobile-menu__socials img:hover {
  transform: scale(1.1);
}

.mobile-menu__call-btn {
  display: block;
  width: 100%;
  padding: 16px;
  background: var(--primary-red);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}

.mobile-menu__call-btn:hover {
  background: var(--dark-red);
  transform: translateY(-1px);
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu__logo-additional {
  display: none;
}

/* Стили для попапа заказа звонка */
.call-popup-content {
  width: 40% !important; /* Уже, так как нет картинки */
  max-width: 500px; /* Ограничиваем максимальную ширину */
}

.call-popup-content .popup-right {
  width: 100%;
  border-radius: 20px; /* Скругляем углы всей формы */
}

/* Базовые стили попапа */
.popup {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  transition: all 0.2s ease-in-out;
}

.popup.show {
  opacity: 1;
  visibility: visible;
}

.popup-content {
  background: #F0ECE4;
  width: 80%;
  display: flex;
  overflow: hidden;
  position: relative;
  transform: scale(0.8);
  transition: all 0.2s ease-in-out;
  border-radius: 20px;
  max-height: max-content;
  flex-direction: row;
}

.popup.show .popup-content {
  transform: scale(1);
  overflow-y: auto;
  height: 80vh;
  flex-wrap: wrap;
  flex-direction: row;
}

#popup-product-title {
  text-align: center;
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: #333;
  z-index: 1001;
}

/* Левая часть — фото */
.popup-left {
  flex: 0 0 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  background: #F0ECE4;
}

.popup-left img {
  width: 40%;
  height: 40%;
  border-radius: 0;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Правая часть — форма */
.popup-right {
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #E1DBCD;
  border-radius: 20px;
  flex-basis: 50%;
}

.popup-right h2 {
  margin-bottom: 20px;
  font-size: 22px;
  text-align: center;
  color: #342318;
}

.popup-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.popup-form input {
  padding: 12px 15px;
  border: 1px solid #ccc;
  font-size: 16px;
  transition: border-color 0.2s;
  background: #F0ECE4;
  border-radius: 12px;
  color: #342318;
}

.popup-form input::placeholder {
  color: #342318;
  opacity: 0.7;
}

.popup-form input:focus {
  border-color: #902732;
  outline: none;
}

.popup-submit {
  background-color: transparent;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.2s;
  display: flex;
  height: 52px;
  padding: 19px 40px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: 200px;
  border: 1px solid #902732;
  color: #902732;
  font-weight: 600;
}

.popup-submit:hover {
  background-color: #902732;
  color: white;
}

.popup-policy {
  margin-top: 10px;
  font-size: 12px;
  text-align: center;
  color: #342318;
}

.popup-policy a {
  color: #342318;
  text-decoration: underline;
}

/* Попап только с формой (без картинки) */
.popup-content.form-only {
  width: 30%;
}

.popup-content.form-only .popup-left {
  display: none;
}

.popup-content.form-only .popup-right {
  width: 100%;
  border-radius: 20px;
  height: max-content;
}

.buttons-container_baskets {
  padding: 60px 0;
}

/* ===== Миниатюры внутри попапа ===== */
.popup-left {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px;
}

.popup-thumbnails {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.popup-thumb img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.popup-thumb img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 8px rgba(0,0,0,0.3);
}

/* ===== Попап с большой главной миниатюрой ===== */
.popup-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 20px;
}

.popup-thumbnails {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 15px;
}

.popup-thumb img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.popup-thumb img:hover {
  transform: scale(1.08);
  box-shadow: 0 0 8px rgba(0,0,0,0.25);
}

/* Главное изображение — большое и по центру */
.popup-thumb img.main-image {
  width: 260px;
  height: 260px;
  border-radius: 15px;
  margin-bottom: 15px;
  transition: transform 0.25s ease;
}

.popup-thumb img.main-image:hover {
  transform: scale(1.03);
  box-shadow: 0 0 12px rgba(0,0,0,0.3);
}

/* ===== Попап с большой картинкой и миниатюрами снизу ===== */
.popup-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-radius: 20px;
  flex-basis: 50%;
  height: 90%;
}

.popup-left img.popup-main-image {
  width: 70%;
  height: 70%;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 15px;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.popup-main-image:hover {
  transform: scale(1.03);
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
}

.popup-thumbnails {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.popup-thumb img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.popup-thumb img:hover {
  transform: scale(1.08);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
}

/* ===== СТИЛИ ДЛЯ ОПИСАНИЯ ТОВАРА В ПОПАПЕ ===== */
.popup-product-description {
  flex: 0 0 25%;
  padding: 20px;
  background: #F8F5F0;
  border-right: 1px solid #E1DBCD;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.popup-product-description h3 {
  font-size: 18px;
  font-weight: 600;
  color: #342318;
  margin: 0 0 15px 0;
  line-height: 1.4;
}

.popup-product-details {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #E1DBCD;
}

.popup-product-price {
  font-size: 20px;
  font-weight: bold;
  color: #902732;
  margin-bottom: 5px;
}

.popup-product-sold {
  font-size: 14px;
  color: #666;
}

.popup-product-text {
  font-size: 14px;
  line-height: 1.5;
  color: #555;
  flex-grow: 1;
}

.popup-product-info {
  flex-basis: 100%;
  padding: 20px 70px;
  position: relative;
  background: rgba(215, 211, 204, 0.4);
  border-radius: 20px;
  height: max-content;
}

.popup-product-info::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20px; /* отступ сверху */
  bottom: 20px; /* отступ снизу */
  width: 1px;
  background-color: #902732;
}

.review-title {
  display: flex;
  align-items: center;
  justify-content: left;
  width: 100%;
  color: #000;
  font-weight: 600;
}

.popup-product-info_description span {
  font-weight: bold;
}

.popup-product-info_description nav {
  list-style: disc;
  color: black;
}

#we-offer, 
#assortment, 
#branding, 
#discounts-on-bulk-orders, 
#how-we-work, 
#reviews, 
#who-tried-our-gifts {
  scroll-margin-top: 100px;
}

.mobile-menu-toggle.active {
  display: none;
}

.review-photo img {
  height: 600px;
}

.form-message {
  margin-bottom: 10px;
  font-size: 14px;
  color: #fff;      /* цвет текста */
  background: #28a745; /* зеленый для успеха */
  padding: 8px;
  border-radius: 4px;
  display: none;    /* изначально скрыт */
}

.form-message.error {
  display: flex;
  background: #dc3545;
  justify-content: center;
}

/* ===== Попап политики ===== */
.policy-popup {
  display: none; /* по умолчанию скрыт */
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.policy-popup.active {
  display: flex;
}

.policy-popup__content {
  background: #fff;
  border-radius: 20px;
  max-width: 700px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 30px;
  position: relative;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

.policy-popup__close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.policy-popup__text {
  margin-top: 20px;
  line-height: 1.6;
  color: #333;
}

.gift-description {
  background-color: #faf9f7;
  text-align: center;
  padding: 100px 20px;
}

.gift-container {
  max-width: 900px;
  margin: 0 auto;
  color: #333;
  line-height: 1.7;
  font-size: 18px;
}

.gift-title {
  font-size: 36px;
  font-weight: 600;
  color: #000;
  margin-bottom: 30px;
}

.gift-intro {
  font-size: 20px;
  margin-bottom: 40px;
}

.gift-list-block {
  padding: 40px;
  border-radius: 20px;
  margin-bottom: 40px;
  text-align: left;
}

.gift-list-block h3 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #000;
}

.gift-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.gift-list li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 28px;
}

.gift-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #b9975b;
}

@media (max-width: 480px) {
  .popup-content {
    width: 95% !important;
  }
  
  .popup-right {
    padding: 25px 15px;
  }
  
  .popup-right h2 {
    font-size: 18px;
  }
}

/* Адаптив для мобильных */
@media (max-width: 768px) {
  .call-popup-content {
    width: 90% !important;
    max-width: 400px;
  }

  .hero-text {
    margin-top: 70px;
  }
}

@media (max-width: 480px) {
  .call-popup-content {
    width: 95% !important;
    max-width: 350px;
  }
}

/* ===== MEDIA QUERIES FOR HEADER ===== */

/* Large Desktops */
@media (max-width: 1440px) {
  .header-inner {
    padding: 10px 40px;
  }
  
  .header-inner_menu nav a {
    font-size: 13px;
    padding: 6px 8px;
  }

  /* .popup-content{
    width: 70%;
  }

  .popup-content.form-only {
    width: 30%;
  }

  .popup-product-info {
    padding: 20px;
  }

  .popup-content {
    flex-direction: column;
    display: flex;
  }

  .popup-left img.popup-main-image {
    width: 40%;
    height: 40%;
  } */
}

/* Desktops */
@media (max-width: 1200px) {
  /* .popup-content.form-only {
    width: 50%;
  } */

  .header-inner {
    padding: 10px 30px;
  }
  
  .header-inner_menu {
    padding: 0 15px;
  }
  
  .header-inner_menu nav a {
    font-size: 12px;
    padding: 5px 6px;
  }
  
  .header-inner_first__phone a {
    font-size: 15px;
  }
  
  .header-inner_second__make-call {
    padding: 8px 16px;
    font-size: 13px;
  }
}

@media (max-width: 1034px) {
  .popup-left {
    flex-basis: 100%;
    flex-direction: column;
  }
}

/* Small Desktops & Tablets */
@media (max-width: 1024px) {
  .header-inner_menu nav {
    gap: 2px;
  }
  
  .header-inner_menu nav a {
    font-size: 11px;
    padding: 4px 5px;
  }
  
  .header-inner_first__logo img {
    height: 50px;
  }
  
  .header-inner_first__phone a {
    font-size: 14px;
  }
  
  .header-inner_first__socials img {
    width: 20px;
    height: 20px;
  }
}

/* Tablets */
@media (max-width: 900px) {
  .header-inner_menu {
    display: none;
  }
  
  .header-inner_first__logo {
    display: none;
  }

  .header-inner__contact-data {
    display: none;
  }
  
  .header-inner_second-block {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .mobile-menu__logo-additional {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .mobile-menu__logo-additional img {
    height: 35px;
    width: 100px;
  }
  
  header {
    height: 70px;
    padding: 0 20px;
  }
  
  .header-inner {
    padding: 10px 0;
    justify-content: space-between;
  }
  
  .header-inner_first__logo {
    flex: 0 0 auto;
  }
  
  .header-inner_first__logo img {
    height: 45px;
  }
}

/* Large Mobile */
@media (max-width: 768px) {
  header {
    height: 65px;
    padding: 0 15px;
  }
  
  .header-inner {
    padding: 8px 0;
  }
  
  .header-inner_first__logo img {
    height: 40px;
  }
  
  .mobile-menu-toggle {
    width: 28px;
    height: 20px;
  }
  
  .mobile-menu__header {
    padding: 15px;
  }
  
  .mobile-menu__logo img {
    height: 35px;
  }
  
  .mobile-menu__nav {
    padding: 15px;
  }
  
  .mobile-menu__nav a {
    padding: 16px 0;
    font-size: 16px;
  }
  
  .mobile-menu__contacts {
    padding: 25px 15px;
  }
  
  .mobile-menu__phone {
    font-size: 18px;
  }

  .popup-left {
    flex-basis: 100%;
    flex-direction: column;
    justify-content: center;
  }
}

/* Mobile Landscape */
@media (max-width: 768px) and (orientation: landscape) {
  .mobile-menu {
    overflow-y: auto;
  }
  
  .mobile-menu__nav {
    max-height: 60vh;
    overflow-y: auto;
  }
}

/* Mobile Devices */
@media (max-width: 480px) {
  header {
    height: 60px;
    padding: 0 10px;
  }
  
  .header-inner {
    padding: 5px 0;
  }
  
  .header-inner_first__logo img {
    height: 35px;
  }
  
  .mobile-menu-toggle {
    width: 25px;
    height: 18px;
  }
  
  .mobile-menu__header {
    padding: 12px;
  }
  
  .mobile-menu__logo img {
    height: 30px;
  }
  
  .mobile-menu__close {
    width: 35px;
    height: 35px;
    font-size: 28px;
  }
  
  .mobile-menu__nav {
    padding: 12px;
  }
  
  .mobile-menu__nav a {
    padding: 14px 0;
    font-size: 16px;
  }
  
  .mobile-menu__contacts {
    padding: 20px 12px;
  }
  
  .mobile-menu__phone {
    font-size: 16px;
    margin-bottom: 15px;
  }
  
  .mobile-menu__socials {
    margin-bottom: 20px;
  }
  
  .mobile-menu__socials img {
    width: 30px;
    height: 30px;
  }
  
  .mobile-menu__call-btn {
    padding: 14px;
    font-size: 15px;
  }

  .popup-product-info {
    padding: 10px 20px;
  }
}

/* Small Mobile */
@media (max-width: 375px) {
  .header-inner_first__logo img {
    height: 32px;
  }
  
  .mobile-menu-toggle {
    width: 24px;
    height: 17px;
  }
  
  .mobile-menu__nav a {
    font-size: 15px;
    padding: 12px 0;
  }
}

/* Extra Small Mobile */
@media (max-width: 320px) {
  header {
    padding: 0 8px;
  }
  
  .header-inner_first__logo img {
    height: 30px;
  }
  
  .mobile-menu-toggle {
    width: 22px;
    height: 16px;
  }
}

/* Touch Devices Optimization */
@media (hover: none) and (pointer: coarse) {
  .header-inner_menu nav a,
  .header-inner_second__make-call,
  .mobile-menu__nav a,
  .mobile-menu__call-btn {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
  }

  .header-inner_menu nav a {
    padding: 12px 10px;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .mobile-menu,
  .mobile-menu-overlay,
  .mobile-menu-toggle span,
  .header-inner_menu nav a,
  .header-inner_second__make-call {
    transition: none;
  }
}

/* iOS Support */
@supports (-webkit-touch-callout: none) {
  .mobile-menu {
    height: -webkit-fill-available;
  }
}

/* ===== MEDIA QUERIES ===== */

/* Large Desktops */
@media (max-width: 1200px) {
  .container {
    max-width: 1140px;
    padding: 0 20px;
  }
  
  .products-wrapper {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  
  .header-inner_second nav {
    gap: 10px;
    display: flex;
    flex-wrap: wrap;
  }
  
  .header-inner_second nav a {
    font-size: 13px;
    padding: 6px 8px;
  }
  
  .discount-block-last__image {
    height: max-content;
  }
  
  .discount-block-last__title {
    font-size: 48px;
  }
  
  .discount-block-last__subtitle {
    font-size: 24px;
  }
  
  .discount-block-last__list li {
    font-size: 20px;
  }
}

/* Desktops */
@media (max-width: 1024px) {
  .flex-container {
    gap: 30px 40px;
  }
  
  .feature {
    width: 220px;
  }
  
  .feature img {
    width: 60px;
    height: 60px;
  }
  
  .feature p {
    font-size: 17px;
  }
  
  .cards-container {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .image-container {
    max-width: 250px;
  }
  
  .offer-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .offer-image {
    width: 280px;
    top: 0;
    transform: rotate(25deg);
    margin-top: 30px;
  }
}

/* Small Desktops & Tablets */
@media (max-width: 992px) {
  .container {
    max-width: 960px;
  }
  
  .products-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero-text {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  
  .hero-text h1 {
    font-size: 36px;
  }
  
  .hero-text_second {
    flex-basis: 100%;
  }
  
  .hero-buttons {
    width: 100%;
    flex-direction: row;
    justify-content: center;
  }
  
  .cards-container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-flow {
    flex-direction: column;
    gap: 30px;
    padding: 0 100px;
  }
  
  .gift-baskets-buttons,
  .choose-us__buttons {
    justify-content: center;
  }
  
  .gift-baskets-container {
    flex-direction: column;
    text-align: center;
  }
  
  .gift-baskets-container-reverse {
    flex-direction: column;
  }
  
  .choose-us__content {
    flex-direction: column;
    text-align: center;
  }
  
  .choose-us__text,
  .choose-us__image {
    flex: 1 1 100%;
  }
  
  .choose-us__title {
    font-size: 36px;
  }
  
  .choose-us__description {
    font-size: 16px;
  }
}

/* Tablets */
@media (max-width: 768px) {
  .container {
    max-width: 720px;
    padding: 0 15px;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }

  .mobile-menu-toggle.active {
    display: none;
  }
  
  .header-inner_first,
  .header-inner_second {
    display: none;
  }
  
  header {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
  }
  
  .header-inner_first__logo img {
    height: 35px;
  }
  
  .products-section {
    padding: 30px 15px;
  }
  
  .products-section h1 {
    font-size: 28px;
    margin-bottom: 30px;
  }
  
  .products-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .product-info h3 {
    font-size: 14px;
  }
  
  .price-current {
    font-size: 16px;
  }
  
  .basic_h2 {
    font-size: 32px;
  }
  
  .owl-carousel .item {
    height: 50vh;
  }
  
  .hero-text h1 {
    font-size: 32px;
  }
  
  .hero-text p {
    font-size: 24px;
    line-height: 1.5;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
  
  .feature {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    flex-basis: 35%;
    width: 100%;
  }
  
  .line {
    display: none;
  }
  
  .cards-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .card-wrapper_first {
    justify-content: flex-start;
  }
  
  .offer-section {
    flex-direction: column;
    text-align: center;
    height: auto;
    padding: 40px 0;
  }
  
  .offer-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
  }
  
  .offer-btn {
    width: 100%;
    max-width: 300px;
  }
  
  .offer-image {
    display: none;
  }
  
  .discounts-section__cards {
    flex-direction: column;
    align-items: stretch;
  }
  
  .discount-card {
    flex-direction: row;
    text-align: center;
    gap: 15px;
    align-items: center;
  }
  
  .discount-card_char {
    align-items: flex-start;
  }
  
  .accordion-header {
    font-size: 20px;
    padding: 12px 0;
  }
  
  .buttons-container-steps {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .btn-primary-steps,
  .btn-secondary-steps {
    width: 100%;
    max-width: 300px;
  }
  
  .gallery-item-lg {
    flex: 1 1 100%;
    height: 300px;
  }
  
  .gallery-item-sm {
    flex: 1 1 48%;
    height: 200px;
  }
  
  .gallery-item-xl {
    height: 300px;
  }
  
  .partners-marquee__item img {
    max-height: 70px;
  }
  
  .mobile-menu__logo-additional {
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: center;
  }
  
  .who-tried {
    padding: 60px 0;
  }
  
  .who-tried__title {
    font-size: 32px;
  }
  
  .who-tried__subtitle {
    font-size: 16px;
  }
  
  .footer__container-first {
    flex-direction: column;
    gap: 30px;
  }
  
  .footer__nav,
  .footer__contacts {
    text-align: left;
    align-items: flex-start;
  }
  
  .content-socials_footer {
    justify-content: flex-start;
  }
  
  .discount-block-last__image {
    height: max-content;
  }
  
  .discount-block-last__title {
    font-size: 36px;
    line-height: 1.2;
  }
  
  .discount-block-last__subtitle {
    font-size: 20px;
  }
  
  .discount-block-last__list li {
    font-size: 18px;
  }
  
  .discount-block-last__note {
    font-size: 16px;
    max-width: 90%;
  }
  
  .owl-nav {
    display: none;
  }
  
  .owl-dots {
    bottom: 10px;
  }

  .product-info {
    height: 60px;
  }
}

/* Mobile Landscape */
@media (max-width: 768px) and (orientation: landscape) {
  .main-video {
    height: 70vh;
  }
  
  .owl-carousel .item {
    height: 70vh;
  }
  
  .mobile-menu {
    padding-bottom: 20px;
  }
  
  .mobile-menu__nav {
    max-height: 60vh;
    overflow-y: auto;
  }
}

@media (max-width: 600px) {
  .popup-content {
    flex-direction: column;
  }

  .popup-left {
    padding: 20px;
    flex-direction: column;
    margin-bottom: 0;
    justify-content: center;
    height: 90%;
  }

  .popup-left img {
    width: 90px;
    height: 90px;
  }

  .popup-left .popup-main-image {
    width: 270px;
    height: 270px;
  }

  .popup-left img.popup-main-image {
    height: 65%;
  }
}

/* Mobile Devices */
@media (max-width: 576px) {
  .container {
    padding: 0 10px;
    display: flex;
    align-items: center;
    height: 100%;
    justify-content: center;
  }

  .header-inner_first, .header-inner_second {
    display: none;
  }
  
  .products-wrapper {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .products-section {
    padding: 40px 15px;
  }
  
  .basic_h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }
  
  .main-video {
    height: 40vh;
  }
  
  .owl-carousel .item {
    height: 40vh;
  }
  
  .hero-text h1 {
    font-size: 24px;
  }
  
  .hero-text p {
    font-size: 24px;
  }

  .hero-text {
    width: 70%;
  }
  
  .delivery-info {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  
  .marquee-banner {
    padding: 15px 0;
  }
  
  .marquee-item {
    font-size: 12px;
  }
  
  .marquee-track {
    gap: 30px;
  }
  
  .buttons-container {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
    padding: 12px 20px;
    font-size: 14px;
  }
  
  .feature p {
    font-size: 14px;
  }
  
  .feature img {
    width: 50px;
  }
  
  .discounts-section__title {
    font-size: 28px;
  }
  
  .discounts-section__descr {
    font-size: 16px;
    margin-bottom: 30px;
  }
  
  .discount-card__range {
    font-size: 20px;
  }
  
  .discount-card__price {
    font-size: 20px;
  }
  
  .accordion-header {
    font-size: 18px;
    padding: 10px 0;
  }
  
  .accordion-content p {
    font-size: 14px;
  }
  
  .gift-baskets-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .gift-baskets-buttons .btn {
    max-width: 280px;
  }
  
  .step-title {
    font-size: 16px;
    height: auto;
    min-height: 80px;
    padding: 15px 10px;
  }
  
  .step-element {
    font-size: 14px;
    height: auto;
    min-height: 70px;
    padding: 10px;
  }
  
  .choose-us__title {
    font-size: 28px;
  }
  
  .choose-us__description {
    font-size: 16px;
  }
  
  .choose-us__buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .who-tried__title {
    font-size: 28px;
  }
  
  .who-tried__subtitle {
    font-size: 16px;
  }
  
  .partners-marquee__item img {
    max-height: 40px;
  }
  
  .gallery-item {
    height: 200px;
  }
  
  .delivery-info__text {
    font-size: 18px;
  }
  
  .footer {
    padding-top: 30px;
  }
  
  .footer__container-first-contacts__phone {
    font-size: 18px;
  }
  
  .content-socials_footer img {
    width: 25px;
  }
  
  .footer__nav-item {
    font-size: 14px;
  }
  
  .footer__phone,
  .footer__email {
    font-size: 14px;
  }
  
  .mobile-menu__nav a {
    font-size: 16px;
    padding: 18px 0;
  }
  
  .mobile-menu__phone {
    font-size: 18px;
  }
  
  .mobile-menu__call-btn {
    padding: 16px;
    font-size: 16px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .flex-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  .feature {
    width: 90%;
  }
  
  .feature img {
    width: 50px;
    height: 50px;
  }
  
  .feature p {
    font-size: 15px;
  }
  
  .feature .line {
    width: 30px;
  }
  
  .cards-container {
    grid-template-columns: 1fr;
  }
  
  .image-container {
    max-width: 160px;
  }
  
  .offer-btn {
    width: 100%;
    max-width: 280px;
  }
  
  .offer-image {
    width: 220px;
    transform: rotate(20deg);
  }
  
  .gallery-item-sm {
    flex: 1 1 100%;
    height: 150px;
  }
  
  .gallery-item-lg {
    height: 200px;
  }
  
  .gallery-item-xl {
    height: 200px;
  }
  
  .partners-marquee__item img {
    max-height: 50px;
  }
  
  .who-tried__title {
    font-size: 26px;
  }
  
  .who-tried__subtitle {
    font-size: 14px;
  }
  
  .discount-block-last {
    padding: 40px 10px;
  }
  
  .discount-block-last__image {
    height: max-content;
    border-radius: 15px;
  }
  
  .discount-block-last__title {
    font-size: 28px;
  }
  
  .discount-block-last__subtitle {
    font-size: 18px;
  }
  
  .discount-block-last__list li {
    font-size: 16px;
  }
  
  .discount-block-last__note {
    font-size: 14px;
  }
}

/* Extra Small Mobile */
@media (max-width: 375px) {
  .basic_h2 {
    font-size: 24px;
  }
  
  .hero-text h1 {
    font-size: 20px;
  }
  
  .products-section h1 {
    font-size: 20px;
  }
  
  .marquee-item {
    font-size: 11px;
  }
}

@media (max-width: 320px) {
  .header-inner_first__text {
    font-size: 10px;
  }
  
  .header-inner_first__phone {
    font-size: 12px;
  }
  
  .products-section h1 {
    font-size: 22px;
  }
}

/* Touch Devices */
@media (hover: none) and (pointer: coarse) {
  .product-card {
    transform: none !important;
  }
  
  .btn:hover {
    transform: none;
  }
  
  .header-inner_second nav a,
  .btn,
  .offer-btn,
  .product-link,
  .btn-buy {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .add-favorite {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* iOS Support */
@supports (-webkit-touch-callout: none) {
  .mobile-menu {
    height: -webkit-fill-available;
  }
  
  .main-video {
    height: 60vh;
    height: -webkit-fill-available;
  }
}