:root {
  --red: #e30613;
  --red-dark: #b9000b;
  --ink: #111315;
  --graphite: #1c1f23;
  --muted: #656a70;
  --line: #dfe2e5;
  --surface: #f3f4f5;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(13, 16, 19, 0.12);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: #e8eaec;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

.main_wrapper {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  background: var(--white);
  box-shadow: 0 0 80px rgba(11, 14, 17, 0.12);
  overflow: hidden;
}

.section_shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.top_promo_bar {
  display: flex;
  justify-content: center;
  gap: 42px;
  padding: 11px 24px;
  color: var(--white);
  background: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero_section {
  position: relative;
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(255,255,255,0.025) 0 14%, transparent 14% 100%),
    var(--ink);
  overflow: hidden;
}

.hero_section::before {
  content: "";
  position: absolute;
  right: -180px;
  bottom: -280px;
  width: 780px;
  height: 780px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
}

.hero_section::after {
  content: "MOVE";
  position: absolute;
  left: -34px;
  bottom: -38px;
  color: rgba(255,255,255,0.035);
  font-size: clamp(120px, 18vw, 260px);
  font-weight: 900;
  font-style: italic;
  line-height: 1;
  letter-spacing: -0.08em;
  pointer-events: none;
}

.hero_content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.78fr);
  align-items: center;
  gap: clamp(44px, 7vw, 96px);
  min-height: 720px;
  padding-top: 64px;
  padding-bottom: 72px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero_copy h1 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(42px, 5.3vw, 74px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.hero_copy h1 span {
  color: var(--red);
}

.hero_subtitle {
  max-width: 610px;
  margin: 25px 0 0;
  color: #c7cacf;
  font-size: clamp(14px, 1.3vw, 18px);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.hero_mobile_visual {
  display: none;
}

.product_chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 30px 0 0;
}

.product_chips span {
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  color: #e3e5e8;
  font-size: 12px;
  font-weight: 700;
}

.hero_price_box {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  margin: 30px 0 18px;
}

.price_tag {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 76px;
  padding: 12px 20px;
  border-radius: 16px;
}

.price_tag .label {
  margin-bottom: 2px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price_tag .val {
  white-space: nowrap;
  font-size: 26px;
  font-weight: 900;
  line-height: 1.1;
}

.old_price {
  min-height: 68px;
  color: #9b9fa5;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.11);
}

.old_price .val {
  font-size: 19px;
  text-decoration: line-through;
}

.new_price {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 12px 32px rgba(227, 6, 19, 0.3);
}

.promo_date_banner {
  margin: 0 0 18px;
  color: #aeb2b7;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.hero_btn,
.order_button,
.submit_button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 16px 28px;
  border: 0;
  border-radius: 12px;
  color: var(--white);
  background: var(--red);
  box-shadow: 0 14px 34px rgba(227, 6, 19, 0.27);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.hero_btn:hover,
.order_button:hover,
.submit_button:hover {
  background: var(--red-dark);
  box-shadow: 0 10px 24px rgba(227, 6, 19, 0.34);
  transform: translateY(-2px);
}

.hero_btn:active,
.order_button:active,
.submit_button:active {
  transform: translateY(1px);
}

.hero_btn:focus-visible,
.order_button:focus-visible,
.submit_button:focus-visible,
input:focus-visible,
select:focus-visible,
a:focus-visible {
  outline: 3px solid #ff6b74;
  outline-offset: 3px;
}

.hero_trust {
  display: flex;
  gap: 22px;
  margin-top: 20px;
  color: #b9bdc2;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero_trust span::before {
  content: "✓";
  margin-right: 7px;
  color: var(--red);
  font-weight: 900;
}

.hero_visual {
  position: relative;
}

.hero_photo_frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  padding: 10px;
  background: var(--white);
  box-shadow: 0 30px 80px rgba(0,0,0,0.38);
  transform: rotate(1.5deg);
}

.hero_photo_frame::before {
  content: "";
  position: absolute;
  inset: 22px -18px -18px 22px;
  z-index: -1;
  border: 2px solid var(--red);
}

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

.discount_badge {
  position: absolute;
  top: 20px;
  right: 20px;
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  border: 5px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  background: var(--red);
  box-shadow: 0 12px 30px rgba(0,0,0,0.23);
  font-size: 19px;
  font-weight: 900;
}

.color_note {
  position: absolute;
  left: -56px;
  bottom: 22px;
  display: grid;
  grid-template-columns: 22px 22px 1fr;
  align-items: center;
  gap: 8px;
  width: 272px;
  padding: 16px;
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow);
}

.color_note p {
  margin: 0 0 0 4px;
  font-size: 11px;
  line-height: 1.45;
}

.color_dot {
  width: 22px;
  height: 22px;
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 1px #c6c8cb;
}

.color_dot_red { background: var(--red); }
.color_dot_black { background: #161719; }

.description_section,
.cat,
.order_process {
  padding: 100px 0;
  background: var(--white);
}

.section_heading {
  max-width: 780px;
  margin-bottom: 48px;
}

.section_heading h2 {
  margin: 0;
  font-size: clamp(34px, 4.4vw, 58px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.section_intro {
  max-width: 650px;
  margin: 17px 0 0;
  color: var(--muted);
}

.description_layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(40px, 7vw, 88px);
  align-items: start;
}

.description_photo {
  position: sticky;
  top: 24px;
}

.description_photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.photo_caption {
  width: calc(100% - 34px);
  margin: -28px auto 0;
  padding: 17px 20px;
  color: var(--white);
  background: var(--ink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.description_copy p {
  margin: 0 0 20px;
  color: #4c5156;
  font-size: 15px;
  line-height: 1.75;
}

.description_copy p:first-child {
  color: var(--ink);
  font-size: 19px;
  line-height: 1.6;
}

.feature_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 72px;
  background: var(--line);
  border: 1px solid var(--line);
}

.feature_card {
  position: relative;
  min-height: 190px;
  padding: 30px;
  background: var(--white);
}

.feature_card > span {
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
}

.feature_card h3 {
  margin: 36px 0 8px;
  font-size: 16px;
  font-weight: 900;
}

.feature_card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.size_section {
  position: relative;
  padding: 100px 0;
  color: var(--white);
  background: var(--graphite);
}

.size_section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 28%;
  height: 8px;
  background: var(--red);
}

.section_heading_light h2 { color: var(--white); }
.section_heading_light .section_intro { color: #b7bbc0; }

.size_table_card {
  padding: 10px;
  background: #262a2f;
  border: 1px solid #3b4046;
  border-radius: 18px;
}

.table_scroll {
  overflow-x: auto;
  border-radius: 11px;
  scrollbar-color: var(--red) #31363c;
}

.size_table {
  width: 100%;
  min-width: 930px;
  border-collapse: collapse;
  color: var(--white);
  background: #212429;
  font-size: 12px;
}

.size_table caption {
  padding: 18px;
  color: #c5c8cc;
  background: #212429;
  font-size: 12px;
  font-weight: 700;
  text-align: left;
  text-transform: uppercase;
}

.size_table th,
.size_table td {
  padding: 14px 9px;
  border: 1px solid #3a3f45;
  text-align: center;
  vertical-align: middle;
}

.size_table thead tr:first-child th {
  color: var(--white);
  background: var(--red);
  font-weight: 900;
  text-transform: uppercase;
}

.size_table thead tr:nth-child(2) th {
  color: #e2e4e6;
  background: #2f343a;
  font-weight: 700;
}

.size_table tbody tr:nth-child(even) {
  background: #282c31;
}

.size_table tbody th {
  color: var(--white);
  background: #16181b;
  font-size: 15px;
  font-weight: 900;
}

.table_note {
  margin: 13px 8px 4px;
  color: #aeb2b7;
  font-size: 11px;
}

.cat {
  background: var(--surface);
}

.product_list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.product_card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid #e3e5e7;
  border-radius: var(--radius);
  box-shadow: 0 18px 45px rgba(12, 15, 18, 0.07);
  transition: transform .25s ease, box-shadow .25s ease;
}

.product_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 60px rgba(12, 15, 18, 0.13);
}

.gallery_wrapper {
  position: relative;
  background: #ddd;
}

.gallery_wrapper .bx-wrapper {
  margin: 0;
  border: 0;
  box-shadow: none;
  background: transparent;
}

.gallery_wrapper .bx-viewport {
  border: 0;
}

.product_gallery li {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

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

.gallery_wrapper .bx-wrapper .bx-pager {
  bottom: 18px;
  z-index: 6;
}

.gallery_wrapper .bx-wrapper .bx-pager.bx-default-pager a {
  width: 9px;
  height: 9px;
  margin: 0 4px;
  background: rgba(255,255,255,0.72);
  box-shadow: 0 2px 7px rgba(0,0,0,0.2);
}

.gallery_wrapper .bx-wrapper .bx-pager.bx-default-pager a:hover,
.gallery_wrapper .bx-wrapper .bx-pager.bx-default-pager a.active,
.gallery_wrapper .bx-wrapper .bx-pager.bx-default-pager a:focus {
  background: var(--red);
}

.gallery_wrapper .bx-wrapper .bx-controls-direction a {
  z-index: 7;
}

.card_color_marker {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 8;
  padding: 8px 12px;
  border-radius: 8px;
  color: var(--white);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.11em;
}

.marker_red { background: var(--red); }
.marker_black { background: var(--ink); }

.product_card_info {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 25px 18px;
}

.product_kicker {
  margin: 0 0 4px;
  color: var(--red);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .16em;
}

.product_card_info h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 900;
}

.product_sizes {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.card_price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  white-space: nowrap;
}

.card_price span {
  color: #92969b;
  font-size: 12px;
  text-decoration: line-through;
}

.card_price strong {
  color: var(--red);
  font-size: 22px;
  font-weight: 900;
}

.order_button {
  width: calc(100% - 50px);
  margin: 0 25px 25px;
}

.order_process {
  padding-bottom: 72px;
}

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

.step_wrapper {
  position: relative;
  min-height: 245px;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}

.step_wrapper img {
  width: 58px;
  height: 44px;
  object-fit: contain;
  object-position: left center;
  filter: grayscale(1) contrast(1.4);
}

.step_wrapper > span {
  position: absolute;
  top: 25px;
  right: 25px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
}

.step_wrapper h3 {
  margin: 50px 0 8px;
  font-size: 16px;
  font-weight: 900;
}

.step_wrapper p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.delivery-block-v3 {
  padding: 0 0 100px;
  background: var(--white);
}

.delivery-cont {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 20px;
  list-style: none;
}

.delivery-cont li {
  display: flex;
  gap: 18px;
  min-height: 180px;
  padding: 32px;
  color: var(--white);
  background: var(--graphite);
}

.delivery-cont li:nth-child(2) {
  background: #292d32;
}

.delivery-cont li > span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
}

.delivery-cont h3 {
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 900;
}

.delivery-cont p {
  margin: 0;
  color: #bfc3c8;
  font-size: 12px;
}

.footer_order_section {
  position: relative;
  padding: 100px 0 28px;
  color: var(--white);
  background: var(--ink);
}

.footer_order_section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 32%;
  height: 8px;
  background: var(--red);
}

.footer_content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .78fr);
  gap: clamp(48px, 8vw, 100px);
  align-items: center;
}

.footer_title {
  max-width: 650px;
  margin: 0;
  font-size: clamp(38px, 5vw, 66px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.05em;
}

.footer_subtitle {
  margin: 14px 0 28px;
  color: #afb3b8;
  font-weight: 600;
}

.footer_product {
  position: relative;
  max-width: 560px;
  height: 300px;
  overflow: hidden;
  border-radius: 18px;
}

.footer_product img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.footer_price_box {
  margin-bottom: 12px;
}

.form_card {
  padding: 34px;
  color: var(--ink);
  background: var(--white);
  border-radius: 22px;
  box-shadow: 0 30px 70px rgba(0,0,0,.28);
}

.form_header {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.form_header > span {
  color: var(--red);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .15em;
}

.form_header h3 {
  margin: 8px 0 5px;
  font-size: 26px;
  font-weight: 900;
}

.form_header p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.premium_form {
  margin-top: 24px;
}

.input_group,
.select_group {
  margin-bottom: 15px;
}

.input_group label,
.select_group label {
  display: block;
  margin: 0 0 7px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.premium_input {
  width: 100%;
  height: 56px;
  padding: 0 16px;
  color: var(--ink);
  background: #f4f5f6;
  border: 1px solid #dfe2e5;
  border-radius: 11px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.premium_input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(227,6,19,.09);
}

.premium_select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%), linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position: calc(100% - 19px) 24px, calc(100% - 14px) 24px;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
}

.submit_button {
  width: 100%;
  margin-top: 6px;
}

.form_note {
  margin: 13px 0 0;
  color: #8a8e93;
  font-size: 9px;
  text-align: center;
}

.site_footer {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  margin-top: 80px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: #8f9398;
  font-size: 11px;
}

.site_footer p { margin: 0; }

.site_footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 22px;
}

.site_footer a {
  color: #b6bac0;
  text-decoration: none;
}

.site_footer a:hover {
  color: var(--white);
  text-decoration: underline;
}

@media (max-width: 980px) {
  .hero_content {
    grid-template-columns: 1fr 380px;
    gap: 38px;
  }

  .hero_copy h1 {
    font-size: clamp(40px, 6vw, 58px);
  }

  .feature_grid,
  .delivery-cont {
    grid-template-columns: repeat(2, 1fr);
  }

  .order_steps1 {
    grid-template-columns: repeat(2, 1fr);
  }

  .delivery-cont li:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .section_shell {
    width: min(100% - 32px, 620px);
  }

  .top_promo_bar {
    justify-content: space-between;
    gap: 12px;
    padding-inline: 16px;
    font-size: 9px;
  }

  .hero_content {
    display: block;
    min-height: auto;
    padding-top: 45px;
    padding-bottom: 60px;
  }

  .hero_copy h1 {
    font-size: clamp(39px, 11.3vw, 58px);
  }

  .hero_subtitle {
    margin-top: 18px;
  }

  .hero_visual {
    display: none;
  }

  .hero_mobile_visual {
    position: relative;
    display: block;
    margin: 28px 0 0;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border: 7px solid var(--white);
  }

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

  .hero_price_box {
    align-items: stretch;
  }

  .price_tag {
    flex: 1;
    min-width: 0;
    padding-inline: 14px;
  }

  .price_tag .val {
    font-size: 23px;
  }

  .old_price .val {
    font-size: 16px;
  }

  .hero_btn {
    width: 100%;
  }

  .description_section,
  .cat,
  .order_process,
  .size_section,
  .footer_order_section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .section_heading {
    margin-bottom: 32px;
  }

  .section_heading h2 {
    font-size: clamp(34px, 9vw, 48px);
  }

  .description_layout,
  .footer_content {
    grid-template-columns: 1fr;
  }

  .description_photo {
    position: relative;
    top: auto;
    max-height: 560px;
    overflow: hidden;
  }

  .description_copy p:first-child {
    font-size: 17px;
  }

  .feature_grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 50px;
  }

  .feature_card {
    min-height: 170px;
    padding: 24px;
  }

  .feature_card h3 {
    margin-top: 28px;
  }

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

  .footer_product {
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .form_card {
    max-width: 560px;
  }

  .site_footer {
    flex-direction: column;
    margin-top: 55px;
  }

  .site_footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  body {
    font-size: 15px;
  }

  .section_shell {
    width: min(100% - 28px, 480px);
  }

  .top_promo_bar span {
    display: none;
  }

  .top_promo_bar {
    justify-content: center;
    min-height: 34px;
  }

  .hero_content {
    padding-top: 35px;
  }

  .hero_copy h1 {
    font-size: clamp(36px, 11vw, 49px);
  }

  .hero_subtitle {
    font-size: 13px;
  }

  .product_chips span {
    font-size: 10px;
  }

  .discount_badge {
    width: 66px;
    height: 66px;
    font-size: 17px;
  }

  .hero_trust {
    justify-content: space-between;
    gap: 8px;
    font-size: 9px;
  }

  .feature_grid,
  .order_steps1,
  .delivery-cont {
    grid-template-columns: 1fr;
  }

  .feature_card {
    min-height: 150px;
  }

  .delivery-cont li:last-child {
    grid-column: auto;
  }

  .delivery-cont li {
    min-height: 150px;
    padding: 26px;
  }

  .product_card_info {
    padding: 20px 18px 15px;
  }

  .product_card_info h3 {
    font-size: 18px;
  }

  .product_sizes {
    font-size: 9px;
  }

  .card_price strong {
    font-size: 19px;
  }

  .order_button {
    width: calc(100% - 36px);
    margin: 0 18px 20px;
  }

  .footer_title {
    font-size: clamp(36px, 10vw, 48px);
  }

  .form_card {
    padding: 25px 18px;
  }

  .site_footer nav {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 380px) {
  .section_shell {
    width: calc(100% - 24px);
  }

  .hero_copy h1 {
    font-size: 35px;
  }

  .price_tag .val {
    font-size: 21px;
  }

  .old_price .val {
    font-size: 15px;
  }

  .product_card_info {
    gap: 8px;
  }

  .card_price strong {
    font-size: 17px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

/* ============================================================= */
/* МАРКЕТИНГОВІ БЛОКИ (попит / відгуки / FOMO)                    */
/* ============================================================= */

/* ---- Блок високого попиту (для темних секцій) ---- */
.demand_struct {
  background: linear-gradient(90deg, rgba(227,6,19,0.18), rgba(227,6,19,0.04));
  border: 1px solid rgba(227,6,19,0.55);
  border-radius: 16px;
  padding: 14px 16px;
  margin: 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ds_row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ds_icon {
  width: 30px;
  text-align: center;
  flex-shrink: 0;
}

.fire_emoji {
  font-size: 24px;
  display: inline-block;
  animation: firePulse 1.5s infinite ease-in-out;
  filter: drop-shadow(0 0 8px rgba(227,6,19,0.8));
}

@keyframes firePulse {
  0%   { transform: scale(1);    filter: drop-shadow(0 0 6px rgba(227,6,19,0.6)); }
  50%  { transform: scale(1.18); filter: drop-shadow(0 0 16px rgba(227,6,19,1)); }
  100% { transform: scale(1);    filter: drop-shadow(0 0 6px rgba(227,6,19,0.6)); }
}

.ds_text_col { flex: 1; }

.ds_title {
  color: #ff5a63;
  font-weight: 900;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 3px;
}

.ds_desc {
  font-size: 12px;
  color: #c7cacf;
  line-height: 1.4;
}

.ds_highlight {
  color: var(--white);
  font-weight: 900;
  background: var(--red);
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 13px;
  white-space: nowrap;
}

.ds_track {
  width: 100%;
  height: 8px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  overflow: hidden;
}

.ds_fill {
  height: 100%;
  background: linear-gradient(90deg, var(--red), #ff8a1e);
  border-radius: 10px;
  transition: width 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 0 12px rgba(227,6,19,0.5);
}

/* ---- Секція відгуків ---- */
.reviews_section {
  padding: 100px 0;
  background: var(--surface);
}

.reviews_inner {
  max-width: 760px;
  margin: 0 auto;
}

/* Блок довіри Google Shopping */
.trust_dashboard {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 18px;
  box-shadow: 0 18px 45px rgba(12, 15, 18, 0.07);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.td_top_row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.google_brand {
  display: flex;
  align-items: center;
  gap: 11px;
}

.g_logo_svg {
  width: 38px;
  height: 38px;
  min-width: 38px;
}

.g_info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.g_name {
  font-weight: 800;
  font-size: 15px;
  color: var(--ink);
  line-height: 1;
}

.g_status {
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 4px;
}

.g_check {
  color: #1f9d55;
  font-weight: 900;
}

.td_rating_box { text-align: right; }

.td_score {
  font-size: 30px;
  font-weight: 900;
  color: var(--ink);
  line-height: 1;
}

.td_max {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
  display: block;
  margin-top: 2px;
}

.td_bottom_row {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.td_bar_bg {
  width: 100%;
  height: 6px;
  background: var(--line);
  border-radius: 10px;
  overflow: hidden;
}

.td_bar_fill {
  height: 100%;
  width: 94%;
  background: #1f9d55;
  border-radius: 10px;
}

.td_stats {
  font-size: 11px;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  font-weight: 600;
}

.td_green {
  color: #1f9d55;
  font-weight: 800;
}

/* Кнопка написати відгук */
.write_review_btn {
  border: 1px solid var(--red);
  background: rgba(227,6,19,0.06);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  padding: 15px;
  border-radius: 14px;
  margin-bottom: 18px;
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background .2s ease, box-shadow .2s ease, transform .2s ease;
}

.write_review_btn:hover {
  background: rgba(227,6,19,0.12);
  box-shadow: 0 10px 24px rgba(227,6,19,0.12);
  transform: translateY(-1px);
}

.write_review_btn:active {
  background: var(--red);
  color: var(--white);
  transform: scale(0.99);
}

/* Форма відгуку */
#review_form_wrap {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
  background: var(--white);
  border-radius: 18px;
}

#review_form_wrap.open {
  max-height: 700px;
  border: 1px solid var(--line);
  padding: 22px;
  margin-bottom: 20px;
  box-shadow: 0 18px 45px rgba(12, 15, 18, 0.07);
}

.rf_title {
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 14px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.star_select {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 16px;
}

.star_s {
  font-size: 32px;
  color: #d3d6da;
  cursor: pointer;
  transition: color 0.15s, transform 0.15s;
  user-select: none;
  line-height: 1;
}

.star_s.selected {
  color: #f5a623;
  transform: scale(1.12);
}

.rf_input {
  width: 100%;
  background: #f4f5f6;
  border: 1px solid #dfe2e5;
  padding: 13px 14px;
  border-radius: 11px;
  color: var(--ink);
  font-size: 14px;
  margin-bottom: 10px;
  font-family: inherit;
  display: block;
  resize: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.rf_input::placeholder { color: #9a9ea3; }

.rf_input:focus {
  border-color: var(--red);
  outline: none;
  box-shadow: 0 0 0 4px rgba(227,6,19,0.09);
}

.rf_submit {
  background: var(--red);
  color: var(--white);
  font-weight: 800;
  border: none;
  width: 100%;
  padding: 15px;
  border-radius: 11px;
  font-size: 14px;
  font-family: inherit;
  box-shadow: 0 12px 30px rgba(227,6,19,0.28);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: background 0.2s, transform 0.1s;
}

.rf_submit:hover { background: var(--red-dark); }
.rf_submit:active { transform: scale(0.98); }

/* Список відгуків */
.reviews_feed {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.adv_review_card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  animation: slideInTop 0.55s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes slideInTop {
  from { opacity: 0; transform: translateY(-22px); }
  to   { opacity: 1; transform: translateY(0); }
}

.new_review_highlight {
  animation: slideInTop 0.55s cubic-bezier(0.175, 0.885, 0.32, 1.275),
             flashRed 2.5s ease-out 0.2s forwards;
}

@keyframes flashRed {
  0%   { border-color: var(--red); box-shadow: 0 0 25px rgba(227,6,19,0.25); }
  100% { border-color: var(--line); box-shadow: none; }
}

.ar_header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 11px;
}

.ar_avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--white);
  font-weight: 900;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ar_info {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.ar_name {
  font-size: 14px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 3px;
  line-height: 1.2;
}

.ar_stars {
  color: #f5a623;
  font-size: 13px;
  letter-spacing: 1px;
  line-height: 1;
}

.ar_verified {
  margin-left: auto;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #1f9d55;
  display: flex;
  align-items: center;
  gap: 3px;
  background: rgba(31,157,85,0.1);
  padding: 4px 8px;
  border-radius: 6px;
  border: 1px solid rgba(31,157,85,0.22);
  white-space: nowrap;
  flex-shrink: 0;
}

.ar_verified.user_badge {
  color: var(--red);
  background: rgba(227,6,19,0.1);
  border-color: rgba(227,6,19,0.3);
}

.ar_text {
  font-size: 13px;
  line-height: 1.6;
  color: #4c5156;
  margin: 0;
}

.ar_footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.ar_date {
  font-size: 10px;
  color: #9a9ea3;
  font-weight: 600;
}

.ar_actions {
  display: flex;
  gap: 14px;
  align-items: center;
}

.reaction_btn {
  background: transparent;
  border: none;
  color: #9a9ea3;
  cursor: pointer;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.2s, transform 0.15s;
  font-family: inherit;
  font-weight: 700;
  padding: 3px 0;
}

.reaction_btn:hover { color: var(--ink); }
.reaction_btn:active { transform: scale(0.9); }
.reaction_btn.active_like { color: var(--red); }
.reaction_btn.active_dislike { color: var(--muted); }

/* ---- FOMO-повідомлення про покупку ---- */
.fomo_toast {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(-160%);
  background: linear-gradient(135deg, rgba(28,31,35,0.97), rgba(13,16,19,0.98));
  backdrop-filter: blur(20px) saturate(120%);
  -webkit-backdrop-filter: blur(20px) saturate(120%);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5), inset 0 1px 1px rgba(255,255,255,0.1);
  border-radius: 50px;
  padding: 7px 18px 7px 7px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10000;
  max-width: 94%;
  min-width: 280px;
  transition: transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.45s ease;
  opacity: 0;
  pointer-events: none;
}

.fomo_toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.fomo_icon {
  width: 40px;
  height: 40px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(227,6,19,0.5);
}

.fomo_info {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.fomo_title {
  font-size: 13px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 2px;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fomo_desc {
  font-size: 11px;
  font-weight: 600;
  color: #c7cacf;
  line-height: 1.2;
}

.fomo_time {
  font-size: 10px;
  color: #ff5a63;
  font-weight: 800;
  white-space: nowrap;
  flex-shrink: 0;
}

@media (max-width: 760px) {
  .reviews_section {
    padding-top: 72px;
    padding-bottom: 72px;
  }
}

@media (max-width: 520px) {
  .fomo_toast { min-width: 250px; max-width: 96%; }
  .td_score { font-size: 26px; }
  .g_name { font-size: 14px; }
}

/* ============================================================= */
/* МОБІЛЬНІ ДООПРАЦЮВАННЯ                                          */
/* ============================================================= */
@media (max-width: 760px) {
  /* 1. Термін дії акції — червоним і по центру */
  .promo_date_banner {
    color: var(--red);
    font-weight: 800;
    text-align: center;
  }

  /* 2. Блоки опису товару: номер і назва в один рядок */
  .feature_card {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    column-gap: 8px;
    min-height: 0;
  }

  .feature_card > span { order: 1; }

  .feature_card h3 {
    order: 2;
    margin: 0;
  }

  .feature_card p {
    order: 3;
    flex-basis: 100%;
    margin-top: 8px;
  }

  /* 3. Кроки замовлення: емблема + назва + номер в один рядок */
  .step_wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    column-gap: 10px;
    min-height: 0;
  }

  .step_wrapper img {
    order: 1;
    margin: 0;
    flex-shrink: 0;
  }

  .step_wrapper h3 {
    order: 2;
    margin: 0;
  }

  .step_wrapper > span {
    position: static;
    order: 3;
    top: auto;
    right: auto;
  }

  .step_wrapper p {
    order: 4;
    flex-basis: 100%;
    margin-top: 8px;
  }

  /* 4. Фото в блоці оформлення = розмір самого фото */
  .footer_product {
    height: auto;
    aspect-ratio: auto;
    max-width: 100%;
  }

  .footer_product img {
    height: auto;
    object-fit: contain;
  }

  /* 5. Менша відстань між секціями (вдвічі) */
  .description_section,
  .cat,
  .order_process,
  .size_section,
  .footer_order_section,
  .reviews_section {
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .delivery-block-v3 { padding-bottom: 36px; }

  /* 6. Підвал (копірайт і посилання) — по центру */
  .site_footer {
    align-items: center;
    text-align: center;
  }

  .site_footer nav {
    justify-content: center;
  }
}

@media (max-width: 520px) {
  .site_footer nav {
    align-items: center;
  }
}
