:root {
  --bg: #f6f7fb;
  --surface: #ffffff;
  --surface-alt: #eef2f7;
  --text: #111827;
  --muted: #5b6472;
  --line: #d9e1ea;
  --accent: #ff6b2c;
  --accent-dark: #e4561b;
  --accent-soft: #fff1ea;
  --dark: #0f172a;
  --radius: 20px;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.section {
  padding: 72px 0;
}

.section--alt {
  background: var(--surface-alt);
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p,
ul {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.15;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 20px;
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  margin-bottom: 18px;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.section-head {
  margin-bottom: 36px;
}

.section-head--center {
  text-align: center;
}

.section-lead {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(217, 225, 234, 0.9);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-logo {
  width: 120px;
  object-fit: contain;
}

.brand-text {
  font-weight: 700;
  font-size: 0.95rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav a {
  font-weight: 600;
  color: var(--muted);
}

.site-nav a:hover {
  color: var(--text);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--dark);
  border-radius: 999px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 14px 26px rgba(255, 107, 44, 0.25);
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn--sm {
  min-height: 46px;
  padding: 0 18px;
}

.btn--light {
  background: #fff;
  color: var(--dark);
  box-shadow: none;
}

.hero-grid,
.split-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: center;
}

.hero-content,
.media-card,
.hero-media,
.feature-row,
.feature-card,
.review-card,
.faq-item {
  overflow: hidden;
}

.hero-media img,
.media-card img,
.feature-row img,
.feature-card img,
.review-avatar {
  width: 100%;
}

.hero-media,
.media-card {
  padding: 0;
}

.hero-media img,
.media-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.benefits-list,
.trust-list,
.footer-nav {
  padding: 0;
  list-style: none;
}

.benefits-list {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

.benefits-list li,
.trust-list li {
  position: relative;
  padding-left: 26px;
}

.benefits-list li::before,
.trust-list li::before {
 
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
}

.offer {
  margin-bottom: 24px;
  font-size: 1.05rem;
}

.hero-actions {
  margin-bottom: 24px;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
  color: var(--muted);
  margin: 0;
}

.stack-grid {
  display: grid;
  gap: 24px;
}

.feature-row {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 24px;
  padding: 24px;
  align-items: center;
}

.feature-row--reverse {
  grid-template-columns: 1fr 300px;
}

.feature-row--reverse img {
  order: 2;
}

.feature-row img {
  border-radius: 16px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.feature-tag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 0.85rem;
  font-weight: 700;
}

/* .feature-grid, */
.review-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card,
.review-card {
  padding: 20px;
}

.feature-card img {
  aspect-ratio: 16 / 10;
  margin-bottom: 18px;
  object-fit: cover;
  border-radius: 16px;
}

.cta-band {
  background: linear-gradient(135deg, #111827, #1f2937);
  color: #fff;
}

.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.review-avatar {
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 16px;
}

.review-location {
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 14px;
}

.faq-wrap {
  max-width: 900px;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  padding: 0;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  border: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  position: relative;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: translateY(-50%);
}

.faq-icon::after {
  transform: translateY(-50%) rotate(90deg);
  transition: opacity 0.2s ease;
}

.faq-item.is-open .faq-icon::after {
  opacity: 0;
}

.faq-answer {
  display: none;
  padding: 0 24px 24px;
  color: var(--muted);
}

.faq-item.is-open .faq-answer {
  display: block;
}

.site-footer {
  padding: 32px 0 110px;
  background: #fff;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 0;
}

.footer-nav a,
.footer-copy {
  color: var(--muted);
}

.footer-copy {
  margin-bottom: 0;
}

.floating-cta {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1100;
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 14px 28px rgba(255, 107, 44, 0.35);
}

@media (max-width: 980px) {
  .hero-grid,
  .split-grid,
  /* .feature-grid, */
  .review-grid,
  .feature-row,
  .feature-row--reverse,
  .cta-band__inner,
  .footer-inner {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open,
  .menu-toggle {
    display: flex;
  }

  .header-inner {
    min-height: 72px;
  }

  .feature-row--reverse img {
    order: 0;
  }

  .brand-logo {
    width: 104px;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 56px 0;
  }

  .container {
    width: min(100% - 24px, var(--container));
  }

  .feature-card,
  .review-card,
  .feature-row {
    padding: 18px;
  }

  .floating-cta {
    display: inline-flex;
  }

  .site-footer {
    padding-bottom: 96px;
  }
}
/*  */
.text-check-icon {
    width: 18px;
    height: 18px;
    display: inline-block;
    vertical-align: middle;
    object-fit: contain;
    margin-right: 8px;
    flex-shrink: 0;
}
.text-check-icon1 {
    width: 94px;
    height: 36px;
    display: inline-block;
    vertical-align: middle;
    object-fit: contain;
    margin-right: 8px;
    flex-shrink: 0;
}
.text-check-icon2 {
    width: 26px;
    height: 26px;
    display: inline-block;
    vertical-align: middle;
    object-fit: contain;
    margin-right: 8px;
    flex-shrink: 0;
}
/*  */
.dash-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.dash-feature-item {
    background: #ffffff;
    border-radius: 18px;
    padding: 22px 18px 20px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.dash-feature-media {
    height: 120px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.dash-feature-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    display: block;
}

.dash-feature-title {
    margin: 0 0 10px;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 700;
    color: #0f172a;
}

.dash-feature-text {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #334155;
}

@media (max-width: 991px) {
    .dash-feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .dash-feature-grid {
        grid-template-columns: 1fr;
    }

    .dash-feature-item {
        padding: 20px 16px 18px;
    }

    .dash-feature-media {
        height: 100px;
        margin-bottom: 14px;
    }

    .dash-feature-title {
        font-size: 18px;
    }

    .dash-feature-text {
        font-size: 14px;
    }
}
/*  */
.protection-section {
    padding: 56px 0;
}

.protection-container {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
}

.protection-head {
    margin-bottom: 28px;
    text-align: center;
}

.protection-head h2 {
    margin: 0;
    font-size: 34px;
    line-height: 1.2;
    font-weight: 800;
    color: #0f172a;
}

.protection-list {
    display: grid;
    gap: 28px;
}

.protection-item {
    display: grid;
    grid-template-columns: 460px minmax(0, 1fr);
    align-items: center;
    gap: 32px;
    padding: 26px;
    /* background: #ffffff; */
    /* border-radius: 22px;
    box-shadow: 0 12px 34px rgba(15, 23, 42, 0.10); */
}

.protection-item--reverse {
    grid-template-columns: minmax(0, 1fr) 460px;
}

.protection-item--reverse .protection-item-media {
    order: 2;
}

.protection-item--reverse .protection-item-body {
    order: 1;
}

.protection-item-media {
    width: 100%;
}

.protection-item-image {
    width: 100%;
    height: 430px;
    display: block;
    object-fit: cover;
    border-radius: 28px;
}

.protection-item-body {
    min-width: 0;
}

.protection-item-title {
    margin: 0 0 16px;
    color: #ff7e00;
    font-size: 38px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: 0.01em;
}

.protection-item-text {
    margin: 0;
    color: #0f172a;
    font-size: 26px;
    line-height: 1.6;
}

@media (max-width: 1199px) {
    .protection-item,
    .protection-item--reverse {
        grid-template-columns: 380px minmax(0, 1fr);
    }

    .protection-item--reverse .protection-item-media {
        order: 2;
    }

    .protection-item--reverse .protection-item-body {
        order: 1;
    }

    .protection-item-image {
        height: 360px;
    }

    .protection-item-title {
        font-size: 30px;
    }

    .protection-item-text {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .protection-section {
        padding: 40px 0;
    }

    .protection-head {
        margin-bottom: 22px;
    }

    .protection-head h2 {
        font-size: 26px;
    }

    .protection-item,
    .protection-item--reverse {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 18px;
    }

    .protection-item--reverse .protection-item-media,
    .protection-item--reverse .protection-item-body {
        order: initial;
    }

    .protection-item-image {
        height: auto;
        aspect-ratio: 1 / 1;
        border-radius: 22px;
    }

    .protection-item-title {
        margin-bottom: 12px;
        font-size: 24px;
        line-height: 1.15;
    }

    .protection-item-text {
        font-size: 16px;
        line-height: 1.65;
    }
}
/*  */
.help-faq-section {
    padding: 60px 0;
    background: #f5f7fb;
}

.help-faq-container {
    width: min(1100px, calc(100% - 32px));
    margin: 0 auto;
}

.help-faq-head {
    text-align: center;
    margin-bottom: 28px;
}

.help-faq-eyebrow {
    margin: 0 0 10px;
    color: #ff7e00;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.help-faq-heading {
    margin: 0;
    font-size: 36px;
    line-height: 1.2;
    font-weight: 800;
    color: #0f172a;
}

.help-faq-list {
    display: grid;
    gap: 16px;
}

.help-faq-item {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
    overflow: hidden;
}

.help-faq-trigger {
    width: 100%;
    border: none;
    background: transparent;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    text-align: left;
    cursor: pointer;
}

.help-faq-question {
    font-size: 20px;
    line-height: 1.4;
    font-weight: 700;
    color: #0f172a;
}

.help-faq-icon {
    position: relative;
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
}

.help-faq-icon::before,
.help-faq-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 2px;
    background: #ff7e00;
    border-radius: 999px;
    transform: translate(-50%, -50%);
    transition: 0.25s ease;
}

.help-faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.help-faq-item.is-open .help-faq-icon::after {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg) scaleY(0);
}

.help-faq-answer {
    display: none;
    padding: 0 24px 22px;
}

.help-faq-item.is-open .help-faq-answer {
    display: block;
}

.help-faq-answer-inner p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: #334155;
}

@media (max-width: 767px) {
    .help-faq-section {
        padding: 44px 0;
    }

    .help-faq-heading {
        font-size: 28px;
    }

    .help-faq-trigger {
        padding: 18px;
    }

    .help-faq-question {
        font-size: 17px;
    }

    .help-faq-answer {
        padding: 0 18px 18px;
    }

    .help-faq-answer-inner p {
        font-size: 15px;
    }
}
/*  */
.compact-offer-section {
    position: relative;
    padding: 40px 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0.65)),
        url("/images/img-27.webp") center center / cover no-repeat;
    overflow: hidden;
}

.compact-offer-container {
    width: min(1160px, calc(100% - 24px));
    margin: 0 auto;
}

.compact-offer-grid {
    display: grid;
    grid-template-columns: minmax(0, 500px) minmax(280px, 1fr);
    align-items: center;
    gap: 24px;
}

.compact-offer-copy {
    margin-bottom: 18px;
}

.compact-offer-title {
    margin: 0 0 12px;
    color: #0b1220;
    font-size: 40px;
    line-height: 1.02;
    font-weight: 700;
}

.compact-offer-title span,
.compact-offer-title strong {
    color: #ff7e00;
    font-weight: 800;
}

.compact-offer-subtitle {
    margin: 0;
    color: #0b1220;
    font-size: 18px;
    line-height: 1.45;
    font-weight: 500;
    max-width: 560px;
}

.compact-offer-card {
    position: relative;
    max-width: 430px;
    background: #ffffff;
    border-radius: 18px;
    padding: 20px 18px 16px;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
}

.compact-offer-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.compact-offer-note {
    position: relative;
    padding-left: 14px;
    color: #233047;
    font-size: 17px;
    line-height: 1.4;
    font-weight: 500;
}

.compact-offer-note::before {
    content: "";
    position: absolute;
    top: 2px;
    left: 0;
    width: 5px;
    height: calc(100% - 4px);
    border-radius: 999px;
    background: #ff7e00;
}

.compact-offer-fields {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.compact-offer-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.compact-offer-input {
    width: 100%;
    height: 56px;
    padding: 0 18px;
    border: 1px solid #d7d7d7;
    border-radius: 999px;
    background: #f8f8f8;
    color: #1f2937;
    font-size: 17px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.compact-offer-input::placeholder {
    color: #7a7a7a;
}

.compact-offer-input:focus {
    border-color: #ff7e00;
    box-shadow: 0 0 0 4px rgba(200, 154, 62, 0.12);
    background: #ffffff;
}

.compact-offer-input.is-invalid {
    border-color: #ff7e00;
    background: #fff7f7;
}

.compact-offer-button {
    width: 100%;
    min-height: 56px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff5a1f 0%, #ff1b12 100%);
    color: #ffffff;
    font-size: 18px;
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.compact-offer-button:hover {
    transform: translateY(-1px);
}

.compact-offer-checks {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 2px;
}

.compact-offer-check {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #374151;
    font-size: 12px;
    line-height: 1.45;
}

.compact-offer-check input {
    margin-top: 2px;
    width: 15px;
    height: 15px;
    flex: 0 0 15px;
}

.compact-offer-check a {
    color: #ff7e00;
    text-decoration: underline;
}

.compact-offer-error {
    min-height: 16px;
    color: #dc2626;
    font-size: 12px;
    line-height: 1.35;
}

.compact-offer-error--form {
    margin-top: -2px;
}

.compact-offer-visual {
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.compact-offer-product {
    position: relative;
    width: 100%;
    max-width: 520px;
}

.compact-offer-product-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* .compact-offer-price {
    position: absolute;
    right: 18px;
    bottom: 14px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
}

.compact-offer-old-price {
    color: #ffffff;
    font-size: 20px;
    line-height: 1;
    text-decoration: line-through;
    text-decoration-thickness: 2px;
}

.compact-offer-new-price {
    min-width: 120px;
    padding: 10px 16px;
    border-radius: 12px 12px 12px 0;
    background: #7d6795;
    color: #ffffff;
    font-size: 28px;
    line-height: 1;
    font-weight: 800;
    text-align: center;
}

.compact-offer-stock {
    position: absolute;
    left: 8px;
    bottom: 18px;
    color: #ffffff;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 500;
    max-width: 220px;
} */

@media (max-width: 991px) {
    .compact-offer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .compact-offer-content {
        order: 1;
    }

    .compact-offer-visual {
        order: 2;
    }

    .compact-offer-card {
        max-width: 100%;
    }

    .compact-offer-product {
        max-width: 480px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .compact-offer-section {
        padding: 28px 0;
    }

    .compact-offer-container {
        width: calc(100% - 16px);
    }

    .compact-offer-grid {
        gap: 16px;
    }

    .compact-offer-copy {
        margin-bottom: 14px;
    }

    .compact-offer-title {
        font-size: 28px;
        line-height: 1.08;
        margin-bottom: 10px;
    }

    .compact-offer-subtitle {
        font-size: 15px;
        line-height: 1.45;
    }

    .compact-offer-card {
        padding: 16px 14px 14px;
        border-radius: 16px;
    }

    .compact-offer-note {
        font-size: 14px;
        line-height: 1.45;
        padding-left: 12px;
    }

    .compact-offer-fields {
        gap: 8px;
    }

    .compact-offer-input {
        height: 48px;
        padding: 0 14px;
        font-size: 15px;
    }

    .compact-offer-button {
        min-height: 48px;
        font-size: 16px;
    }

    .compact-offer-check {
        font-size: 11px;
        line-height: 1.4;
    }

    .compact-offer-error {
        font-size: 11px;
    }

    .compact-offer-product {
        max-width: 100%;
    }

    .compact-offer-price {
        right: 8px;
        bottom: 8px;
        gap: 4px;
    }

    .compact-offer-old-price {
        font-size: 16px;
    }

    .compact-offer-new-price {
        min-width: 98px;
        padding: 8px 12px;
        font-size: 22px;
        border-radius: 10px 10px 10px 0;
    }

    .compact-offer-stock {
        left: 6px;
        bottom: 10px;
        font-size: 12px;
        max-width: 150px;
    }
}
/*  */
body.order-loader-active > *:not(.order-loader-overlay) {
    filter: blur(6px);
    pointer-events: none;
    user-select: none;
}

.order-loader-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(6, 10, 18, 0.72);
    backdrop-filter: blur(6px);
}

.order-loader-box {
    width: min(420px, 100%);
    padding: 28px 24px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
    text-align: center;
}

.order-loader-spinner {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    border-radius: 50%;
    border: 5px solid rgba(201, 137, 31, 0.18);
    border-top-color: #c9891f;
    animation: orderLoaderSpin 0.9s linear infinite;
}

.order-loader-text {
    color: #1f2937;
    font-size: 22px;
    line-height: 1.35;
    font-weight: 700;
}

@keyframes orderLoaderSpin {
    to {
        transform: rotate(360deg);
    }
}
/*  */
.compact-offer-price-box {
    position: absolute;
    right: 14px;
    bottom: 14px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.compact-offer-discount-badge {
    padding: 6px 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff7a18, #ff3d00);
    color: #ffffff;
    font-size: 14px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.04em;
    box-shadow: 0 8px 18px rgba(255, 61, 0, 0.28);
}

.compact-offer-price {
    min-width: 122px;
    padding: 8px 12px;
    border-radius: 14px;
    background: rgba(17, 24, 39, 0.72);
    backdrop-filter: blur(6px);
    text-align: right;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.compact-offer-price-label {
    margin-bottom: 4px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 11px;
    line-height: 1;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.compact-offer-old-price {
    color: rgba(255, 255, 255, 0.88);
    font-size: 20px;
    line-height: 1;
    font-weight: 700;
    text-decoration: line-through;
    text-decoration-thickness: 2px;
    text-decoration-color: rgba(255, 255, 255, 0.8);
}

.compact-offer-price--new {
    background: #ff7e00;
    border-radius: 16px 16px 16px 4px;
}

.compact-offer-new-price {
    color: #ffffff;
    font-size: 30px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.01em;
}

@media (max-width: 640px) {
    .compact-offer-price-box {
        right: 8px;
        bottom: 8px;
        gap: 6px;
    }

    .compact-offer-discount-badge {
        padding: 5px 10px;
        font-size: 12px;
    }

    .compact-offer-price {
        min-width: 98px;
        padding: 7px 10px;
        border-radius: 12px;
    }

    .compact-offer-price-label {
        font-size: 10px;
    }

    .compact-offer-old-price {
        font-size: 16px;
    }

    .compact-offer-new-price {
        font-size: 22px;
    }
}
/*  */
.cta-center-button,
.cta-mobile-fixed {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff5a1f 0%, #ff1b12 100%);
    color: #ffffff;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    letter-spacing: 0.03em;
    box-shadow: 0 14px 28px rgba(255, 46, 18, 0.28);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        opacity 0.2s ease,
        visibility 0.2s ease;
}

.cta-center-button {
    min-width: 240px;
    min-height: 58px;
    padding: 0 30px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1;
    animation: ctaPulse 1.8s ease-in-out infinite;
}

.cta-center-button:hover,
.cta-mobile-fixed:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(255, 46, 18, 0.34);
}

.cta-center-button:active,
.cta-mobile-fixed:active {
    transform: translateY(0);
}

.cta-center-button:focus-visible,
.cta-mobile-fixed:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.6);
    outline-offset: 3px;
}

.cta-mobile-fixed {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 999;
    min-height: 52px;
    padding: 0 18px;
    font-size: 15px;
    line-height: 1;
    animation: ctaPulse 1.8s ease-in-out infinite;
    opacity: 1;
    visibility: visible;
}

.cta-mobile-fixed.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(12px);
}

@keyframes ctaPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 14px 28px rgba(255, 46, 18, 0.28);
    }
    50% {
        transform: scale(1.04);
        box-shadow: 0 18px 38px rgba(255, 46, 18, 0.38);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 14px 28px rgba(255, 46, 18, 0.28);
    }
}

@media (min-width: 768px) {
    .cta-mobile-fixed {
        display: none;
    }
}

@media (max-width: 767px) {
    .cta-center-button {
        min-width: 100%;
        width: 100%;
        min-height: 50px;
        padding: 0 18px;
        font-size: 15px;
    }
}
.cta-center-wrap {
    display: flex;
    justify-content: center;
    width: 100%;
}