﻿@charset "UTF-8";

:root {
  --bg: #f6f1e7;
  --bg-soft: #fffdf8;
  --surface: rgba(255, 255, 255, 0.92);
  --surface-strong: #ffffff;
  --ink: #14181f;
  --muted: #5b6270;
  --line: rgba(20, 24, 31, 0.1);
  --gold: #c79a4a;
  --gold-deep: #9b6d20;
  --green: #1f6f60;
  --green-soft: #e3efeb;
  --dark: #121822;
  --dark-soft: #1c2430;
  --danger: #c55b4a;
  --shadow-soft: 0 20px 50px rgba(20, 24, 31, 0.09);
  --shadow-strong: 0 28px 80px rgba(20, 24, 31, 0.16);
  --radius-sm: 18px;
  --radius-md: 28px;
  --radius-lg: 36px;
  --container: 1180px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(199, 154, 74, 0.2), transparent 34%),
    radial-gradient(circle at bottom right, rgba(31, 111, 96, 0.16), transparent 30%),
    linear-gradient(180deg, #fbf7f0 0%, #f2ede4 44%, #eef3f1 100%);
  overflow-x: hidden;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
input,
button,
textarea {
  font-family: "Manrope", sans-serif;
}

h1,
h2,
h3,
.main-title,
.product-title,
.scroll-header .left h3 {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.2px;
}

p {
  margin-top: 0;
  color: var(--muted);
  line-height: 1.68;
  font-size: 16px;
}

.container {
  width: min(calc(100% - 28px), var(--container));
  padding-left: 0;
  padding-right: 0;
}

.sub-header,
.mobile-order-bar,
#m1-form {
  display: none !important;
}

.scroll-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 800;
  padding: 10px 0;
  border-bottom: 1px solid rgba(20, 24, 31, 0.08);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 40px rgba(20, 24, 31, 0.08);
  transform: translateY(-120%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.scroll-header.scroll {
  transform: translateY(0);
  opacity: 1;
}

.scroll-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.scroll-header .left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.scroll-header .left img {
  width: 46px;
  height: 46px;
  margin-right: 0;
  padding: 6px;
  border-radius: 14px;
  background: linear-gradient(180deg, #fff8ea 0%, #ffffff 100%);
  border: 1px solid rgba(199, 154, 74, 0.18);
}

.scroll-header .left h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1;
}

.site-header {
  position: relative;
  z-index: 2;
  padding: 18px 0 0;
}

.site-header .container {
  display: grid;
  gap: 14px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(20, 24, 31, 0.08);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.site-header__brand p {
  margin: 8px 0 0;
  font-size: 14px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, #131820 0%, #1f2734 100%);
  color: #fff4dd;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.site-header__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.site-header__meta span,
.hero-proof-row span,
.section-kicker,
.hero-kicker,
.hero-tags span,
.closing-points span,
.order-echo-points span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.45px;
}

.site-header__meta span,
.hero-proof-row span,
.section-kicker,
.hero-kicker {
  background: rgba(20, 24, 31, 0.05);
  border: 1px solid rgba(20, 24, 31, 0.08);
  color: #39424f;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  min-height: 56px;
  padding: 16px 22px;
  color: #fff6df;
  border: 1px solid rgba(199, 154, 74, 0.5);
  border-radius: 18px;
  background: linear-gradient(135deg, #10141b 0%, #232b35 100%);
  box-shadow: 0 18px 30px rgba(16, 20, 27, 0.24);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.35px;
  text-decoration: none;
  margin-bottom: 0;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.button:hover {
  color: #fffdf5;
  border-color: rgba(236, 191, 107, 0.95);
  background: linear-gradient(135deg, #18202a 0%, #324051 100%);
  box-shadow:
    0 22px 40px rgba(16, 20, 27, 0.34),
    0 0 0 1px rgba(236, 191, 107, 0.2);
  transform: translateY(-2px);
}

.button:focus-visible {
  outline: none;
  border-color: rgba(236, 191, 107, 0.98);
  box-shadow:
    0 0 0 4px rgba(236, 191, 107, 0.2),
    0 20px 38px rgba(16, 20, 27, 0.32);
}

.button:active {
  transform: translateY(0);
  box-shadow: 0 14px 24px rgba(16, 20, 27, 0.26);
}

.button img {
  margin: 0;
}

.button.button-block {
  width: 100%;
}

.half-hero1 {
  position: relative;
  padding: 20px 0 24px;
}

.half-hero1::before,
.half-hero1::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.half-hero1::before {
  width: 320px;
  height: 320px;
  top: -80px;
  right: -110px;
  background: radial-gradient(circle, rgba(199, 154, 74, 0.2) 0%, rgba(199, 154, 74, 0) 70%);
}

.half-hero1::after {
  width: 260px;
  height: 260px;
  bottom: -120px;
  left: -90px;
  background: radial-gradient(circle, rgba(31, 111, 96, 0.18) 0%, rgba(31, 111, 96, 0) 70%);
}

.half-hero1 .container {
  display: grid;
  gap: 18px;
}

.half-hero1 .image-gallery,
.half-hero1 .content-box {
  position: relative;
  border-radius: var(--radius-lg);
}

.half-hero1 .image-gallery {
  order: 1;
  padding: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86) 0%, rgba(255, 252, 246, 0.74) 100%);
  border: 1px solid rgba(20, 24, 31, 0.08);
  box-shadow: var(--shadow-soft);
  isolation: isolate;
}

.half-hero1 .image-gallery img {
  display: block;
  width: 100%;
  max-width: 100%;
  border-radius: 26px;
  position: relative;
  z-index: 2;
}

.half-hero1 .image-gallery::before,
.half-hero1 .image-gallery::after {
  content: "";
  position: absolute;
  border-radius: 22px;
  background-size: cover;
  background-position: center;
  border: 6px solid rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 40px rgba(20, 24, 31, 0.16);
  z-index: 1;
}

.half-hero1 .image-gallery::before {
  width: 92px;
  height: 122px;
  right: -6px;
  bottom: 26px;
  background-image: url("../img/carousled1.jpg");
}

.half-hero1 .image-gallery::after {
  width: 82px;
  height: 108px;
  left: -6px;
  top: 28px;
  background-image: url("../img/about1.jpg");
}

.hero-visual-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  min-height: 88px;
  padding: 10px;
  border-radius: 24px;
  background: linear-gradient(135deg, #ff9a1c 0%, #ff7b00 100%);
  color: #15110d;
  font-size: 26px;
  font-weight: 900;
  box-shadow: 0 18px 30px rgba(255, 123, 0, 0.28);
}

.hero-visual-note {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 3;
  max-width: 220px;
  padding: 14px 16px;
  border-radius: 22px;
  background: rgba(18, 24, 34, 0.9);
  border: 1px solid rgba(199, 154, 74, 0.24);
  box-shadow: 0 18px 40px rgba(18, 24, 34, 0.24);
}

.hero-visual-note strong,
.hero-visual-note span {
  display: block;
}

.hero-visual-note strong {
  margin-bottom: 6px;
  color: #fff4dd;
  font-size: 14px;
}

.hero-visual-note span {
  color: rgba(255, 244, 221, 0.74);
  font-size: 12px;
  line-height: 1.45;
}

.half-hero1 .content-box {
  order: 2;
  padding: 22px 18px 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 252, 247, 0.98) 100%);
  border: 1px solid rgba(20, 24, 31, 0.08);
  box-shadow: var(--shadow-strong);
}

.hero-kicker {
  margin-bottom: 14px;
  text-transform: uppercase;
}

.hero-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.half-hero1 .content-box .product-title {
  margin: 0 0 12px;
  font-size: 42px;
  line-height: 0.96;
  color: var(--ink);
}

.half-hero1 .content-box .product-body {
  margin-bottom: 16px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.hero-tags span,
.closing-points span,
.order-echo-points span {
  background: linear-gradient(180deg, #fff8ea 0%, #ffffff 100%);
  border: 1px solid rgba(199, 154, 74, 0.2);
  color: #5a4317;
}

.hero-highlights {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.hero-highlight {
  padding: 14px 16px;
  border-radius: 22px;
  background: rgba(31, 111, 96, 0.06);
  border: 1px solid rgba(31, 111, 96, 0.08);
}

.hero-highlight strong,
.hero-highlight span {
  display: block;
}

.hero-highlight strong {
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
}

.hero-highlight span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.product-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 20px;
}

.product-list li {
  position: relative;
  min-height: 48px;
  padding: 11px 12px 11px 46px;
  border-radius: 18px;
  background: rgba(31, 111, 96, 0.06);
  color: #26303d;
  font-size: 14px;
  line-height: 1.5;
}

.product-list li::before {
  content: "";
  position: absolute;
  top: 13px;
  left: 13px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  box-shadow: 0 8px 16px rgba(167, 120, 34, 0.25);
}

.order-wrapper {
  max-width: 100%;
  padding: 16px;
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark-soft) 100%);
  border: 1px solid rgba(199, 154, 74, 0.18);
  border-radius: 28px;
  box-shadow: 0 24px 45px rgba(16, 20, 27, 0.26);
}

.price-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 84px;
  gap: 10px;
  align-items: center;
  margin-bottom: 14px;
}

.price-flex {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 14px 16px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.04) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.old-price {
  font-size: 18px;
  line-height: 1.1;
  color: rgba(255, 246, 226, 0.48);
}

.new-price {
  font-size: 34px;
  line-height: 1;
  color: #fff1cf;
}

.discount {
  position: static;
  width: 84px;
  height: 84px;
  transform: none;
  background: linear-gradient(180deg, #f8d998 0%, #c68d2d 100%);
  border-radius: 50%;
  box-shadow: 0 14px 26px rgba(198, 141, 45, 0.34);
}

.discount .content {
  height: 84px;
}

.discount .content span,
.discount .content p {
  color: #1c1510;
}

.discount .content span {
  font-size: 22px;
  line-height: 1;
}

.discount .content p {
  margin-top: 2px;
  font-size: 11px;
  line-height: 1;
}

.offer-text {
  display: block;
  margin-bottom: 12px;
}

.offer-text p {
  margin: 0;
  padding: 11px 12px;
  border-radius: 16px;
  background: rgba(197, 91, 74, 0.14);
  color: #ffe7e0;
  font-size: 13px;
  line-height: 1.48;
}

.al-form {
  align-items: stretch;
}

form .input-wrapper {
  margin: 0 0 10px;
}

form input,
form select {
  height: 52px;
  padding-left: 16px;
  line-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  color: #222933;
  font-size: 15px;
}

form input:focus,
form select:focus {
  outline: none;
  border-color: rgba(199, 154, 74, 0.55);
  box-shadow: 0 0 0 3px rgba(199, 154, 74, 0.15);
}

.hero-form-note {
  margin-top: 10px;
  color: rgba(255, 244, 221, 0.72);
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.trust-item {
  padding: 12px 10px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item strong {
  margin-bottom: 4px;
  color: #fff1cf;
  font-size: 16px;
  line-height: 1;
}

.trust-item span {
  color: rgba(255, 244, 221, 0.62);
  font-size: 11px;
  line-height: 1.35;
}

.signal-band,
.cinema-showcase,
.about-section--halfs,
.benefits-section1,
.half-section--left-text,
.ingredients1-section,
.closing-highlight,
.raiting-section--carousel,
.order-echo-section {
  padding: 38px 0;
}

.signal-band .container {
  display: grid;
  gap: 12px;
}

.signal-card,
.half-sections li,
.benefits-list--two-rows li,
.raiting-section--carousel .rating-carousel .slide,
.half-section--left-text .content,
.order-echo-copy {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.signal-card {
  padding: 18px 16px;
  border-radius: 24px;
}

.signal-card strong,
.signal-card span {
  display: block;
}

.signal-card strong {
  margin-bottom: 6px;
  font-size: 22px;
  line-height: 1;
  color: var(--ink);
}

.signal-card span {
  font-size: 13px;
  line-height: 1.5;
}

.section-kicker {
  margin-bottom: 14px;
  text-transform: uppercase;
}

.showcase-copy {
  margin-bottom: 18px;
}

.showcase-stage {
  display: block;
  max-width: 940px;
  margin: 0 auto;
}

.slideshow-container {
  position: relative;
  width: 100%;
  max-width: 940px;
  margin: 0 auto;
  padding: 12px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(20, 24, 31, 0.06);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.mySlides {
  display: none;
  position: relative;
  min-height: clamp(280px, 44vw, 640px);
  border-radius: 22px;
  overflow: hidden;
  background: #ffffff;
}

.mySlides img {
  display: block;
  width: 100% !important;
  height: clamp(280px, 44vw, 640px);
  object-fit: contain;
  object-position: center;
  background: #ffffff;
  border-radius: 20px;
}

.showcase-thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.showcase-thumb {
  aspect-ratio: 1 / 1;
  padding: 8px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(20, 24, 31, 0.08);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.showcase-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

.prev,
.next {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  width: 42px;
  height: 42px;
  margin-top: 0;
  padding: 0;
  border-radius: 50%;
  background: rgba(17, 21, 29, 0.56);
  color: #fff;
  font-size: 20px;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  transform: translateY(-50%);
  z-index: 5;
}

.prev:hover,
.next:hover {
  background: rgba(17, 21, 29, 0.82);
}

.prev {
  left: 16px;
}

.next {
  right: 16px;
}

.dot {
  width: 10px;
  height: 10px;
  margin: 0 4px;
  background-color: rgba(20, 24, 31, 0.18);
}

.dot.active,
.dot:hover {
  background-color: var(--gold);
}

.showcase-dots {
  margin-top: 16px;
  text-align: center;
}

.numbertext {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(17, 21, 29, 0.78);
  color: #fff4dd;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.6px;
}

.about-section--halfs {
  position: relative;
}

.about-section--halfs::before {
  content: "";
  position: absolute;
  inset: 18px 0;
  background: rgba(255, 255, 255, 0.28);
  pointer-events: none;
}

.about-section--halfs .container,
.benefits-section1 .container,
.half-section--left-text .container,
.raiting-section--carousel .container,
.order-echo-section .container {
  position: relative;
  z-index: 1;
}

.main-title {
  margin: 0 0 24px;
  font-size: 34px;
  line-height: 0.98;
  letter-spacing: 0;
}

.main-title::after {
  content: "";
  display: block;
  width: 82px;
  height: 3px;
  margin-top: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold) 0%, rgba(199, 154, 74, 0.1) 100%);
}

.main-title.center::after {
  margin-left: auto;
  margin-right: auto;
}

.main-title.white {
  color: #fff4dd;
}

.half-sections {
  margin: 0;
}

.half-sections li {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 18px;
  padding: 16px;
  border-radius: 28px;
}

.half-sections li:nth-child(1) {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.97) 0%, rgba(247, 251, 250, 0.94) 100%);
}

.half-sections li:nth-child(2) {
  background: linear-gradient(135deg, rgba(255, 253, 248, 0.97) 0%, rgba(255, 248, 235, 0.94) 100%);
}

.half-sections li .thumb,
.half-sections li .content {
  padding: 0;
}

.half-sections li .thumb img,
.half-section--left-text .thumb img {
  border-radius: 22px;
}

.benefits-list--two-rows {
  gap: 14px;
}

.benefits-list--two-rows li {
  width: 100%;
  margin: 0 0 14px;
  padding: 16px 14px;
  border-radius: 24px;
  align-items: flex-start;
}

.benefits-list--two-rows li img {
  width: 52px;
  height: 52px;
  margin-bottom: 14px;
  padding: 10px;
  border-radius: 16px;
  background: rgba(199, 154, 74, 0.12);
}

.benefits-list--two-rows li h4 {
  margin: 0 0 8px;
  color: var(--ink);
  text-align: left;
  font-size: 17px;
  line-height: 1.35;
}

.benefits-list--two-rows li p {
  margin: 0;
  text-align: left;
  font-size: 14px;
}

.half-section--left-text .half-between {
  display: grid;
  gap: 18px;
  margin: 0;
}

.half-section--left-text .content {
  padding: 18px 16px;
  border-radius: 28px;
}

.ingredients1-section {
  position: relative;
  background: linear-gradient(135deg, #11161d 0%, #202734 100%);
}

.ingredients1-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(199, 154, 74, 0.18), transparent 35%);
  pointer-events: none;
}

.ingredients1-section .half-between {
  position: relative;
  display: block;
}

.ingredients1-section .ingredients-box {
  padding: 22px 18px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.ingredients1-section .ingredients-box h4 {
  margin: 0 0 14px;
  color: #fff4dd;
  font-size: 28px;
}

.ingredients1-section .ingredients-box ul li {
  position: relative;
  padding: 10px 0 10px 18px;
  color: rgba(255, 247, 228, 0.82);
  line-height: 1.55;
}

.ingredients1-section .ingredients-box ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.closing-highlight .container {
  display: grid;
  gap: 18px;
  padding: 22px 18px;
  border-radius: 32px;
  background: linear-gradient(135deg, #131820 0%, #1f2632 100%);
  border: 1px solid rgba(199, 154, 74, 0.16);
  box-shadow: var(--shadow-strong);
}

.closing-highlight .section-kicker {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.08);
  color: rgba(255, 247, 228, 0.8);
}

.closing-highlight p {
  margin-bottom: 0;
  color: rgba(255, 247, 228, 0.72);
}

.closing-actions {
  display: grid;
  gap: 16px;
}

.closing-points,
.order-echo-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.raiting-section--carousel .rating-carousel {
  margin-bottom: 16px;
}

.raiting-section--carousel .rating-carousel .slide {
  min-height: 100%;
  margin: 0;
  padding: 18px 16px;
  border-radius: 24px;
}

.raiting-section--carousel .rating-carousel .slide .avatar {
  width: 54px;
  min-width: 54px;
  max-width: 54px;
  border-radius: 50%;
  border: 3px solid rgba(199, 154, 74, 0.18);
}

.raiting-section--carousel .rating-info {
  display: inline-flex;
  align-items: center;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(20, 24, 31, 0.08);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}

.raiting-section--carousel .rating-info p {
  margin: 0 0 0 10px;
  font-weight: 700;
  color: #26303d;
}

.order-echo-section .container {
  display: grid;
  gap: 18px;
  align-items: start;
}

.order-echo-copy {
  padding: 20px 18px;
  border-radius: 30px;
}

.order-wrapper-bottom {
  border-radius: 30px;
}

footer {
  padding: 28px 0 36px;
  background: linear-gradient(180deg, #11161d 0%, #191f28 100%);
}

.footer-shell {
  display: grid;
  gap: 12px;
  justify-items: start;
}

.footer-brand strong,
.footer-brand span {
  display: block;
}

.footer-brand strong {
  margin-bottom: 4px;
  color: #fff4dd;
  font-size: 20px;
}

.footer-brand span,
.footer-note,
footer a {
  color: rgba(255, 244, 221, 0.72);
}

.footer-note {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 0;
}

footer a {
  font-size: 14px;
  text-decoration: none;
}

footer a:hover {
  color: #fff4dd;
}

@media (max-width: 959px) {
  .scroll-header {
    display: none !important;
  }
}

@media (max-width: 639px) {
  .hero-visual-badge {
    top: 12px;
    left: 12px;
    min-width: 76px;
    min-height: 76px;
    font-size: 22px;
    border-radius: 20px;
  }

  .half-hero1 .image-gallery::before {
    width: 72px;
    height: 96px;
    right: 12px;
    bottom: 18px;
  }

  .half-hero1 .image-gallery::after {
    width: 64px;
    height: 84px;
    left: 12px;
    top: 18px;
  }

  .hero-visual-note {
    right: 12px;
    bottom: 12px;
    max-width: 170px;
  }

  .slideshow-container {
    padding: 8px;
  }

  .mySlides {
    min-height: 250px;
  }

  .mySlides img {
    height: 250px;
  }

  .prev,
  .next {
    width: 44px;
    height: 44px;
    font-size: 22px;
    line-height: 44px;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .showcase-thumbs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 640px) {
  .hero-highlights,
  .signal-band .container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .benefits-list--two-rows {
    display: flex;
    flex-wrap: wrap;
  }

  .benefits-list--two-rows li {
    width: calc(50% - 7px);
    margin-bottom: 14px;
  }
}

@media (min-width: 768px) {
  .container {
    width: min(calc(100% - 48px), var(--container));
  }

  .site-header .container {
    grid-template-columns: minmax(280px, 1fr) minmax(0, 1.1fr) auto;
    align-items: center;
  }

  .cinema-showcase .container {
    width: min(calc(100% - 48px), 1040px);
  }

  .half-sections li {
    flex-direction: row;
    align-items: center;
    padding: 22px;
  }

  .half-sections li .thumb,
  .half-sections li .content {
    flex: 1;
  }

  .half-section--left-text .half-between {
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    align-items: center;
  }

  .ingredients1-section .half-between {
    display: flex;
    align-items: stretch;
  }

  .closing-highlight .container,
  .order-echo-section .container {
    grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.9fr);
    align-items: center;
  }
}

@media (min-width: 960px) {
  .half-hero1 {
    padding-top: 26px;
  }

  .half-hero1 .container {
    grid-template-columns: minmax(380px, 0.92fr) minmax(0, 1fr);
    align-items: center;
    gap: 32px;
  }

  .half-hero1 .image-gallery {
    padding: 22px;
  }

  .half-hero1 .image-gallery::before {
    width: 150px;
    height: 194px;
    right: -18px;
    bottom: 38px;
  }

  .half-hero1 .image-gallery::after {
    width: 128px;
    height: 164px;
    left: -20px;
    top: 38px;
  }

  .half-hero1 .content-box {
    padding: 30px;
  }

  .half-hero1 .content-box .product-title {
    font-size: 58px;
  }

  .product-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .signal-band .container {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .benefits-list--two-rows li {
    width: calc(25% - 11px);
  }

  .main-title {
    font-size: 46px;
  }

  .signal-band,
  .cinema-showcase,
  .about-section--halfs,
  .benefits-section1,
  .half-section--left-text,
  .ingredients1-section,
  .closing-highlight,
  .raiting-section--carousel,
  .order-echo-section {
    padding: 70px 0;
  }
}


