/* ========================================
   Template 4 — Neon Dark
   Full dark mode, glow effects, Outfit font
   ======================================== */

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    min-width: 480px;
    background: #08080c;
    color: #e4e4e7;
    font: 400 15px/1.6 'Outfit', sans-serif;
    -webkit-font-smoothing: antialiased;
}

.lp {
    max-width: 480px;
    margin: 0 auto;
    background: #08080c;
    overflow: hidden;
}

/* ========================================
   Hero — image with overlay
   ======================================== */
.hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: flex-end;
}

.hero__bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

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

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        0deg,
        rgba(8,8,12,1) 0%,
        rgba(8,8,12,0.85) 30%,
        rgba(8,8,12,0.3) 60%,
        rgba(8,8,12,0) 100%
    );
}

.hero__content {
    position: relative;
    z-index: 2;
    padding: 0 24px 10px;
    width: 100%;
}

.hero__tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #fbbf24;
    margin-bottom: 12px;
}

.hero__title {
    font-size: 32px;
    font-weight: 900;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero__subtitle {
    margin: -6px 0 12px;
    font-size: 12px;
    line-height: 1.35;
    color: #a1a1aa;
    font-weight: 500;
}

.hero__prices {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 0;
}

.hero__price-old {
    font-size: 18px;
    color: #71717a;
    text-decoration: line-through;
    font-weight: 500;
}

.hero__price-new {
    font-size: 36px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -1px;
}

.hero__price-new small {
    font-size: 16px;
    font-weight: 600;
    color: #a1a1aa;
}

.hero__signals {
    margin-top: 12px;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
}

.hero__signal {
    display: flex;
    align-items: baseline;
    gap: 4px;
    min-width: 0;
    font-size: 11px;
    font-weight: 500;
    color: #c4c4cc;
    line-height: 1.2;
    white-space: nowrap;
}

.hero__signal-label {
    color: #a1a1aa;
}

.hero__signal-value {
    font-size: 13px;
    font-weight: 800;
    color: #fff;
    font-variant-numeric: tabular-nums;
}

.hero__signal--stock {
    color: #fbbf24;
}

.hero__signal--stock .hero__signal-label,
.hero__signal--stock .hero__signal-value {
    color: #fbbf24;
}

.hero__discount {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    width: 64px;
    height: 64px;
    background: #ef4444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 18px;
    color: #fff;
    box-shadow: 0 0 30px rgba(239,68,68,0.5);
    animation: pulse-disc 2s ease-in-out infinite;
}

@keyframes pulse-disc {
    0%, 100% { box-shadow: 0 0 20px rgba(239,68,68,0.4); }
    50% { box-shadow: 0 0 40px rgba(239,68,68,0.7); }
}

/* ========================================
   Action Bar — neon glow
   ======================================== */
.action-bar {
    background: #111118;
    border-top: 1px solid rgba(59,130,246,0.2);
    border-bottom: 1px solid rgba(59,130,246,0.2);
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
}

.action-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #3b82f6, transparent);
}

.action-bar__timer {
    text-align: center;
    font-size: 14px;
    color: #a1a1aa;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.action-bar__clock {
    font-size: 20px;
    line-height: 1;
}

.countdown__timer {
    display: inline-flex;
    gap: 6px;
}

.countdown__item {
    display: inline-flex;
    align-items: baseline;
    gap: 2px;
}

.countdown__value {
    font-size: 26px;
    font-weight: 900;
    color: #3b82f6;
    font-variant-numeric: tabular-nums;
    text-shadow: 0 0 12px rgba(59,130,246,0.4);
}

.countdown__label {
    font-size: 11px;
    color: #52525b;
    font-weight: 600;
}

.countdown__item + .countdown__item::before {
    content: ':';
    font-size: 22px;
    font-weight: 900;
    color: #27272a;
    margin-right: 6px;
}

.countdown__item[style*="display: none"] + .countdown__item::before {
    content: none;
    margin-right: 0;
}

.action-bar__btn {
    display: block;
    width: 100%;
    padding: 18px;
    text-align: center;
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    background: #3b82f6;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 0 24px rgba(59,130,246,0.3);
    position: relative;
    overflow: hidden;
}

.action-bar__btn::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 10px;
    border: 2px solid transparent;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6, #3b82f6) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s;
}

.action-bar__btn:hover {
    background: #2563eb;
    box-shadow: 0 0 40px rgba(59,130,246,0.5);
    transform: translateY(-1px);
}

.action-bar__btn:hover::after { opacity: 1; }

.action-bar__btn:active {
    transform: translateY(1px);
    box-shadow: 0 0 16px rgba(59,130,246,0.3);
}

.action-bar__note {
    margin: -2px 2px 0;
    text-align: center;
    font-size: 11px;
    line-height: 1.35;
    color: #71717a;
    font-weight: 500;
}

/* ========================================
   About — editorial
   ======================================== */
.about {
    padding: 48px 24px;
    border-bottom: 1px solid #1c1c24;
}

.about h2 {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 20px;
    position: relative;
    padding-left: 16px;
}

.about h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 3px;
    background: linear-gradient(180deg, #3b82f6, #8b5cf6);
    border-radius: 2px;
}

.about__text {
    font-size: 15px;
    line-height: 1.8;
    color: #a1a1aa;
}

.about__text strong {
    color: #e4e4e7;
    font-weight: 600;
}

.about__text ul { padding-left: 20px; margin: 12px 0; }
.about__text li { margin-bottom: 6px; }
.about__text li::marker { color: #3b82f6; }

.about__text img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* CKEditor MediaEmbed (figure.media + iframe) — адаптивне відео.
   aspect-ratio замість height:auto, бо iframe не має intrinsic size. */
.about__text figure.media,
.specs__body figure.media {
    margin: 16px auto;
    width: 100%;
    max-width: 100%;
}
.about__text figure.media iframe,
.specs__body figure.media iframe {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    border: 0;
}

/* ========================================
   Problem / Solution block
   ======================================== */
.pain-solution {
    padding: 30px 20px 26px;
    border-top: 1px solid #1c1c24;
    border-bottom: 1px solid #1c1c24;
}

.pain-solution__card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 14px 14px 12px;
}

.pain-solution__section + .pain-solution__section {
    margin-top: 12px;
}

.pain-solution__divider {
    height: 1px;
    margin: 12px 0;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.45), transparent);
}

.pain-solution__section h3 {
    font-size: 18px;
    font-weight: 800;
    color: #f4f4f5;
    margin-bottom: 10px;
    text-transform: none;
    letter-spacing: normal;
}

.pain-solution__section--problem h2 {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    text-align: center;
    margin-bottom: 14px;
}

.pain-solution__product-name {
    color: #60a5fa;
}

.pain-solution__section ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pain-solution__section li {
    font-size: 14px;
    line-height: 1.45;
    color: #a1a1aa;
}

.pain-solution__section--solution li {
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 10px;
    padding: 8px 10px;
    color: #d4d4d8;
}

/* ========================================
   Specs — glassmorphism card
   ======================================== */
.specs {
    padding: 32px 20px;
}

.specs__glass {
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    padding: 32px 20px;
    position: relative;
    overflow: hidden;
}

.specs__glass::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59,130,246,0.5), transparent);
}

.specs h2 {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    text-align: center;
    margin-bottom: 24px;
}

.specs__img {
    margin: 0 -20px 20px;
    border-radius: 12px;
    overflow: hidden;
}

.specs__img img {
    width: 100%;
    display: block;
}

.specs__body {
    color: #a1a1aa;
    font-size: 14px;
    line-height: 1.8;
}

.specs__body table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 12px;
    overflow: hidden;
}

.specs__body table th,
.specs__body table td {
    padding: 12px 16px;
    text-align: left;
    border: none;
}

.specs__body table th {
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    color: #fff;
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.specs__body table td {
    background: rgba(255,255,255,0.02);
    border-bottom: 1px solid #1c1c24;
    color: #d4d4d8;
}

.specs__body table tr:last-child td { border-bottom: none; }
.specs__body table tr:hover td { background: rgba(59,130,246,0.05); }

.specs__body img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   Reviews
   ======================================== */
.reviews {
    padding: 44px 20px;
    border-top: 1px solid #1c1c24;
}

.reviews h2 {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    text-align: center;
    margin-bottom: 18px;
}

.reviews__summary {
    margin-bottom: 16px;
    padding: 2px 0 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.reviews__summary-left {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.reviews__summary-right {
    text-align: right;
}

.reviews__summary-stars {
    color: #fbbf24;
    font-size: 18px;
    letter-spacing: 2px;
    line-height: 1;
}

.reviews__summary-score {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.reviews__summary-count {
    font-size: 12px;
    color: #a1a1aa;
    margin-bottom: 2px;
}

.reviews__summary-recommend {
    font-size: 12px;
    color: #d4d4d8;
    font-weight: 600;
}

.reviews__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.reviews-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 13px 13px 12px;
}

.reviews-card__top {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.reviews-card__avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    flex: 0 0 auto;
}

.reviews-card__avatar--photo {
    background: #111827;
    overflow: hidden;
}

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

.reviews-card__main {
    flex: 1 1 auto;
    min-width: 0;
}

.reviews-card__name {
    font-size: 14px;
    font-weight: 700;
    color: #f4f4f5;
    line-height: 1.2;
}

.reviews-card__name-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
}

.reviews-card__stars {
    color: #fbbf24;
    letter-spacing: 1px;
    font-size: 15px;
    line-height: 1;
    white-space: nowrap;
}

.reviews-card__meta {
    margin-top: 4px;
    font-size: 11px;
    color: #a1a1aa;
}

.reviews-card__verified {
    margin: 8px 0 6px 44px;
    font-size: 11px;
    color: #22c55e;
    font-weight: 600;
}

.reviews-card__text {
    margin-left: 44px;
    font-size: 13px;
    line-height: 1.5;
    color: #a1a1aa;
}

/* ========================================
   Timeline — horizontal steps
   ======================================== */
.timeline {
    padding: 48px 20px;
    border-top: 1px solid #1c1c24;
}

.timeline h2,
.faq h2 {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    text-align: center;
    margin-bottom: 32px;
}

.timeline__track {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-left: 32px;
}

.timeline__track::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #3b82f6, #8b5cf6, #3b82f6);
    opacity: 0.3;
}

.timeline__step {
    position: relative;
    padding: 0 0 32px 24px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.timeline__step:last-child { padding-bottom: 0; }

.timeline__dot {
    position: absolute;
    left: -26px;
    top: 0;
    width: 24px;
    height: 24px;
    background: #3b82f6;
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    line-height: 24px;
    text-align: center;
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(59,130,246,0.4);
}

.timeline__step img {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    object-fit: cover;
    margin-bottom: 10px;
    border: 1px solid #27272a;
}

.timeline__step svg {
    width: 48px;
    height: 48px;
    color: #3b82f6;
    margin-bottom: 0;
    flex: 0 0 auto;
}

.timeline__text {
    flex: 1 1 auto;
    min-width: 0;
}

.timeline__step h4 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
    text-transform: none;
    letter-spacing: normal;
}

.timeline__step p {
    font-size: 13px;
    color: #71717a;
    line-height: 1.5;
}

/* ========================================
   FAQ
   ======================================== */
.faq {
    padding: 44px 20px 56px;
    margin-bottom: 0;
    border-top: 1px solid #1c1c24;
    border-bottom: 1px solid #1c1c24;
}

.faq + .order {
    margin-top: 44px !important;
}

.faq__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq__item {
    border: 1px solid rgba(59, 130, 246, 0.25);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    overflow: hidden;
}

.faq__question {
    width: 100%;
    border: 0;
    background: transparent;
    color: #e4e4e7;
    text-align: left;
    cursor: pointer;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font: inherit;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.25;
}

.faq__icon {
    flex: 0 0 auto;
    color: #3b82f6;
    font-size: 30px;
    font-weight: 500;
    line-height: 1;
    transition: transform 0.2s ease;
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 18px;
    font-size: 14px;
    line-height: 1.5;
    color: #a1a1aa;
    transition: max-height 0.25s ease, padding 0.25s ease;
}

.faq__item.is-open .faq__answer {
    max-height: 220px;
    padding: 0 18px 16px;
}

.faq__item.is-open .faq__icon {
    transform: rotate(45deg);
}

/* ========================================
   Order Form
   ======================================== */
.order {
    margin: 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    padding: 24px 20px;
    position: relative;
}

.order::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59,130,246,0.5), transparent);
}

.order__title {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 22px;
    text-align: center;
    letter-spacing: 0.2px;
}

.order__header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #1c1c24;
}

.order__header img {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    object-fit: cover;
    border: 1px solid #27272a;
}

.order__header h3 {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
    line-height: 1.3;
    text-transform: lowercase;
}

.order__header h3::first-letter {
    text-transform: uppercase;
}

.order__price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.order__price {
    font-size: 18px;
    font-weight: 900;
    color: #3b82f6;
}

.order__price-old {
    font-size: 13px;
    font-weight: 500;
    color: #71717a;
    text-decoration: line-through;
    white-space: nowrap;
}

.order__mini-timer {
    margin: -2px 0 12px;
    padding: 0;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
}

.order__mini-timer-label {
    font-size: 12px;
    color: #a1a1aa;
    line-height: 1.3;
}

.order__mini-timer-value {
    font-size: 16px;
    font-weight: 800;
    color: #e4e4e7;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.4px;
    white-space: nowrap;
}

.order__form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-field-wrapper { position: relative; }

.order__form .field {
    width: 100%;
    display: block;
    background: #111118;
    border: 1px solid #27272a;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 500;
    padding: 16px 18px;
    border-radius: 10px;
    outline: none;
    transition: all 0.2s ease;
}

.order__form .field::placeholder { color: #52525b; }

.order__form .field:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59,130,246,0.15);
}

.error-message {
    display: block;
    color: #ef4444;
    font-size: 13px;
    margin-top: 5px;
    padding-left: 4px;
    font-weight: 600;
}

.field.error {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 3px rgba(239,68,68,0.1) !important;
}

.order__form .action-bar__btn { margin-top: 4px; }

.order__submit-note {
    margin-top: 2px;
    text-align: center;
    font-size: 11px;
    line-height: 1.35;
    color: #71717a;
    font-weight: 500;
}

.button-submit2:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.action-bar__btn.success {
    background: #10b981 !important;
    box-shadow: 0 0 24px rgba(16,185,129,0.4) !important;
}

/* ========================================
   Footer
   ======================================== */
.landing-page .footer {
    max-width: 480px;
    margin: 0 auto;
    padding: 32px 20px 40px;
    text-align: center;
    border-top: 1px solid #1c1c24;
}

.footer__shop-name {
    font-size: 17px;
    font-weight: 800;
    color: #111827;
    letter-spacing: 0.2px;
    margin-bottom: 10px;
}

.footer a {
    color: #52525b;
    font-size: 11px;
    text-decoration: none;
    transition: color 0.2s;
    white-space: nowrap;
}

.footer a:hover { color: #3b82f6; }

.menu-menu-1-container {
    margin-top: 4px;
    overflow-x: auto;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: nowrap;
}

.footer-menu li {
    margin: 0;
    padding: 0;
}

.footer__copyright {
    margin-top: 12px;
    font-size: 11px;
    color: #71717a;
}

/* ========================================
   Recent order popup
   ======================================== */
.recent-order-popup {
    position: fixed;
    right: max(14px, calc(50% - 240px + 14px));
    left: auto;
    top: 14px;
    z-index: 30;
    max-width: min(390px, calc(100vw - 28px));
    display: flex;
    align-items: flex-start;
    gap: 9px;
    padding: 10px 11px;
    border-radius: 12px;
    border: 1px solid #e4e4e7;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    pointer-events: none;
}

.recent-order-popup.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.recent-order-popup__icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    flex: 0 0 auto;
}

.recent-order-popup__title {
    font-size: 13px;
    font-weight: 700;
    color: #111827;
    line-height: 1.2;
}

.recent-order-popup__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
}

.recent-order-popup__product {
    margin-top: 2px;
    font-size: 12px;
    color: #374151;
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 270px;
}

.recent-order-popup__meta {
    font-size: 10px;
    font-weight: 500;
    color: #6b7280;
    white-space: nowrap;
    text-align: right;
}

/* ========================================
   Sticky order bar
   ======================================== */
.sticky-order-bar {
    position: fixed;
    left: 50%;
    bottom: 10px;
    transform: translateX(-50%) translateY(12px);
    width: min(460px, calc(100vw - 16px));
    z-index: 28;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 8px 10px 9px;
    border-radius: 12px;
    border: 1px solid #d4d4d8;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.22);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.sticky-order-bar.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.sticky-order-bar__signals {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-top: 2px;
    border-top: 1px solid #e5e7eb;
}

.sticky-order-bar__signal {
    min-width: 0;
    display: flex;
    align-items: baseline;
    gap: 4px;
    white-space: nowrap;
}

.sticky-order-bar__signal-label {
    font-size: 10px;
    color: #6b7280;
    line-height: 1.1;
}

.sticky-order-bar__signal-value {
    font-size: 12px;
    font-weight: 800;
    color: #111827;
    line-height: 1.1;
    font-variant-numeric: tabular-nums;
}

.sticky-order-bar__main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.sticky-order-bar__prices {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.sticky-order-bar__price-new {
    font-size: 18px;
    font-weight: 800;
    color: #111827;
    line-height: 1.1;
    font-variant-numeric: tabular-nums;
}

.sticky-order-bar__price-old {
    margin-top: 1px;
    font-size: 12px;
    color: #6b7280;
    text-decoration: line-through;
    line-height: 1.1;
}

.sticky-order-bar__btn {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    height: 42px;
    padding: 0 16px;
    border-radius: 10px;
    background: #3b82f6;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.35);
}

/* ========================================
   Animations
   ======================================== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero__content { animation: fadeIn 0.6s ease both 0.1s; }
.action-bar { animation: fadeIn 0.4s ease both 0.2s; }
.about { animation: fadeIn 0.4s ease both 0.25s; }
.specs__glass { animation: fadeIn 0.4s ease both 0.3s; }
.timeline { animation: fadeIn 0.4s ease both 0.35s; }
.order { animation: fadeIn 0.4s ease both 0.4s; }
