/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
    color: #333;
    min-height: 100vh;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Фон для главной страницы */
body.main-page {
    background: #ffffff;
}

/* Фон для страницы спасибо */
body.thank-you-page {
    background: #f6f7f8;
}

.container {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    padding: 16px;
    overflow-x: hidden;
}

@media (min-width: 768px) {
    .container {
        padding: 24px;
    }
}

/* Content blocks - light gray rounded containers */
.content-block {
    width: 100%;
    max-width: 100%;
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 16px;
    border: none;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

/* Цвет блоков для главной страницы */
body.main-page .content-block {
    background: #f2f2f2;
}

/* Цвет блоков для страницы спасибо */
body.thank-you-page .content-block {
    background: #ffffff;
}

@media (min-width: 768px) {
    .content-block {
        border-radius: 20px;
        padding: 24px;
        margin-bottom: 16px;
    }
}

/* Image blocks - separate rounded images */
.image-block {
    width: 100%;
    max-width: 100%;
    margin-bottom: 16px;
    overflow: hidden;
}

.image-block img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
}

@media (min-width: 768px) {
    .image-block {
        margin-bottom: 16px;
    }
    
    .image-block img {
        border-radius: 20px;
    }
}

/* Hero section */
.hero-section .content-block {
    padding: 16px;
    margin-bottom: 16px;
}

body.main-page .hero-section .content-block {
    background: #f2f2f2;
}

body.thank-you-page .hero-section .content-block {
    background: #ffffff;
}

@media (min-width: 768px) {
    .hero-section .content-block {
        padding: 24px;
        margin-bottom: 16px;
    }
}

/* Price section */
.price-section .content-block {
    padding: 16px;
    margin-bottom: 12px;
}

@media (min-width: 768px) {
    .price-section .content-block {
        padding: 20px;
        margin-bottom: 16px;
    }
}

/* Typography */
.main-title {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.3;
    color: #1d1d1f;
    text-align: center;
    margin-bottom: 8px;
}

.subtitle {
    font-size: 16px;
    font-weight: 300;
    color: #6e6e73;
    text-align: center;
    margin-bottom: 16px;
    text-transform: lowercase;
}

.section-title {
    font-size: 22px;
    font-weight: 400;
    line-height: 1.3;
    color: #1d1d1f;
    margin-bottom: 20px;
    text-align: center;
}

.feature-title {
    font-size: 18px;
    font-weight: 400;
    color: #1d1d1f;
    margin-bottom: 16px;
}

.description-text {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.6;
    color: #1d1d1f;
    text-align: left;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.highlight-text {
    font-size: 16px;
    font-weight: 300;
    color: #1d1d1f;
    text-align: center;
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .main-title {
        font-size: 32px;
        margin-bottom: 16px;
    }
    
    .subtitle {
        font-size: 18px;
        margin-bottom: 32px;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 24px;
    }
    
    .feature-title {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .description-text {
        font-size: 16px;
        text-align: justify;
    }
    
    .highlight-text {
        font-size: 18px;
        margin-bottom: 32px;
    }
}

/* Feature lists */
.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.6;
    color: #1d1d1f;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

@media (min-width: 768px) {
    .feature-list li {
        font-size: 16px;
        margin-bottom: 16px;
    }
}

.feature-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #007AFF;
    font-weight: 700;
    font-size: 18px;
}

.feature-list li:last-child {
    margin-bottom: 0;
}

/* New Price Block */
.new-price-block {
    text-align: center;
    margin-bottom: 24px;
}

.current-price {
    position: relative;
    display: inline-block;
    font-size: 36px;
    font-weight: 900;
    color: #1d1d1f;
    margin-bottom: 4px;
    line-height: 1;
}

.discount-badge-new {
    position: absolute;
    top: 0;
    left: 100%;
    margin-left: 8px;
    background: linear-gradient(135deg, #6da9ee 0%, #4c79d6 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 8px 18px rgba(76, 121, 214, 0.22);
}

.old-price-text {
    font-size: 16px;
    color: #999;
    font-weight: 300;
    margin-top: 2px;
}

@media (min-width: 768px) {
    .current-price {
        font-size: 48px;
        margin-bottom: 6px;
    }
    
    .discount-badge-new {
        margin-left: 12px;
        padding: 8px 16px;
        border-radius: 16px;
        font-size: 16px;
    }
    
    .old-price-text {
        font-size: 18px;
        margin-top: 4px;
    }
}



/* CTA Button */
.cta-button {
    display: block;
    width: 100%;
    margin: 8px 0;
    padding: 14px 18px;
    background: linear-gradient(135deg, #5f95e8 0%, #3f6fd0 100%);
    color: white;
    text-decoration: none;
    border-radius: 18px;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    box-shadow: 0 10px 28px rgba(63, 111, 208, 0.22);
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: linear-gradient(135deg, #5187df 0%, #315dbd 100%);
    box-shadow: 0 14px 30px rgba(49, 93, 189, 0.26);
    transform: translateY(-2px);
}

@media (min-width: 768px) {
    .cta-button {
        margin: 12px 0;
        padding: 16px 24px;
        border-radius: 22px;
        font-size: 16px;
        letter-spacing: 0.8px;
        box-shadow: 0 12px 30px rgba(63, 111, 208, 0.24);
    }
}

/* Reviews section */
.reviews-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 800px;
    max-height: 800px;
    overflow: hidden;
    position: relative;
}

/* Градиент снизу для эффекта исчезновения */
.reviews-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    pointer-events: none;
    z-index: 10;
}

/* Reviews actions */
.reviews-actions {
    display: flex;
    gap: 8px;
    margin-top: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.reviews-actions .cta-button {
    flex: 1;
    min-width: 120px;
    max-width: 160px;
    padding: 10px 12px;
    font-size: 13px;
    box-shadow: none;
}

.reviews-actions .cta-button:hover {
    box-shadow: none;
}

/* Review reactions - positioned like Telegram */
.review-reactions {
    display: flex;
    gap: 6px;
    position: absolute;
    bottom: 8px;
    right: 12px;
    z-index: 5;
}

.reaction-btn {
    display: flex;
    align-items: center;
    gap: 3px;
    padding: 4px 8px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    cursor: pointer;
    font-size: 11px;
    transition: all 0.2s ease;
    user-select: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.reaction-btn.compact {
    padding: 4px 8px;
    gap: 3px;
    font-size: 11px;
    border-radius: 12px;
}

.reaction-btn:hover {
    background: #e9ecef;
    transform: translateY(-1px);
}

.reaction-btn.active {
    background: #edf4ff;
    border-color: #5f95e8;
    color: #4f7bd6;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(95, 149, 232, 0.2);
}

.reaction-btn.active.like {
    background: #e8f5e8;
    border-color: #4caf50;
    color: #4caf50;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(76, 175, 80, 0.2);
}

.reaction-btn.active.dislike {
    background: #ffebee;
    border-color: #f44336;
    color: #f44336;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(244, 67, 54, 0.2);
}

.reaction-emoji {
    font-size: 14px;
}

.reaction-count {
    font-weight: 500;
    min-width: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.review-item {
    background: linear-gradient(180deg, #ffffff 0%, #eef4ff 100%);
    padding: 14px;
    padding-bottom: 14px;
    border-radius: 16px;
    border: 1px solid rgba(145, 171, 214, 0.22);
    transition: all 0.3s ease;
    position: relative;
    margin-bottom: 8px;
}

.review-item.new-review {
    background: linear-gradient(180deg, #f4f9ff 0%, #dce9ff 100%);
    border: 2px solid #5f95e8;
    box-shadow: 0 10px 26px rgba(95, 149, 232, 0.22);
    animation: newReviewPulse 2s ease-in-out;
}

@keyframes newReviewPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(255, 140, 0, 0.3);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 6px 25px rgba(255, 140, 0, 0.5);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(255, 140, 0, 0.3);
    }
}

@keyframes badgePulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.review-header {
    margin-bottom: 8px;
}

.review-info {
    width: 100%;
}

.review-name {
    font-size: 13px;
    font-weight: 400;
    color: #1d1d1f;
    margin-bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.review-date {
    font-size: 11px;
    font-weight: 300;
    color: #6e6e73;
    margin-left: 8px;
}

.review-text {
    font-size: 12px;
    font-weight: 300;
    line-height: 1.35;
    color: #1d1d1f;
    margin: 0;
    padding-bottom: 32px;
}

.review-photos {
    margin: 8px 0;
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}

.review-photos img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid #e9ecef;
}

.review-photos img:hover {
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.photo-more {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(0,0,0,0.7);
    color: white;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid #e9ecef;
}

.photo-more:hover {
    background: rgba(0,0,0,0.8);
    transform: scale(1.05);
}

@media (min-width: 768px) {
    .review-item {
        padding: 20px;
        border-radius: 16px;
    }
    

    
    .review-header {
        margin-bottom: 16px;
    }
    
    .review-name {
        font-size: 16px;
        margin-bottom: 4px;
    }
    
    .review-date {
        font-size: 14px;
    }
    
    .review-text {
        font-size: 15px;
        line-height: 1.6;
    }
}

/* Order section - dark theme */
.order-section {
    width: 100%;
    max-width: 100%;
    background: linear-gradient(145deg, #1b2d45 0%, #223b5d 55%, #2c4d79 100%);
    border-radius: 22px;
    padding: 24px 18px;
    margin-bottom: 18px;
    color: white;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(27, 45, 69, 0.22);
}

.order-title {
    font-size: 22px;
    font-weight: 400;
    line-height: 1.3;
    color: white;
    text-align: center;
    margin-bottom: 12px;
    word-wrap: break-word;
}

.order-subtitle {
    font-size: 15px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-bottom: 24px;
    text-transform: lowercase;
    word-wrap: break-word;
}

@media (min-width: 768px) {
    .order-section {
        border-radius: 28px;
        padding: 42px 34px;
        margin-bottom: 24px;
    }
    
    .order-title {
        font-size: 32px;
        margin-bottom: 16px;
    }
    
    .order-subtitle {
        font-size: 18px;
        margin-bottom: 32px;
    }
}

.order-section .new-price-block {
    margin-bottom: 16px;
}

.order-section .current-price {
    color: white;
}

.order-section .old-price-text {
    color: rgba(255, 255, 255, 0.7);
}



@media (min-width: 768px) {
    .order-section .new-price-block {
        margin-bottom: 20px;
    }
}



/* Form styles */
.order-form {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.order-section .order-form button.cta-button[type="submit"] {
    width: 100% !important;
    display: block !important;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

.form-field {
    width: 100%;
    max-width: 100%;
    padding: 14px 18px;
    margin-bottom: 16px;
    border: 1px solid rgba(128, 153, 196, 0.18);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    color: #23344b;
    font-size: 15px;
    font-weight: 300;
    font-family: inherit;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

@media (min-width: 768px) {
    .order-form {
        max-width: 400px;
    }
    
    .form-field {
        padding: 18px 22px;
        margin-bottom: 20px;
        border-radius: 22px;
        font-size: 16px;
    }
}

.form-field::placeholder {
    color: #7c8ea8;
}

.form-field:focus {
    outline: none !important;
    border: 2px solid #5f95e8 !important;
    box-shadow: 0 0 0 3px rgba(95, 149, 232, 0.18) !important;
}

/* Убираем стандартную подсветку браузера */
.form-field:focus-visible {
    outline: none !important;
}

input:focus {
    outline: none !important;
}

/* Убираем подсказки и автозаполнение */
.form-field::-webkit-contacts-auto-fill-button,
.form-field::-webkit-credentials-auto-fill-button {
    visibility: hidden;
    display: none !important;
    pointer-events: none;
    height: 0;
    width: 0;
    margin: 0;
}

.form-field:-webkit-autofill,
.form-field:-webkit-autofill:hover,
.form-field:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0px 1000px white inset;
    -webkit-text-fill-color: #333;
}

/* Checkbox styles */
.checkbox-container {
    margin: 12px 0 0;
    text-align: center;
}

.custom-checkbox {
    display: inline-flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 11px;
    font-weight: 300;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.8);
    text-align: left;
    max-width: 100%;
}

@media (min-width: 768px) {
    .checkbox-container {
        margin: 16px 0 0;
    }
    
    .custom-checkbox {
        font-size: 12px;
        max-width: 400px;
    }
}

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    width: 16px;
    height: 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    flex-shrink: 0;
    position: relative;
    margin-top: 1px;
    margin-right: 8px;
}

.custom-checkbox input:checked ~ .checkmark {
    background: #5f95e8;
    border-color: #5f95e8;
}

.custom-checkbox input:checked ~ .checkmark:after {
    content: '';
    position: absolute;
    left: 4px;
    top: 1px;
    width: 3px;
    height: 6px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-text {
    flex: 1;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.custom-checkbox a {
    color: #90c0ff;
    text-decoration: underline;
}



.products-count {
    text-align: center;
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 20px;
    font-style: italic;
}

@media (min-width: 768px) {
    .products-count {
        font-size: 16px;
        margin-top: 24px;
    }
}

/* Footer */
.footer {
    background: transparent;
    padding: 16px;
    text-align: center;
    color: #666;
    font-size: 11px;
    font-weight: 300;
    line-height: 1.4;
}

@media (min-width: 768px) {
    .footer {
        padding: 20px;
        font-size: 12px;
    }
}

.footer a {
    color: #4f7bd6;
    text-decoration: none;
}



/* Utility classes */
.text-center {
    text-align: center;
}

/* Prevent horizontal scroll */
.container > * {
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

/* Additional responsive adjustments */
@media (min-width: 1200px) {
    .container {
        padding: 32px;
    }
}

/* Fix for very small screens */
@media (max-width: 320px) {
    .container {
        padding: 8px;
    }
    
    .content-block {
        padding: 12px;
    }
    
    .price-item {
        padding: 12px 4px;
    }
    
    .discount-badge {
        right: 4px;
        padding: 3px 6px;
        font-size: 10px;
    }
    
    .cta-button {
        font-size: 14px;
        padding: 12px 8px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Phone error styles */
.phone-error {
    color: #FF3B30;
    font-size: 14px;
    margin-top: 8px;
    text-align: center;
}

/* Loading states */
.cta-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Focus styles for accessibility */
.cta-button:focus,
.form-field:focus {
    outline: 2px solid #5f95e8;
    outline-offset: 2px;
}

.custom-checkbox:focus-within {
    outline: none;
}

.custom-checkbox input:focus ~ .checkmark {
    box-shadow: 0 0 0 2px rgba(95, 149, 232, 0.3);
}



/* Promo badge styles */
.promo-badge {
    display: inline-block;
}

/* Центрирование бейджа */
.badge-stamp {
    display: block !important;
    width: fit-content;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Promo stock number animation - FINAL VERSION */
.promo-stock-number {
    display: inline-block !important;
    font-size: 56px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    color: #4f7bd6 !important;
    animation: stockPulse 2s ease-in-out infinite !important;
    /* DEBUG: If you see orange, check browser cache */
}

@keyframes stockPulse {
    0% {
        transform: scale(1);
        color: #4f7bd6;
    }
    50% {
        transform: scale(1.1);
        color: #8ab8ff;
    }
    100% {
        transform: scale(1);
        color: #4f7bd6;
    }
}

/* Адаптивность для счетчика акции */
@media (max-width: 768px) {
    .promo-stock-number {
        font-size: 48px !important;
    }
}

@media (max-width: 480px) {
    .promo-stock-number {
        font-size: 42px !important;
    }
}

/* Subtle uniqueness layer */
:root {
    --ux-page-bg: linear-gradient(180deg, #f6f7f8 0%, #fbfbfc 42%, #f3f4f6 100%);
    --ux-card-bg: linear-gradient(180deg, #ffffff 0%, #f7f7f8 100%);
    --ux-card-radius: 22px;
    --ux-card-gap: 20px;
    --ux-primary-a: #5f95e8;
    --ux-primary-b: #3f6fd0;
    --ux-primary-shadow: rgba(63, 111, 208, 0.22);
    --ux-text-main: #2f3640;
    --ux-text-soft: #727983;
    --ux-border-soft: rgba(163, 168, 176, 0.16);
}

body.main-page {
    background: var(--ux-page-bg);
}

.container {
    max-width: 520px;
    padding: 18px 16px 24px;
}

.content-block,
.image-block,
.hero-section .content-block,
.order-section {
    margin-bottom: var(--ux-card-gap);
}

body.main-page .content-block,
body.main-page .hero-section .content-block {
    background: var(--ux-card-bg);
}

.content-block {
    border-radius: var(--ux-card-radius);
    border: 1px solid var(--ux-border-soft);
    box-shadow: 0 18px 32px rgba(64, 68, 76, 0.05);
}

.image-block img {
    border-radius: var(--ux-card-radius);
    box-shadow: 0 14px 28px rgba(70, 74, 82, 0.08);
}

.section-title,
.feature-title,
.description-text,
.highlight-text,
.review-name,
.review-text {
    color: var(--ux-text-main);
}

.description-text {
    letter-spacing: 0.01em;
    color: var(--ux-text-soft);
}

.cta-button {
    background: linear-gradient(138deg, var(--ux-primary-a) 0%, var(--ux-primary-b) 100%);
    border-radius: 18px;
    box-shadow: 0 6px 20px var(--ux-primary-shadow);
}

.cta-button:hover {
    background: linear-gradient(138deg, #5187df 0%, #315dbd 100%);
    box-shadow: 0 8px 24px rgba(49, 93, 189, 0.26);
}

.order-section {
    border-radius: 24px;
    background: linear-gradient(145deg, #35383d 0%, #2d3035 55%, #43474d 100%);
}

.form-field {
    border-radius: 18px;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(120, 128, 140, 0.12);
    color: #626b77;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.feature-overview {
    padding: 22px 18px;
}

.feature-overview-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 18px;
}

.feature-copy {
    padding-left: 8px;
}

.feature-copy .description-text {
    position: relative;
    margin-bottom: 14px;
    padding-left: 18px;
    font-size: 14px;
    line-height: 1.55;
}

.feature-copy .description-text::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, #79b0f3 0%, #4f7bd6 100%);
    box-shadow: 0 0 0 4px rgba(121, 176, 243, 0.14);
}

.feature-copy-last {
    margin-bottom: 0;
}

.special-offer-card {
    border: 1px solid rgba(170, 175, 184, 0.2);
}

.special-offer-media {
    position: relative;
}

.special-offer-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(48, 52, 59, 0) 0%, rgba(48, 52, 59, 0.08) 100%);
    pointer-events: none;
}

.special-offer-body {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(245, 246, 247, 0.98) 100%);
}

.special-offer-heading {
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
}

.special-offer-note {
    color: var(--ux-text-soft) !important;
}

.stock-panel {
    background: linear-gradient(180deg, #fafafa 0%, #f1f2f4 100%) !important;
    border: 1px dashed rgba(126, 133, 145, 0.35) !important;
    border-radius: 18px !important;
}

.stock-panel-label,
.stock-panel-total,
.price-benefit,
.support-note {
    color: var(--ux-text-soft);
}

.price-highlight {
    padding: 6px 0 2px;
}

.old-price-chip {
    color: #7b8ea9 !important;
}

.discount-chip {
    background: linear-gradient(135deg, #8fc2ff 0%, #5c8ee3 100%) !important;
    border-radius: 999px !important;
}

.current-offer-price {
    color: var(--ux-text-main) !important;
}

.offer-button {
    max-width: 360px !important;
}

.spec-table {
    overflow: hidden;
    border-radius: 18px;
}

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

.spec-table td:first-child {
    color: #566b88 !important;
}

.spec-table td:last-child {
    color: #24364d !important;
    font-weight: 500;
}

.reviews-section {
    border: 1px solid rgba(171, 176, 186, 0.22);
}

.support-note {
    line-height: 1.45;
}

.support-note-dark {
    color: rgba(255, 244, 231, 0.82) !important;
}

@media (min-width: 768px) {
    .container {
        padding: 28px 24px 32px;
    }

    .content-block,
    .image-block,
    .hero-section .content-block,
    .order-section {
        margin-bottom: 18px;
    }

    .content-block,
    .image-block img {
        border-radius: 26px;
    }

    .cta-button {
        border-radius: 22px;
    }

    .form-field {
        border-radius: 22px;
    }

    .feature-overview {
        padding: 28px 24px;
    }

    .feature-overview-title {
        font-size: 28px;
    }

    .feature-copy .description-text {
        font-size: 15px;
        padding-left: 22px;
    }

    .stock-panel {
        border-radius: 22px !important;
    }

    .spec-table {
        border-radius: 22px;
    }
}

/* Print styles */
@media print {
    .cta-button,
    .order-section {
        display: none;
    }
    
    body {
        background: white;
    }
    
    .content-block {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}
