@font-face {
  font-family: 'Manrope';
  src: url('/fonts/manrope-400.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Manrope';
  src: url('/fonts/manrope-600.woff2') format('woff2');
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('/fonts/montserrat-700.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('/fonts/montserrat-800.woff2') format('woff2');
  font-weight: 800;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('/fonts/montserrat-900.woff2') format('woff2');
  font-weight: 900;
  font-display: swap;
}

:root {
    --primary: #f59e0b;
    --primary-dark: #d97706;
    --primary-light: #fffbeb;
    --accent: #dc2626;
    --text-dark: #111827;
    --text-gray: #4b5563;
    --bg-page: #f9fafb;
    --bg-card: #ffffff;
    --radius: 12px;
    --shadow: 0 10px 25px -5px rgba(245, 158, 11, 0.15);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', sans-serif;
    margin: 0;
    padding: 0;
    background: var(--bg-page);
    color: var(--text-dark);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    padding-bottom: 88px;
}

img {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius);
}

.container {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    background: var(--bg-card);
    min-height: 100vh;
    overflow-x: hidden;
    box-shadow: 0 0 40px rgba(0,0,0,0.08);
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    line-height: 1.12;
    word-break: break-word;
}

h2 {
    font-size: 26px;
    font-weight: 800;
    margin: 0 0 22px 0;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: -0.4px;
}

h3 {
    font-size: 19px;
    font-weight: 700;
    margin: 0 0 10px 0;
}

p {
    line-height: 1.5;
    color: var(--text-gray);
    margin: 0 0 14px 0;
    font-size: 15px;
}

.section {
    padding: 34px 18px;
    border-bottom: 1px solid #f0f0f0;
}

.bg-accent-light {
    background-color: var(--primary-light);
}

.top-bar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.98);
    padding: 10px 14px;
    border-bottom: 2px solid var(--primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
}

.header-btn {
    background: var(--accent);
    color: #fff !important;
    padding: 8px 12px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    transition: transform 0.2s;
    display: inline-block;
    white-space: nowrap;
    line-height: 1;
}

.header-btn:active {
    transform: scale(0.96);
}

.hero-img-wrap {
    position: relative;
    overflow: hidden;
}

.hero-img-wrap img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 0;
}

.hero-content {
    padding: 18px 16px 12px 16px;
    text-align: center;
}

.price-box-hero {
    background: var(--primary-light);
    border: 2px solid var(--primary);
    padding: 14px 12px;
    border-radius: var(--radius);
    margin: 18px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.price-new {
    font-size: 42px;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
    font-family: 'Montserrat', sans-serif;
}

.price-old {
    font-size: 20px;
    text-decoration: line-through;
    color: var(--text-gray);
}

.timer-alert {
    color: var(--accent);
    font-weight: 700;
    font-size: 14px;
    margin-top: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    text-align: center;
}

.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 16px 14px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(220, 38, 38, 0.28);
    transition: transform 0.2s;
    position: relative;
    overflow: hidden;
}

.btn:active {
    transform: scale(0.97);
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 46%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.45), transparent);
    transform: skewX(-20deg);
    animation: shine 2.6s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    22% { left: 180%; }
    100% { left: 180%; }
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.feature-card {
    background: #fff;
    padding: 14px 12px;
    border-radius: var(--radius);
    text-align: center;
    border: 2px solid #eee;
    transition: 0.25s;
}

.feature-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.f-icon {
    font-size: 30px;
    margin-bottom: 6px;
    display: block;
}

.f-title {
    font-weight: 800;
    font-size: 15px;
    margin-bottom: 6px;
    color: var(--text-dark);
    font-family: 'Montserrat', sans-serif;
}

.f-desc {
    font-size: 13px;
    margin: 0;
    color: var(--text-gray);
    line-height: 1.35;
}

.zig-zag-item {
    margin-bottom: 26px;
    border-bottom: 1px dashed #ddd;
    padding-bottom: 18px;
}

.zig-zag-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.zz-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-bottom: 14px;
    border: 2px solid #eee;
}

.video-section-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 380px;
    aspect-ratio: 9 / 16;
    border-radius: 25px;
    border: 4px solid var(--primary);
    overflow: hidden;
    background: #000;
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
    margin: 0 auto;
    transform: translateZ(0);
    -webkit-mask-image: -webkit-radial-gradient(white, black);
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 66px;
    height: 66px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    animation: pulse-orange 2s infinite;
    box-shadow: 0 0 0 5px rgba(255,255,255,0.18);
}

@keyframes pulse-orange {
    0% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7); }
    70% { box-shadow: 0 0 0 25px rgba(245, 158, 11, 0); }
    100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
}

.review-scroll {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.review-card {
    min-width: 82%;
    max-width: 82%;
    background: #fff;
    padding: 16px;
    border-radius: var(--radius);
    scroll-snap-align: center;
    border: 2px solid #eee;
    flex-shrink: 0;
}

.review-photo {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-top: auto;
    border: 1px solid #f0f0f0;
}

.form-area {
    background: #fff;
    border-radius: var(--radius);
    padding: 20px 16px;
    box-shadow: var(--shadow);
}

.form-inp {
    width: 100%;
    padding: 14px;
    border: 2px solid #d1d5db;
    border-radius: var(--radius);
    margin-bottom: 14px;
    font-size: 16px;
    font-family: 'Manrope', sans-serif;
    transition: 0.25s;
    background: #fff;
}

.form-inp:focus {
    border-color: var(--primary);
    outline: none;
}

.qty-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
    margin-bottom: 20px;
}

.qty-card {
    border: 2px solid #d1d5db;
    padding: 12px 5px;
    border-radius: var(--radius);
    text-align: center;
    cursor: pointer;
    position: relative;
    transition: 0.2s;
    background: #fff;
}

.qty-card.active {
    border: 2px solid var(--accent);
    background: var(--primary-light);
}

.qty-card input {
    display: none;
}

.discount-tag {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: white;
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 900;
    text-transform: uppercase;
}

.robot-check {
    position: absolute;
    left: -9999px;
}

.sticky-bar {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 480px;
    background: #fff;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    box-shadow: 0 -5px 20px rgba(0,0,0,0.15);
    z-index: 99;
    display: none;
    border-top: 2px solid var(--primary);
}

.timer-container {
    margin: 14px 0 18px 0;
    text-align: center;
    background: #fff;
    border: 1px dashed #ccc;
    border-radius: 8px;
    padding: 10px;
    width: 100%;
}

.timer-label {
    font-size: 13px;
    color: #666;
    margin-bottom: 4px;
}

.timer-clock {
    font-size: 24px;
    font-weight: 800;
    color: #e74c3c;
    font-family: monospace;
    line-height: 1;
}

.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.step-item {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid #eee;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    position: relative;
    transition: transform 0.2s;
}

.step-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-color: var(--primary);
}

.step-num {
    background: var(--primary);
    color: #fff;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    position: absolute;
    top: 8px;
    left: 8px;
}

.step-icon {
    font-size: 28px;
    margin-right: 14px;
    margin-left: 8px;
    flex-shrink: 0;
}

.step-text h3 {
    font-size: 15px;
    margin: 0 0 4px 0;
    font-weight: 800;
    color: #333;
}

.step-text p {
    font-size: 13px;
    margin: 0;
    color: #666;
    line-height: 1.35;
}

.step-arrow {
    display: none;
    font-size: 24px;
    color: #ccc;
    font-weight: bold;
}

.smart-price-card {
    background: #fff;
    border: 2px solid var(--primary);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    margin: 25px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.sp-timer-row {
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #666;
    margin-bottom: 15px;
    background: #f3f4f6;
    display: inline-flex;
    padding: 6px 12px;
    border-radius: 20px;
}

.sp-timer-digits {
    font-weight: 800;
    color: var(--accent);
    font-family: monospace;
    font-size: 14px;
}

.sp-prices {
    margin-bottom: 10px;
}

.sp-old-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
    flex-wrap: wrap;
}

.sp-old {
    text-decoration: line-through;
    color: #9ca3af;
    font-size: 18px;
}

.sp-discount-badge {
    background: var(--accent);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
}

.sp-new {
    font-size: 48px;
    font-weight: 900;
    line-height: 1;
    color: var(--text-dark);
    animation: pulse-price 2s infinite;
}

.currency {
    font-size: 20px;
    font-weight: 600;
    vertical-align: top;
    color: #666;
}

.sp-saving {
    font-size: 14px;
    color: #15803d;
    background: #dcfce7;
    padding: 8px;
    border-radius: 8px;
    display: block;
    width: 100%;
}

@keyframes pulse-price {
    0% { transform: scale(1); }
    50% { transform: scale(1.04); }
    100% { transform: scale(1); }
}

.oven-guarantee-box {
    background: #fff9f9;
    border: 2px dashed #e63946;
    padding: 16px;
    border-radius: 15px;
    margin: 26px auto 0 auto;
    max-width: 100%;
}

.guarantee-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.guarantee-item:last-child {
    margin-bottom: 0;
}

.guarantee-icon {
    font-size: 24px;
    margin-right: 14px;
    min-width: 32px;
    flex-shrink: 0;
}

.guarantee-item p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
    color: #333;
}

.guarantee-item strong {
    color: #e63946;
    text-transform: uppercase;
    font-size: 14px;
}

.variant-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 22px;
}

.variant-card {
    background: #fff;
    border: 2px solid #eee;
    border-radius: var(--radius);
    padding: 7px;
    text-align: center;
    cursor: pointer;
    transition: 0.2s;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
}

.variant-card img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: calc(var(--radius) - 4px);
    margin-bottom: 8px;
}

.variant-card .v-name {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
    line-height: 1.25;
    min-height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.variant-card .v-price {
    font-size: 13px;
    font-weight: 800;
    color: var(--accent);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.2;
}

.variant-card.active {
    border-color: var(--primary);
    background: var(--primary-light);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.15);
    transform: translateY(-2px);
}

.variant-card.active .v-name {
    color: var(--primary-dark);
}

.variant-card.active::after {
    content: '✓';
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--primary);
    color: white;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.badge {
    position: absolute;
    top: 6px;
    left: 6px;
    padding: 4px 7px;
    font-size: 9px;
    font-weight: 800;
    border-radius: 6px;
    color: #fff;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    line-height: 1;
    white-space: nowrap;
}

.badge.top {
    background: #ef4444;
}

.badge.new {
    background: #10b981;
}

#choose-model {
    scroll-margin-top: 80px;
}

@media (max-width: 480px) {
    .container {
        max-width: 100%;
        box-shadow: none;
    }

    .section {
        padding: 28px 14px;
    }

    .hero-content {
        padding: 16px 14px 10px 14px;
    }

    .hero-content h1 {
        font-size: 24px !important;
        line-height: 1.15 !important;
    }

    .hero-content p {
        font-size: 14px !important;
        line-height: 1.45 !important;
    }

    .price-box-hero {
        flex-direction: column !important;
        gap: 10px !important;
        padding: 12px !important;
        margin: 16px 0 !important;
    }

    .price-box-hero > div[style*="width:1px"] {
        display: none !important;
    }

    .price-box-hero > div {
        text-align: center !important;
    }

    .price-new {
        font-size: 32px !important;
    }

    .btn {
        font-size: 16px;
        padding: 15px 12px;
    }

    .header-btn {
        font-size: 10px;
        padding: 7px 10px;
    }

    .top-bar span {
        font-size: 15px;
    }

    h2 {
        font-size: 22px;
        margin-bottom: 18px;
    }

    h3 {
        font-size: 17px;
    }

    .zz-img {
        margin-bottom: 12px;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .feature-card {
        padding: 12px 10px;
    }

    .f-icon {
        font-size: 26px;
    }

    .f-title {
        font-size: 14px;
    }

    .f-desc {
        font-size: 12px;
    }

    .review-card {
        min-width: 88%;
        max-width: 88%;
        padding: 14px;
    }

    .step-item {
        padding: 12px;
        align-items: flex-start;
    }

    .step-icon {
        font-size: 24px;
        margin-right: 12px;
    }

    .step-text h3 {
        font-size: 14px;
    }

    .step-text p {
        font-size: 12px;
    }

    .form-area {
        padding: 16px 14px;
    }

    .form-inp {
        padding: 13px;
        font-size: 16px;
    }

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

    .variant-card {
        padding: 6px;
    }

    .variant-card .v-name {
        font-size: 10px;
        min-height: 28px;
    }

    .variant-card .v-price {
        font-size: 12px;
    }

    .badge {
        top: 5px;
        left: 5px;
        font-size: 8px;
        padding: 3px 6px;
    }

    .guarantee-item {
        align-items: flex-start;
    }

    .guarantee-icon {
        font-size: 20px;
        margin-right: 10px;
        min-width: 24px;
    }

    .guarantee-item p {
        font-size: 13px;
    }

    .sticky-bar {
        padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
    }
}

@media (max-width: 360px) {
    .top-bar {
        padding: 9px 10px;
    }

    .top-bar span {
        font-size: 14px;
    }

    .header-btn {
        font-size: 9px;
        padding: 6px 8px;
    }

    .hero-content h1 {
        font-size: 21px !important;
    }

    .hero-content p {
        font-size: 13px !important;
    }

    .price-new {
        font-size: 28px !important;
    }

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

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

    .review-card {
        min-width: 92%;
        max-width: 92%;
    }

    .btn {
        font-size: 15px;
    }
}

@media (min-width: 768px) {
    .steps-grid {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
    }

    .step-item {
        flex-direction: column;
        text-align: center;
        flex: 1;
        padding: 20px 10px;
        align-items: center;
    }

    .step-icon {
        margin: 0 0 10px 0;
        font-size: 40px;
    }

    .step-num {
        left: 50%;
        transform: translateX(-50%);
        top: -10px;
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .step-arrow {
        display: flex;
        align-items: center;
        align-self: center;
        margin: 0 10px;
    }
}

/* ===== ХАРАКТЕРИСТИКИ (ПРОКАЧАНО) ===== */

.specs-section {
    background: #fff;
}

.specs-card {
    background: #ffffff;
    border: 2px solid #f3f4f6;
    border-radius: 16px;
    padding: 14px 16px;
    box-shadow: 0 10px 28px rgba(17, 24, 39, 0.05);
    max-width: 820px;
    margin: 0 auto;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;
    padding: 18px 4px;
    border-bottom: 1px solid #eceff3;
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-name {
    min-width: 160px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.4;
    color: #111827;
    display: flex;
    align-items: center;
}

.spec-name::before {
    content: "✔";
    color: #22c55e;
    font-size: 14px;
    margin-right: 10px;
}

.spec-value {
    flex: 1;
    text-align: right;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    color: #4b5563;
}

.spec-row:hover {
    background: #fafafa;
}

@media (max-width: 640px) {
    .specs-card {
        padding: 12px 12px;
        border-radius: 14px;
    }

    .spec-row {
        flex-direction: column;
        gap: 8px;
        padding: 16px 2px;
    }

    .spec-name {
        min-width: auto;
        font-size: 13px;
    }

    .spec-value {
        text-align: left;
        font-size: 13px;
    }
}
/* ===== ПРОДАНО СЬОГОДНІ ===== */

.sold-today-box {
    background: #fff7ed;
    border: 1px solid #fdba74;
    border-radius: 14px;
    padding: 14px 16px;
    margin: 16px 0;
    text-align: center;
    box-shadow: 0 6px 18px rgba(245, 158, 11, 0.08);
}

.sold-today-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    color: #9a3412;
    margin-bottom: 6px;
    letter-spacing: 0.4px;
}

.sold-today-date {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 8px;
}

.sold-today-row {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
}

.sold-today-prefix {
    font-size: 14px;
    color: #7c2d12;
}

.sold-today-count {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: #dc2626;
    line-height: 1;
}

.sold-today-text {
    font-size: 15px;
    font-weight: 700;
    color: #7c2d12;
}

/* 📱 мобілка */
@media (max-width: 480px) {
    .sold-today-box {
        padding: 12px 14px;
    }

    .sold-today-count {
        font-size: 24px;
    }

    .sold-today-prefix {
        font-size: 13px;
    }

    .sold-today-text {
        font-size: 13px;
    }
}
/* ===== БЛОК ПРО 2 СТОЛИКИ ===== */

.pair-offer-section {
    background: #fff;
}

.pair-offer-card {
    max-width: 820px;
    margin: 0 auto;
    background: linear-gradient(180deg, #fffaf5 0%, #ffffff 100%);
    border: 1px solid #fed7aa;
    border-radius: 18px;
    padding: 22px 18px;
    box-shadow: 0 10px 26px rgba(245, 158, 11, 0.08);
    text-align: center;
}

.pair-offer-badge {
    display: inline-block;
    margin-bottom: 12px;
    padding: 6px 12px;
    border-radius: 999px;
    background: #fff7ed;
    border: 1px solid #fdba74;
    color: #c2410c;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    font-family: 'Montserrat', sans-serif;
}

.pair-offer-title {
    margin: 0 0 12px 0;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: none;
}

.pair-offer-text {
    margin: 0 0 14px 0;
    font-size: 15px;
    line-height: 1.55;
    color: #4b5563;
}

.pair-offer-highlight {
    margin: 0 auto 12px auto;
    padding: 12px 14px;
    border-radius: 12px;
    background: #fff5f5;
    border: 1px dashed #ef4444;
    font-size: 15px;
    line-height: 1.5;
    color: #991b1b;
}

.pair-offer-highlight strong {
    color: #dc2626;
}
.pair-offer-note {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #6b7280;
}

@media (max-width: 640px) {
    .pair-offer-card {
        padding: 18px 14px;
        border-radius: 16px;
    }

    .pair-offer-title {
        font-size: 20px;
    }

    .pair-offer-text,
    .pair-offer-highlight,
    .pair-offer-note {
        font-size: 14px;
    }

    .pair-offer-badge {
        font-size: 10px;
    }
}
