/* Основные стили для главной страницы */

/* CSS переменные для унификации цветов, отступов и радиусов */
:root {
  --color-primary: #2A5B55;
  /* основной зелёный */
  --primary-green: #2A5B55;
  /* алиас для основного зелёного */
  --color-accent: #A35A63;
  /* акцентный розовый */
  --color-dark: #343434;
  /* тёмный текст */
  --bg-beige: #F4EDE5;
  /* фон-беж */
  --white: #ffffff;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --section-vertical: 45px;
  /* unified vertical padding for sections (top & bottom) */
  --container-max: 1440px;
  /* unified max container width */
  --review-small-w: 244px;
  --review-small-h: 290px;
  --review-main-w-lg: 320px;
  --review-main-h-lg: 360px;
  --review-main-w-md: 280px;
  --review-main-h-md: 320px;
  --review-main-w-sm: 220px;
  --review-main-h-sm: 260px;
  --review-avatar-lg: 66px;
  --review-avatar-sm: 55px;
  --review-quote-icon-w: 34px;
  --review-quote-icon-h: 22px;
  --review-gap: 32px;
  --review-content-gap: calc(var(--section-vertical) * 0.35);
  /* ~16px internal spacing */
  --font-sans: 'Montserrat', sans-serif;
}

/* Основной контейнер */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

.main {
  background-color: var(--bg-beige);
  min-height: 100vh;
  padding: 0;
}

.main.container {
  max-width: var(--container-max);
  margin: 0 auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

/* Hero Section (Banner) */
/* ========================================== */
/* HERO SECTION */
/* ========================================== */

.hero.hero--banner {
  position: relative;
  width: 100vw;
  left: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  min-height: 754px;
  /* Height from Figma mobile design */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px 60px 24px;
  /* Padding from Figma */
  overflow: hidden;
  color: var(--white);
  background-color: #0c1c2b;
  /* Fallback color */
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: url('../img/figma/hero-bg-mobile.jpg') center/cover no-repeat;
  background-position: center center;
  background-size: cover;
}

/* ADDED blackcatexodus*/
  .hero--banner {
  position: relative;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Стили для контейнера с контентом */
.order-steps__showcase {
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

/* Скрываем неактивные панели */
.order-steps__showcase[hidden] {
  display: none;
}

.section__header {
	margin-bottom: 50px;
}

/* Страница Подарки */
.certificates__gallery {
	width: 50%;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    margin-bottom: 20px;
}
.certificates__info {
    width: 50%;
    flex-shrink: 0;
}
.certificates__track {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding-bottom: 10px
}
/* Скрываем стандартный скроллбар для эстетики */
.certificates__track::-webkit-scrollbar {
    display: none;
}
.certificates__track {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.certificates__slide {
    scroll-snap-align: start;
    flex: 0 0 auto;
    width: 80%;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}
.certificates__slide img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    object-fit: cover;
}

/* Корзина */
/* Кнопка Оформить заказ */
.wc-block-components-sidebar.wc-block-cart__sidebar.wp-block-woocommerce-cart-totals-block {
background-color: #f5f5f5;
padding: 20px;
	border-radius: 30px;
}

.wc-block-cart__submit.wp-block-woocommerce-proceed-to-checkout-block.btn.btn--primary {
width: 100%;
		padding: 0px !important;
}
.wc-block-cart__submit-container {
width: 100%;
}
/* Кнопка Применить купон */
.wc-block-components-button.wp-element-button.wc-block-components-totals-coupon__button.contained {
	background-color: #194896;
	border-radius: 30px;
	color: #fff;
	font-weight: 500;
}

/* форм для активации купонов в корзине */
.wc-block-components-totals-coupon__form {
	flex-direction: column;
}

@media (max-width: 768px) {
    .certificates__content {
        flex-direction: column;
    }
    
    .certificates__gallery,
    .certificates__info {
        width: 100%;
    }
	
.wc-block-cart__submit.wp-block-woocommerce-proceed-to-checkout-block.btn.btn--primary {
		margin-bottom: 100px;
	}
.wc-block-cart__submit-container.wc-block-cart__submit-container--sticky {
	bottom: -100px;
	left: 50%;
	}
	
	
	.wc-block-components-sidebar.wc-block-cart__sidebar.wp-block-woocommerce-cart-totals-block {
	margin-bottom: 100px;
	}
	.wp-block-woocommerce-cart-order-summary-block {
	margin-bottom: 100px;
	}
}
 
  
  /*END ADDED blackcatexodus*/

.hero__inner {
  position: relative;
  width: 100%;
  max-width: 327px;
  /* Container width from Figma mobile */
  min-width: 320px;
  /* Minimum width requirement */
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  /* Gap between content and button from Figma */
  font-family: var(--font-sans);
  z-index: 2;
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Logo image - dimensions from Figma */
.hero__brand-img {
  display: block;
  margin-bottom: 16px;
  /* Spacing from Figma */
  width: 85.41px;
  /* Width from Figma mobile */
  height: auto;
  max-width: none;
}

/* Tagline - "Для цветов не нужен повод" */
.hero__tagline {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 16px;
  /* Font size from Figma */
  line-height: 1.219;
  /* Line height from Figma style_KJXT8P */
  letter-spacing: -0.06875em;
  /* -6.875% from Figma */
  color: var(--white);
  margin: 0 0 16px 0;
  /* Spacing from Figma */
  text-align: center;
}

/* Description text */
.hero__description {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 14px;
  /* Font size from Figma */
  line-height: 1.5;
  /* Line height from Figma style_ZRSC0S */
  color: var(--white);
  opacity: 0.8;
  /* Opacity from Figma */
  margin: 0;
  text-align: center;
  max-width: 250px;
  /* Max width from Figma content area */
}

/* Catalog button - full width with padding */
.hero .btn.hero__catalog-btn {
  width: 100%;
  max-width: 224px;
  /* Button width from Figma */
  height: 48px;
  /* Button height from Figma */
  padding: 10px;
  /* Padding from Figma layout */
  background-color: transparent !important;
  /* Override other btn styles */
  color: var(--white);
  border: 1px solid var(--white);
  /* Border from Figma stroke */
  border-radius: 30px;
  /* Border radius from Figma */
  font-family: var(--font-sans);
  font-weight: 600;
  /* Font weight from Figma style_2F06JP */
  font-size: 16px;
  /* Font size from Figma */
  line-height: 1.243;
  /* Line height from Figma */
  letter-spacing: -0.03em;
  /* Letter spacing from Figma */
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .btn.hero__catalog-btn:hover {
  background-color: var(--white) !important;
  color: var(--primary-green);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero__catalog-btn:active {
  transform: translateY(0);
}

/* Desktop and larger screens */
@media (min-width: 768px) {
  .hero.hero--banner {
    min-height: 600px;
    padding: 0 40px 80px 40px;
  }

  .hero__bg {
    background-image: url('../img/figma/hero-bg-desktop.jpg');
  }

  .hero__inner {
    max-width: 500px;
    gap: 64px;
  }

  .hero__brand-img {
    width: 150px;
    margin-bottom: 24px;
  }

  .hero__tagline {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .hero__description {
    font-size: 16px;
    max-width: 400px;
  }

  .hero .btn.hero__catalog-btn {
    display: none;
  }
}

/* Large desktop screens */
@media (min-width: 1200px) {
  .hero.hero--banner {
    min-height: 700px;
  }

  .hero__inner {
    max-width: 600px;
  }

  .hero__brand-img {
    width: 181px;
    /* Original Figma desktop size */
    height: 144px;
  }

  .hero__tagline {
    font-size: 20px;
  }

  .hero__description {
    font-size: 18px;
    max-width: 450px;
  }
}

/* About Section */
.about {
  /* vertical spacing unified by global rule */
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: var(--bg-beige);
}

.about__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  /* gap between left column and services grid */
  align-items: start;
}

.about__text {
  padding-top: 0;
  /* Removed padding-top */
}

.about__left {
  display: flex;
  flex-direction: column;
  gap: 24px;
  /* Adjusted gap */
}

/* Integrated services grid (2x2) inside About */
.about__services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 24px;
}

.about__services-heading {
  grid-column: 1 / -1;
  font: 500 32px/1.22 'Montserrat', sans-serif;
  letter-spacing: -0.07em;
  color: #343434;
  margin: 0 0 8px;
  display: none;
  /* hide on desktop to keep original layout */
}

.about__services-cards {
  display: contents;
  /* allow existing grid layout on desktop */
}

/* Reuse .service-card base styles; ensure uniform height */
.about__services .service-card {
  min-height: 240px;
  height: 100%;
}

@media (min-width: 1200px) {
  .about__services .service-card {
    min-height: 318px;
  }
}

/* Responsive stacking for narrow screens */
@media (max-width: 900px) {
  .about__content {
    grid-template-columns: 1fr;
  }

  .about__services {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .about__services {
    grid-template-columns: 1fr;
  }
}

/* Mobile layout: reorder so services appear first, cards become horizontal scroll */
@media (max-width: 768px) {
  .about__content {
    display: flex;
    flex-direction: column;
  }

  .about__services {
    order: 1;
    display: block;
  }

  .about__left {
    order: 2;
  }

  .about__services-heading {
    display: block;
    font-size: 24px;
    letter-spacing: -0.06em;
    margin-bottom: 16px;
	 width: 100%;
  }

  .about__services-cards {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
	  padding-bottom: 8px;
	  scrollbar-width: none;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding-left: 20px
    padding-right: 20px;
    box-sizing: border-box;
  }
  }

  .about__services-cards::-webkit-scrollbar {
    display: none;
  }

  .about__services-cards .service-card {
    flex: 0 0 auto;
	  width: 240px;
    min-height: 220px;
    scroll-snap-align: start;
  }

  .about__services {
    padding-bottom: 8px;
    margin-bottom: 24px;
  }

  /* Prevent page-level horizontal scroll on small devices */
  html,
  body {
    overflow-x: hidden;
    width: 100%;
  }

  /* Allow explicit horizontal scroll areas to work */
  .about__services-cards,
  .some-other-scrollable {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

.about__video {
  position: relative;
  border-radius: 16px;
  /* Adjusted border-radius */
  overflow: hidden;
  margin: 0;
}

.about__video img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 120px;
  width: 120px;
  height: 120px;
  cursor: pointer;
  color: #FFFFFF;
  font: 500 9.18px/1.2 'Montserrat', sans-serif;
}

.video-play__circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background-color: #FFFFFF;
  border-radius: 50%;
}

.video-play__circle img {
  width: 24px;
  height: 23px;
}

.video-play__label {
  background: transparent;
  padding: 0;
  color: #FFFFFF;
  text-align: center;
}

/* Service card base (shared) */
.service-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
}

.service-card--image {
  display: flex;
}

.service-card--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-card--outline {
  border: 1px solid var(--color-primary);
  background: var(--bg-beige);
  justify-content: center;
  align-items: center;
}

.service-card__body {
  margin: 0;
  text-align: center;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 150px;
}

.service-card__title {
  font: 500 24px/1.22 'Montserrat', sans-serif;
  letter-spacing: -0.09em;
  color: #343434;
}

.service-card__link {
  font: 600 16px/1.24 'Montserrat', sans-serif;
  color: #A35A63;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.service-card__link:hover {
  opacity: .7;
}

.about__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  /* Adjusted font-weight */
  font-size: 32px;
  /* Adjusted font-size */
  line-height: 1.22;
  /* Adjusted line-height */
  letter-spacing: -0.07em;
  /* Adjusted letter-spacing */
  color: #343434;
  margin-bottom: 24px;
  /* Adjusted margin-bottom */
}

.about__title--mobile {
  display: none;
}

.about__subtitle-mobile {
  display: none;
}

@media (max-width: 768px) {
	body {
	padding-bottom: 100px;	
	}
	.footer {
		border-top-left-radius: 24px;
		border-top-right-radius: 24px;
	}
  .about__title--desktop {
    display: none;
  }

  .about__title--mobile {
    display: block;
    font-size: 28px;
    letter-spacing: -0.06em;
    margin: 0 0 8px;
  }

  .about__subtitle-mobile {
    display: block;
    font: 500 12px/1.3 'Montserrat', sans-serif;
    letter-spacing: -0.04em;
    color: rgba(52, 52, 52, 0.9);
    margin: 0 0 16px;
    text-align: center;
  }

  .about__text {
    text-align: center;
  }
}

.about__description {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  /* Adjusted font-weight */
  font-size: 14px;
  /* Adjusted font-size */
  line-height: 1.5;
  /* Adjusted line-height */
  color: rgba(52, 52, 52, 0.9);
  margin-bottom: 32px;
  /* Adjusted margin-bottom */
}

.about__images {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
  height: 500px;
}

.about__image-main {
  grid-row: 1 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about__image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__image-side,
.about__image-bottom {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.about__image-side img,
.about__image-bottom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__image-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: white;
}

.about__image-overlay h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 8px;
}

.about__link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  text-decoration: none;
  font-size: 14px;
  transition: opacity 0.3s ease;
}

.about__link:hover {
  opacity: 0.8;
}

.about__video-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
}

/* About cards refined */
.about-card {
  position: relative;
  display: block;
}

.about-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-card__caption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.about-card__title {
  font: 600 20px/1.2 var(--font-sans);
  color: var(--color-primary);
}

.about-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font: 500 14px/1.2 var(--font-sans);
  text-decoration: none;
  color: #8C5F5F;
}

.about-card__link:hover {
  opacity: .8;
}

.about-card--alt .about-card__title {
  color: var(--color-primary);
}

/* Video button vertical layout */
.video-btn {
  flex-direction: column;
  text-align: center;
  padding: 14px 18px;
  line-height: 1.2;
}

.video-btn__label {
  font: 500 12px/1.2 var(--font-sans);
  color: var(--color-primary);
  letter-spacing: -.5px;
}

.video-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50px;
  padding: 12px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.video-btn:hover {
  background: white;
  transform: translateY(-2px);
}

.video-btn__icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2A5B55;
}

/* Global vertical spacing: make vertical space between sections equal to 90px
  Applies to all <section> inside main except the hero banner which has a fixed height */


/* If a section explicitly needs to be full-bleed or has its own layout, it can
  still override this rule by using a more specific selector or !important. */

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  gap: 8px;
}

.btn--primary {
  background-color:#194896;
  /* updated color */
  color: var(--white);
}

.btn--primary:hover {
  background-color: #2A5B55;
  /* hover shade */
  transform: translateY(-2px);
}

.btn--white {
  background-color: var(--white);
  color: var(--color-primary);
  border: 2px solid transparent;
}

.btn--white:hover {
  border-color: #2A5B55;
  transform: translateY(-2px);
}

.btn--outline {
  background-color: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn--outline:hover {
  background-color: #2A5B55;
  color: white;
  transform: translateY(-2px);
}

.btn--secondary {
  background-color: var(--color-secondary);
  color: var(--white);
}

.btn--secondary:hover {
  background-color: var(--color-primary);
  transform: translateY(-2px);
}

/* Products Section */
.products {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: transparent;
}

.products__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}

.products__title {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 40px;
  color: var(--color-title);
}

.products__nav {
  display: flex;
  gap: 16px;
}

.products__nav-btn {
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-primary);
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
		pointer-events: auto !important;
	opacity: 1 !important;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--color-accent);
}

.products__nav-btn:hover {
  border-color: #A35A63;
  background-color: rgba(163, 90, 99, 0.1);
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 60px;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}







.products--seasonal .products__nav-btn {
  border-color: #2A5B55;
  background: rgba(163, 90, 99, 0.1);
  color: #A35A63;
  backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.products--seasonal .products__nav-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(163, 90, 99, 0.2);
  border-radius: 50%;
  transition: all 0.3s ease;
  transform: translate(-50%, -50%);
}

.products--seasonal .products__nav-btn:hover::before {
  width: 100px;
  height: 100px;
}

.products--seasonal .products__nav-btn:hover {
  background: #194896;
  color: #FFF;
  border-color: #194896;
  transform: none;
}



/* Reviews Section */
.reviews {
  padding-top: var(--section-vertical);
  padding-bottom: var(--section-vertical);
  background-color: var(--bg-beige);
}

/* Mobile horizontal product sections */
.mobile-products { display:none; }
.mobile-products__header { display:flex; align-items:center; justify-content:space-between; margin:40px 0 16px; }
.mobile-products__title { font-family: var(--font-serif, 'Montserrat', sans-serif); font-size:20px; font-weight:600; letter-spacing:-0.5px; margin:0; }
.mobile-products__more { font-size:12px; color: var(--color-primary-dark, #2A5B55); text-decoration:none; font-weight:500; }
.mobile-products__scroller { display:flex; gap:14px; overflow-x:auto; -webkit-overflow-scrolling:touch; scroll-snap-type:x mandatory; padding:4px 20px 8px; margin:0 -20px; }
.mobile-products__scroller::-webkit-scrollbar { display:none; }
.mobile-products__card { flex:0 0 220px; scroll-snap-align:start; }
.mobile-products .product-card { position:relative; }
.mobile-products .product-card__image img { border-radius:12px; }
.mobile-products .product-card__content { padding:10px 0 4px; }
.mobile-products .btn.btn--white { width:36px; height:36px; padding:0; display:flex; align-items:center; justify-content:center; border-radius:12px; }

@media (max-width: 768px) {
  .mobile-products { display:block; }
  .mobile-products + .mobile-products { margin-top:32px; }
}

.reviews__header {
  text-align: center;
  margin-bottom: calc(var(--section-vertical) * 1.33);
  /* ~60px */
}

.reviews__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 36px;
  color: #2A5B55;
  margin-bottom: 20px;
}

.reviews__subtitle {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-primary);
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto calc(var(--section-vertical) * 0.9);
}

.reviews__nav {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.reviews__nav-btn {
  width: 48px;
  height: 48px;
  border: 2px solid #E5E5E5;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #2A5B55;
}

.reviews__nav-btn:hover {
  border-color: #2A5B55;
  background-color: #2A5B55;
  color: white;
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* Review Card */
.review-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: calc(var(--section-vertical) * 0.7);
  /* ~31px */
  position: relative;
  transition: all 0.3s ease;
}

.review-card--blurred {
  filter: blur(2px);
  opacity: 0.6;
}

.review-card__quote {
  position: absolute;
  top: calc(var(--section-vertical) * -0.27);
  /* ~ -12px */
  left: calc(var(--section-vertical) * 0.7);
  /* ~32px */
  width: calc(var(--section-vertical) * 0.53);
  /* ~24px */
  height: calc(var(--section-vertical) * 0.53);
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: calc(var(--section-vertical) * 0.27);
  /* ~12px */
  margin-bottom: calc(var(--section-vertical) * 0.44);
  /* ~20px */
}

.review-card__avatar {
  width: calc(var(--section-vertical) * 0.9);
  /* ~40px */
  height: calc(var(--section-vertical) * 0.9);
  border-radius: 50%;
  overflow: hidden;
}

.review-card__name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #2A5B55;
}

.review-card__text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  color: #2A5B55;
  margin-bottom: 20px;
}

.review-card__date {
  font-size: 14px;
  color: #999;
}

/* Catalog Section */
.catalog {
  padding-top: var(--section-vertical);
  padding-bottom: var(--section-vertical);
  background-color: var(--bg-beige);
}

.catalog > .container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.catalog__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 546px;
}

.catalog__title {
  font-size: 40px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.08em;
  color: #343434;
  margin: 0;
}
.catalog__title-dolce, .catalog__title-services, .catalog__title-vitrina {
	padding: 24px 0;
} 

.catalog__subtitle {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: rgba(52, 52, 52, 0.9);
  margin: 0;
  max-width: 444px;
}

.catalog__tabs {
  display: flex;
  gap: 24px;
  margin-top: 24px;
}

.catalog__tab {
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.03em;
  border-radius: 30px;
  border: 1px solid #194896;
  background-color: #fff;
  color: var(--color-dark);
  cursor: pointer;
  transition: all 0.3s ease;
  width: 166px;
  text-align: center;
}

.catalog__tab--primary {
  background-color: #194896;
  border-color: #194896;
  color: var(--white);
}

.catalog__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.catalog__more--mobile {
	display: none;
}
@media (max-width: 768px){
.catalog__more.catalog__more--mobile {
	display: flex !important;
}
.catalog__more {
  display: flex;
  justify-content: center;
}

.catalog__more .btn {
  width: 220px;
}
}




/* Catalog product cards - exclude showcase cards */
.catalog .product-card:not(.product-card--showcase) {
  background-color: #fff !important;
  color: #000 !important;
}

.catalog .product-card:not(.product-card--showcase) .product-card__title,
.catalog .product-card:not(.product-card--showcase) .product-card__code,
.catalog .product-card:not(.product-card--showcase) .product-card__price {
  color: #000 !important;
}

.catalog .product-card:not(.product-card--showcase) .product-card__code {
  color: #000 !important;
}

.catalog .btn--white {
  background-color: var(--white) !important;
  color: var(--color-primary) !important;
  border: none;
}



/* Product card styles moved to product-card.css for consistency */

/* Анимации */
@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Анимации при скролле */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.animate-on-scroll.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Hover эффекты */
.hero__button:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

.about__link:hover svg {
  transform: translateX(4px);
  transition: transform 0.3s ease;
}

.btn:active {
  transform: translateY(0) scale(0.98);
}

/* Дополнительные эффекты для мобильных устройств */
@media (hover: none) {
  .product-card:hover {
    transform: none;
  }

  .review-card:hover {
    transform: none;
  }

  .btn:hover {
    transform: none;
  }
}


/* Products grid styles moved to product-card.css for consistency */

/* Generic compact product list context */
.products-compact .product-card {
  border: 1px solid var(--color-border);
  padding: 12px;
  border-radius: var(--radius-md);
  text-align: left;
}

.products-compact .product-card h3 {
  font-size: var(--font-lg);
  margin: 8px 0;
}

.products-compact .product-card .price {
  color: var(--color-primary-dark);
  font-weight: var(--font-weight-semibold);
}

/* Reviews Section */
.reviews {
  padding-top: var(--section-vertical);
  padding-bottom: var(--section-vertical);
  background-color: transparent;
  position: relative;
}

.reviews__header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}

.reviews__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 40px;
  line-height: 1.22;
  letter-spacing: -3.2px;
  color: #343434;
  margin-bottom: 20px;
}

.reviews__subtitle {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(52, 52, 52, 0.9);
  max-width: 444px;
  margin: 0 auto 40px;
  text-align: center;
}

.reviews__nav {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.reviews__nav-btn {
  width: 40px;
  height: 40px;
  border: 1px solid #2A5B55;
  border-radius: 50%;
  background: transparent;
  color: #A35A63;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.reviews__nav-btn:hover {
  background: #2A5B55;
  color: white;
  transform: none;
}

.reviews__slider {
  position: relative;
  overflow: visible;
  padding: 0;
  height: 320px;
  display: flex;
  justify-content: center;
  align-items: center;
	margin-top: 50px;
}

.reviews__track {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
}

/* Review Cards */
.review-card {
  background: #F5F5F5;
  border-radius: 20px;
  padding: 20px;
  position: absolute;
  box-shadow: 0px -6px 24px 0px rgba(59, 61, 78, 0.05);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

/* Main center card - largest but smaller than before */
.review-card--main.review-card--center {
  width: 290px;
  height: 320px;
  z-index: 5;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/* Small side cards */
.review-card--small {
  width: var(--review-small-w);
  height: var(--review-small-h);
  z-index: 3;
  top: 50%;
  transform: translateY(-50%);
}

/* Far left/right - optimized for 1440px with proper spacing */
.review-card--1 {
  left: 0%;
  filter: blur(4px);
  opacity: .6;
}

.review-card--5 {
  right: 0%;
  filter: blur(4px);
  opacity: .6;
}

/* Near left/right - optimized for 1440px with proper spacing */
.review-card--2 {
  left: 20%;
  filter: blur(2px);
  opacity: .82;
}

.review-card--4 {
  right: 20%;
  filter: blur(2px);
  opacity: .82;
}

.review-card__quote {
  margin-bottom: var(--review-content-gap);
}

.review-card__quote-icon {
  width: var(--review-quote-icon-w);
  height: var(--review-quote-icon-h);
  object-fit: contain;
}

.review-card__author {
  display: flex;
  align-items: center;
  margin-bottom: var(--review-content-gap);
}

.review-card__avatar {
  width: var(--review-avatar-lg);
  height: var(--review-avatar-lg);
  border-radius: 50%;
  object-fit: cover;
  margin-right: 12px;
}

.review-card--small .review-card__avatar {
  width: var(--review-avatar-sm);
  height: var(--review-avatar-sm);
}

.review-card__name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 13px;
  line-height: 1.22;
  letter-spacing: -1.1px;
  color: #343434;
}

.review-card--small .review-card__name {
  font-size: 11px;
}

.review-card__text {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(52, 52, 52, 0.9);
  margin-bottom: var(--review-content-gap);
  flex-grow: 1;
}

.review-card--small .review-card__text {
  font-size: 10px;
}

.review-card__date {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 13px;
  line-height: 1.22;
  letter-spacing: -1.1px;
  color: #343434;
  opacity: 0.5;
  margin-top: var(--review-content-gap);
}

.review-card--small .review-card__date {
  font-size: 11px;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .reviews__track {
    max-width: 1100px;
  }

  .review-card--1 {
    left: -2%;
  }

  .review-card--2 {
    left: 12%;
  }

  .review-card--4 {
    right: 12%;
  }

  .review-card--5 {
    right: -2%;
  }
}

@media (max-width: 1024px) {
  .reviews__track {
    max-width: calc(var(--container-max) * 0.625);
    /* ~900px when container is 1440 */
  }

  .reviews__slider {
    height: 380px;
  }

  .review-card--small {
    width: var(--review-small-w);
    height: var(--review-small-h);
  }

  .review-card--main.review-card--center {
    width: var(--review-main-w-lg);
    height: var(--review-main-h-lg);
  }

  .review-card--1 {
    left: -8%;
  }

  .review-card--2 {
    left: 8%;
  }

  .review-card--4 {
    right: 8%;
  }

  .review-card--5 {
    right: -8%;
  }
}

@media (max-width: 1024px) {
  :root {
    --review-gap: 24px;
  }
}

@media (max-width: 768px) {
  :root {
    --review-gap: 20px;
  }
}

@media (max-width: 768px) {
  .reviews {
    padding-top: var(--section-vertical);
    padding-bottom: var(--section-vertical);
  }

  .reviews__title {
    font-size: 28px;
    letter-spacing: -2px;
  }

  .reviews__subtitle {
    font-size: 13px;
    padding: 0 20px;
  }

  .reviews__header {
    margin-bottom: calc(var(--section-vertical) * 1.33);
  }

  .reviews__slider {
    height: 350px;
  }

  .review-card--main.review-card--center {
    width: var(--review-main-w-md);
    height: var(--review-main-h-md);
  }

  .review-card--small {
    width: calc(var(--review-small-w) * 0.82);
    height: calc(var(--review-small-h) * 0.79);
  }

  /* show only immediate neighbors on mobile: 2 (left) and 4 (right) */
  .review-card--1,
  .review-card--5 {
    display: none;
  }

  .review-card--2 {
    display: block;
    left: 6%;
    filter: blur(1px);
    opacity: .9;
  }

  .review-card--4 {
    display: block;
    right: 6%;
    filter: blur(1px);
    opacity: .9;
  }
}

@media (max-width: 480px) {
  .reviews {
    padding-top: var(--section-vertical);
    padding-bottom: var(--section-vertical);
  }

  .reviews__title {
    font-size: 24px;
    letter-spacing: -1.5px;
  }

  .reviews__slider {
    height: 280px;
  }

  /* keep only immediate neighbors visible on very small screens */
  .review-card--1,
  .review-card--5 {
    display: none;
  }

  .review-card--2 {
    display: block;
    left: -60%;
    filter: blur(1px);
    opacity: .85;
  }

  .review-card--4 {
    display: block;
    right: -60%;
    filter: blur(1px);
    opacity: .85;
  }

  .review-card--main.review-card--center {
    width: var(--review-main-w-sm);
    height: var(--review-main-h-sm);
  }
}

/* Subscribe / Social Section */
.subscribe-social {
  /* Fallback panel color matching design */
  background-color: #fbf6f2;
  /* Decorative leaf pattern from project img folder */
  background-image: url("../../img/socialbg2.png");
  background-repeat: repeat;
  background-position: center right;
  background-size: auto;
  padding-top: var(--section-vertical);
  padding-bottom: var(--section-vertical);
  position: relative;
  overflow: visible;
}

/* Hide duplicate decorative element when using section background */
.subscribe-social__leaf-bg {
  display: none;
}

/* Desktop tweak: more pronounced right positioning on wide screens */
@media (min-width: 1024px) {
  .subscribe-social {
    background-position: center 20%;
    background-size: auto;
  }
}

.subscribe-social__inner {
  position: relative;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 32px;
  /* slightly tighter horizontal padding */
}

.subscribe-social__panel {
  position: relative;
  background: #F9F1EC;
  border-radius: 64px;
  min-height: 420px;
  display: flex;
  align-items: stretch;
  /* reduce left padding and right padding to give more room for the visual */
  padding: 64px 120px 64px 80px;
  gap: 32px;
  overflow: hidden;
  z-index: 2;
}

.subscribe-social__content {
  width: 52%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.subscribe-social__title {
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
  font-size: 40px;
  line-height: 1.22;
  letter-spacing: -3.2px;
  color: var(--color-dark);
  margin: 0 0 28px;
}

.subscribe-social__subtitle {
  font: 500 14px/1.5 'Montserrat', sans-serif;
  color: rgba(52, 52, 52, 0.9);
  max-width: 440px;
  margin: 0 0 36px;
}

.subscribe-social__actions {
  display: flex;
  gap: 22px;
}

.subscribe-social__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 52px;
  padding: 0 40px;
  border-radius: 90px;
  font: 500 16px/1 'Montserrat', sans-serif;
  letter-spacing: -0.04em;
  text-decoration: none;
  transition: .3s ease;
  border: 1.5px solid transparent;
}

.subscribe-social__btn-label {
  display: inline-block;
}

.subscribe-social__btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.subscribe-social__btn--primary {
  background: #194896;
  color: var(--white);
}

.subscribe-social__btn--primary:hover {
  background: #85b5b9;
  text-decoration: none;
}

.subscribe-social__btn--outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.subscribe-social__btn--outline:hover {
  background: var(--color-primary);
  color: var(--white);
}

.subscribe-social__icon {
  width: 18px;
  height: 18px;
  display: block;
}

.subscribe-social__visual {
  flex: 1;
  position: relative;
  min-width: 320px;
}

.subscribe-social__bg-right,
.subscribe-social__bg-right-alt {
  position: absolute;
  right: 40px;
  bottom: 24px;
  width: 360px;
  height: auto;
  object-fit: contain;
  z-index: 1;
  opacity: 1;
}

.subscribe-social__bg-right-alt {
  right: 140px;
  width: 200px;
  opacity: 0.95;
}

/* Phone mock (desktop) - shift left so phones align closer to content */
.subscribe-social__phones {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(-120px);
}

.subscribe-social__phone {
  position: absolute;
  width: 260px;
  height: auto;
  object-fit: cover;
  border-radius: 36px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.subscribe-social__phone--back {
  transform: rotate(-25deg) translate(-180px, -10px);
  z-index: 3;
}

.subscribe-social__phone--front {
  transform: rotate(12deg) translate(80px, 36px);
  z-index: 4;
}

/* Tablet adjustments */
@media (max-width: 1200px) {
  .subscribe-social__phones {
    transform: translateX(-80px);
  }

  .subscribe-social__phone {
    width: 220px;
  }

  .subscribe-social__phone--back {
    transform: rotate(-20deg) translate(-120px, 0);
  }

  .subscribe-social__phone--front {
    transform: rotate(10deg) translate(70px, 36px);
  }

  .subscribe-social__panel {
    padding: 56px 80px 56px 56px;
  }
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .subscribe-social {
  padding-top: var(--section-vertical);
  padding-bottom: var(--section-vertical);
  }

  .subscribe-social__inner {
    padding: 0 16px;
  }

  .subscribe-social__panel {
  display: flex;
  flex-direction: column;
  border-radius: 24px;
  padding: 32px 20px 40px;
  gap: 24px;
  }

  .subscribe-social__content {
    width: 100%;
    text-align: center;
  padding-bottom: 0;
  }

  .subscribe-social__visual {
  order: -1;
  display: flex;
  justify-content: center;
  margin: 0 0 12px;
  flex: none; /* override desktop flex:1 */
  width: 100%;
  min-width: 0;
  max-width: 340px;
  align-self: center;
  }

  .subscribe-social__phones {
    position: relative;
    transform: none;
    display: flex;
    gap: 12px;
    justify-content: center;
  }

  .subscribe-social__phone {
    position: static;
    width: 140px;
    border-radius: 12px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  }

  .subscribe-social__phone--back,
  .subscribe-social__phone--front {
    transform: none;
  }
}

/* decorative lines and podium shadow for the phone mock */
.subscribe-social__lines {
  position: absolute;
  top: 0;
  right: 140px;
  bottom: 0;
  width: 280px;
  background: repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.09) 0 2px, transparent 2px 7px);
  filter: blur(.2px);
  z-index: 2;
}

.subscribe-social__podium {
  position: absolute;
  bottom: 20px;
  right: 60px;
  width: 540px;
  height: 120px;
  background: radial-gradient(circle at 50% 45%, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.04) 60%, transparent 70%);
  border-radius: 50%;
  filter: blur(6px);
}

@media (max-width:1100px) {
  .subscribe-social__panel {
    flex-direction: column;
    padding: 64px 64px;
  }

  .subscribe-social__content {
    width: 100%;
  }

  .subscribe-social__visual {
    height: 360px;
  }

  .subscribe-social__phones {
    position: relative;
  }

  .subscribe-social__lines {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    opacity: .3;
  }

  .subscribe-social__phone {
    position: absolute;
  }

  .subscribe-social__phone--back {
    transform: rotate(-18deg) translate(-60px, 20px);
  }

  .subscribe-social__phone--front {
    transform: rotate(8deg) translate(80px, 40px);
  }

  .subscribe-social__podium {
    width: 420px;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
  }

  .subscribe-social__bg-right,
  .subscribe-social__bg-right-alt {
    display: none;
  }
}

@media (max-width:640px) {
  .subscribe-social {
  padding-top: var(--section-vertical);
  padding-bottom: calc(var(--section-vertical) + env(safe-area-inset-bottom, 0));
  }

  .subscribe-social__panel {
  padding: 28px 16px 36px;
  border-radius: 24px;
  }

  .subscribe-social__title {
  font-size: 24px;
  letter-spacing: -1.2px;
  margin-bottom: 14px;
  }

  .subscribe-social__subtitle {
  font-size: 12.5px;
  margin-bottom: 20px;
  }

  .subscribe-social__actions {
  flex-direction: column;
  width: 100%;
  gap: 12px;
  }

  .subscribe-social__btn {
  width: 100%;
  justify-content: center;
  padding: 0 24px;
  height: 48px;
  font-size: 14px;
  }

  .subscribe-social__visual {
    height: 300px;
  }

  .subscribe-social__phone {
    width: 200px;
  }

  .subscribe-social__phone--back {
    transform: rotate(-16deg) translate(-40px, 30px);
  }

  .subscribe-social__phone--front {
    transform: rotate(10deg) translate(60px, 40px);
  }

  .subscribe-social__podium {
    width: 300px;
  }

  .subscribe-social__bg-right,
  .subscribe-social__bg-right-alt {
    display: none;
  }
}

/* Mobile override: ensure social image visible on very small screens */
@media (max-width:640px) {
  .subscribe-social__visual { position: relative; }
  .subscribe-social__bg-right {
    display: block !important;
    position: static;
    width: 100%;
    max-width: 300px;
    height: auto;
    margin: 0 auto 16px;
    opacity: 1;
  }
  /* hide empty phones wrapper if unused */
  .subscribe-social__phones { display:none; }
}

/* Home Flowers Section */
.home-flowers {
  padding-top: var(--section-vertical);
  padding-bottom: var(--section-vertical);
  background-color: var(--bg-beige);
}

.home-flowers__header {
  display: flex;
  gap: 48px;
  margin-bottom: 60px;
  align-items: center;
}

.home-flowers__image {
  flex: 1;
  border-radius: 24px;
  overflow: hidden;
  height: 320px;
}

.home-flowers__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-flowers__content {
  flex: 1;
  padding-left: 32px;
}

.home-flowers__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 40px;
  line-height: 1.22;
  letter-spacing: -3.2px;
  color: #343434;
  margin-bottom: 24px;
}

.home-flowers__description {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(52, 52, 52, 0.9);
  margin-bottom: 32px;
  max-width: 444px;
}

.home-flowers__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Responsive Design for Home Flowers */
@media (max-width: 1200px) {
  .home-flowers__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .home-flowers__header {
    flex-direction: column;
    gap: var(--review-gap);
    text-align: center;
  }

  .home-flowers__content {
    padding-left: 0;
  }

  .home-flowers__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
	
  .home-flowers {
    padding-top: var(--section-vertical);
    padding-bottom: var(--section-vertical);
  }

  .home-flowers__header {
    margin-bottom: 40px;
  }

  .home-flowers__image {
    height: 240px;
  }

  .home-flowers__title {
    font-size: 28px;
    letter-spacing: -2px;
  }

  .home-flowers__grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding: 4px 20px 8px;
    margin: 0 -20px;
  }
  .home-flowers__grid > * { flex: 0 0 240px; scroll-snap-align: start; }
  .home-flowers__grid::-webkit-scrollbar { display:none; }
}

/* Order Steps Section */
.order-steps {
  padding-top: var(--section-vertical);
  /* unify vertical spacing */
  padding-bottom: var(--section-vertical);
  background-color: var(--bg-beige);
}

.order-steps__header {
  /* Между заголовком и блоками: y:0 заголовок, y:99 блоки = 50px отступ */
  margin-bottom: 50px;
}

.order-steps__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 40px;
  line-height: 1.22;
  letter-spacing: -0.08em;
  color: var(--color-text-dark-secondary);
  text-align: left;
}

.order-steps__layout {
  display: grid;
  /* Левая колонка 432px (фон), внутренняя ширина шагов 400px (padding по 16px) */
  grid-template-columns: 432px 1fr;
  gap: 12px;
  /* уменьшаем расстояние между колонками */
  align-items: start;
  /* Выравнивание по верхней линии */
}

.order-steps__nav-container {
  /* Фон левого блока #F5F5F5 */
  background-color: #F5F5F5;
  border-radius: 24px;
  padding: 16px;
  /* 16px со всех сторон */
}

.order-steps__nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.order-step-btn {
  width: 100%;
  height: 58px;
  padding: 16px;
  border-radius: 24px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 21px;
  line-height: 1.22;
  letter-spacing: -0.057em;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  background-color: var(--white);
  color: var(--color-primary);
  box-shadow: 0px -6px 24px 0px rgba(59, 61, 78, 0.05);
}

.order-step-btn.is-active {
  background-color: #194896;
  /* Точный цвет из Figma */
  color: var(--white);
  box-shadow: none;
}

.order-step-btn:not(.is-active):hover {
  background-color: #f0f0f0;
}

.order-steps__panel {
  background-color: #F5F5F5;
  /* Изменено с var(--bg-light-gray) на белый */
  border-radius: 24px;
  /* По макету правая панель: x:456, внутренний контент начинается с x:480 = padding 24px */
  padding: 24px;
  display: flex;
  flex-direction: column;
  /* Между контентом и showcase: заголовок+описание+кнопка занимают ~102px (y:123-222+48), 
     showcase начинается с y:294, значит gap = 294-270 = 24px */
  gap: 24px;
}

.order-steps__panel-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* По макету: заголовок y:123, описание y:176, кнопка y:222 */
  /* Интервалы: 53px между заголовком и описанием, 46px между описанием и кнопкой */
  gap: 24px;
}

.order-steps__panel-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.22;
  letter-spacing: -0.09em;
  color: var(--color-text-dark-secondary);
}

.order-steps__panel-description {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.22;
  letter-spacing: -0.06em;
  color: var(--color-text-dark-secondary);
  margin: 0;
  /* Управляется gap контейнера */
}

.order-steps__showcase {
  background-color: var(--white);
  border-radius: 24px;
  padding: 8px;
  /* уменьшаем внутренние отступы, чтобы карточки могли быть шире */
  border: 1px solid rgba(33, 33, 35, 0.05);
  box-shadow: 0px -6px 24px 0px rgba(59, 61, 78, 0.05);
  height: 315px;
  /* Точная высота из Figma */
  overflow: hidden;
}

.order-steps__showcase-grid {
  display: grid;
  /* увеличиваем минимальную ширину карточки для размещения длинных кнопок */
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 6px;
  align-items: stretch;
  height: 100%;
}

.product-card--showcase {
  background-color: var(--white);
  box-shadow: none;
  padding: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  height: 100%;
  /* Одинаковая высота карточек */
}

.product-card--showcase .product-card__image {
  margin-bottom: 8px;
  /* Уменьшил с 12px */
  position: relative;
  /* Для позиционирования бейджа */
  height: 160px;
  /* Фиксированная высота изображения */
  overflow: hidden;
  border-radius: 12px;
}

.product-card--showcase .product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Бейдж скидки */
.product-card__badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background-color: #E74C3C;
  color: white;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 10px;
  line-height: 1;
}

.product-card--showcase .product-card__content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  /* ещё меньше промежутков */
  flex-grow: 1;
  /* Заполняет оставшееся место */
  justify-content: space-between;
  /* Распределяет элементы */
  padding: 2px 4px;
  /* ещё меньше внутренних отступов */
}

.product-card--showcase .product-card__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 12px;
  /* Еще больше уменьшил */
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #343434;
  margin-bottom: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* Максимум 2 строки */
  line-clamp: 2;
  /* Стандартное свойство для совместимости */
  -webkit-box-orient: vertical;
}

.product-card--showcase .product-card__price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 12px;
  /* Уменьшено с 14px */
  line-height: 1.2;
  color: #343434;
}

.product-card__price--old {
  text-decoration: line-through;
  color: #8E8E8E;
  font-size: 10px;
  margin-right: 6px;
}

.product-card__price--current {
  color: #27AE60;
  /* Зеленый цвет для цены со скидкой */
  font-weight: 700;
}

.product-card--showcase .product-card__content .btn {
  margin-top: 0;
  /* Убрал auto, используется justify-content: space-between */
  padding: 10px 16px;
  /* Увеличенные отступы для русского текста */
  font-size: 13px;
  /* Оптимальный размер для читаемости */
  border: 1px solid var(--color-secondary);
  /* рамка по макету */
  background-color: var(--color-secondary);
  /* Залитая кнопка как "Оставить заявку" */
  color: #ffffff;
  /* Белый текст */
  border-radius: 16px;
  transition: all 0.18s ease;
  white-space: normal;
  /* Разрешаем перенос для длинных фраз */
  overflow: visible;
  text-overflow: clip;
  min-width: 120px;
  /* Снижаем требовательную минимальную ширину */
  width: 100%;
  /* Занимает всю ширину карточки */
  box-sizing: border-box;
}

.product-card--showcase .product-card__content .btn:hover {
  background-color: rgba(151, 199, 203, 0.06);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(151, 199, 203, 0.12);
}

.btn--sm {
  padding: 8px 16px;
  font-size: 14px;
}

/* Специальные стили для маленьких кнопок в карточках */
.product-card--showcase .btn--sm {
  padding: 8px 14px !important;
  /* Чуть больше отступы, чтобы влезал текст */
  font-size: 12px !important;
  /* Читаемый шрифт */
  min-width: 0 !important;
  /* Снимаем жёсткое ограничение */
  white-space: normal !important;
  /* Разрешаем перенос строки при необходимости */
  letter-spacing: normal;
  font-weight: 600;
  width: 100% !important;
  /* Растягиваем маленькие кнопки на всю ширину */
}

/* На очень широких экранах показываем 4 колонки */
@media (min-width: 1440px) {
  .order-steps__showcase-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Фикс размеров кнопки внутри панели (220x48) */
.order-steps__panel-content .btn {
  width: 220px;
  height: 48px;
  padding: 10px;
  /* padding: 10px по макету Frame 10 */
  border-radius: 30px;
  /* radius: 30px по макету */
  background-color: #194896;
  /* точный цвет из Figma */
  color: #ffffff;
  border: 1px solid #194896;
}

/* Responsive */
@media (min-width: 1201px) {
  .product-card--showcase .product-card__content .btn {
    font-size: 12px;
    /* Немного больше на широких экранах */
    padding: 10px 18px;
    /* Больше места для текста */
  }
}

@media (max-width: 1200px) {
  .order-steps__showcase-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .order-steps__layout {
    grid-template-columns: 1fr;
  }

  .order-steps__nav-container {
    overflow-x: auto;
    scrollbar-width: none;
    /* Firefox */
  }

  .order-steps__nav-container::-webkit-scrollbar {
    display: none;
    /* Safari and Chrome */
  }

  .order-steps__nav {
    flex-direction: row;
    padding-bottom: 0;
  }

  .order-step-btn {
    flex: 0 0 auto;
    width: auto;
    padding: 10px 20px;
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .order-steps__showcase-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding: 4px 16px 8px;
    margin: 0 -16px;
  }
  .order-steps__showcase-grid > * { flex: 0 0 280px; scroll-snap-align: start; }
  .order-steps__showcase-grid::-webkit-scrollbar { display:none; }

  .product-card--showcase .product-card__content .btn {
    font-size: 12px;
    /* Адаптивный размер шрифта */
    padding: 8px 12px;
    /* Адаптивные отступы */
  }
}

@media (max-width: 480px) {
  .order-steps__title {
    font-size: 28px;
  }

  .order-steps__showcase-grid > * { flex: 0 0 240px; }

  .product-card--showcase .product-card__content .btn {
    font-size: 13px;
    /* Крупнее на мобильных, т.к. одна колонка */
    padding: 10px 16px;
  }
}

.order-steps__panel-image {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  margin-top: 24px;
}

/* W E B 0 X */
@media (min-width: 1200px) {
    .hero__brand-img {
        width: 324px;
        height: auto;
    }
    .hero__tagline {
        border-top: 1px solid #194896;
        padding-top: 24px;
    }
}
.hero__tagline {
    color: #194896;
    font-weight: 500;
    font-size: 16px;
}
.hero__description {
    color: #242424;
}
.main, .header, .about, .products--seasonal, .service-card--outline, .products--seasonal, .reviews, .faq, .questions-section, 
.catalog, .subscribe-social__panel, .order-steps, .products.products--for-home, .container.products-for-home-top {
    background: #fff!important;
    background-color: #fff!important;
}
.subscribe-social__panel {
    border: 1px solid #E2E2E2;
}
.btn, .btn--primary:hover, .cta-btn, .cta-btn:hover{background-color:#194896!important}
.service-card__link, .service-card__link:hover{color:#194896!important}
svg.service-card__arrow path{stroke:#194896!important}
.social-icon {
    filter: brightness(100%) saturate(0) invert(0) sepia(0) saturate(0) hue-rotate(130deg) brightness(0) contrast(30%);
}
img.hero__video.video-player {
    width: auto;
    height: -webkit-fill-available;
    position: absolute;
    bottom: -60px;
    justify-self: center;
}