

/* Start:/local/components/custom/osb.calculator/templates/.default/style.css?177229256246732*/
/* ========================================
   Калькулятор распила OSB-3
   Стиль raspilim.com
   ======================================== */

/* CSS Variables для сайта */
:root {
    --oc-primary: #00e6e8;
    --oc-primary-dark: #00c4c6;
    --oc-primary-light: #b3f5f6;
    --oc-success: #fe01f5;
    --oc-success-dark: #c200b8;
    --oc-text: #333;
    --oc-text-muted: #666;
    --oc-bg: #fff;
    --oc-border: #e0e0e0;
    --oc-shadow: rgba(0, 230, 232, 0.15);
}

/* ========== Контейнер-обёртка страницы ========== */
.oc-page-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.oc-page-wrapper *,
.oc-page-wrapper *::before,
.oc-page-wrapper *::after {
    box-sizing: border-box;
}

/* ========== Основной контейнер ========== */
.osb-calculator {
    max-width: 960px;
    width: 100%;
    margin: 20px 0 30px 0;
    padding: 35px 40px;
    background: var(--oc-bg);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    box-sizing: border-box;
    border: 1px solid rgba(0, 230, 232, 0.1);
    float: none !important;
    position: relative !important;
    left: 0 !important;
    right: 0 !important;
}

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

/* ========== Заголовок ========== */
.osb-calculator__title {
    margin: 0 0 8px 0;
    font-size: 26px;
    color: var(--oc-text);
    font-weight: 700;
    text-align: center;
    letter-spacing: -0.3px;
}

.osb-calculator__subtitle {
    margin: 0 0 28px 0;
    color: var(--oc-text-muted);
    font-size: 15px;
    text-align: center;
    line-height: 1.5;
}

/* ========== Форма ========== */
.osb-calculator__form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.osb-calculator__field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.osb-calculator__field label {
    font-weight: 600;
    color: var(--oc-text);
    font-size: 14px;
    letter-spacing: 0.1px;
}

/* ========== Блок информации о продукте (фото OSB) ========== */
.osb-calculator__product-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 960px;
    padding: 20px;
    background: linear-gradient(135deg, #faf8f5 0%, #f5f0eb 100%);
    border-radius: 16px;
    border: 1px solid rgba(139, 115, 85, 0.15);
    align-items: center;
    text-align: center;
    margin-bottom: 8px;
}

.osb-calculator__product-image-wrap {
    flex-shrink: 0;
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--oc-border);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.osb-calculator__product-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.osb-calculator__product-image-wrap:hover .osb-calculator__product-image {
    transform: scale(1.03);
}

.osb-calculator__product-text {
    flex: 1;
    max-width: 500px;
}

.osb-calculator__product-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--oc-text);
    margin-bottom: 8px;
}

.osb-calculator__product-desc {
    font-size: 14px;
    color: var(--oc-text-muted);
    line-height: 1.6;
}

/* ========== Кнопки выбора толщины ========== */
.osb-calculator__thickness-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.osb-calculator__thickness-btn {
    min-width: 60px;
    padding: 12px 14px;
    background: #f5f5f5;
    border: 2px solid var(--oc-border);
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    color: var(--oc-text);
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: center;
}

.osb-calculator__thickness-btn:hover {
    border-color: var(--oc-primary);
    background: var(--oc-primary-light);
    color: var(--oc-primary-dark);
}

.osb-calculator__thickness-btn.active {
    background: linear-gradient(135deg, var(--oc-primary) 0%, var(--oc-primary-dark) 100%);
    border-color: var(--oc-primary);
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 230, 232, 0.3);
}

.osb-calculator__thickness-btn.active:hover {
    box-shadow: 0 6px 16px rgba(0, 230, 232, 0.4);
}

/* ========== Инпуты ========== */
.osb-calculator__input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--oc-border);
    border-radius: 12px;
    font-size: 16px;
    transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
    background: #fafafa;
    color: var(--oc-text);
}

.osb-calculator__input:hover {
    border-color: #ccc;
    background: #fff;
}

.osb-calculator__input:focus {
    outline: none;
    border-color: var(--oc-primary);
    box-shadow: 0 0 0 4px var(--oc-shadow);
    background: #fff;
}

.osb-calculator__input[type="number"]::-webkit-outer-spin-button,
.osb-calculator__input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.osb-calculator__input[type="number"] {
    -moz-appearance: textfield;
}

/* ========== Кнопки ========== */
.osb-calculator__button {
    width: 100%;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--oc-primary) 0%, var(--oc-primary-dark) 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    letter-spacing: 0.2px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.osb-calculator__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 230, 232, 0.4);
}

.osb-calculator__button:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 4px 12px rgba(0, 230, 232, 0.3);
}

.osb-calculator__button--cart {
    background: linear-gradient(135deg, var(--oc-success) 0%, var(--oc-success-dark) 100%);
    margin-top: 5px;
    overflow: hidden;
    position: relative;
    animation: cart-pulse 2s infinite;
}

.osb-calculator__button--cart:hover {
    box-shadow: 0 8px 24px rgba(254, 1, 245, 0.4);
    animation-play-state: paused;
}

/* ========== Результат ========== */
.osb-calculator__results--simple {
    margin-top: 28px;
    padding-top: 28px;
    border-top: 2px solid #f0f0f0;
    animation: ocFadeIn 0.3s ease;
}

@keyframes ocFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.osb-calculator__total-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    background: linear-gradient(135deg, var(--oc-primary) 0%, var(--oc-primary-dark) 100%);
    border-radius: 14px;
    color: #fff;
    margin-bottom: 16px;
    box-shadow: 0 4px 16px rgba(0, 230, 232, 0.3);
}

.osb-calculator__total-label {
    font-size: 17px;
    font-weight: 500;
    opacity: 0.95;
}

.osb-calculator__total-value {
    font-size: 34px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* ========== Ссылка на калькулятор площади ========== */
.osb-calculator__area-link {
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid #f0f0f0;
    text-align: center;
}

.osb-calculator__area-link p {
    margin: 0 0 14px 0;
    color: var(--oc-text-muted);
    font-size: 14px;
}

.osb-calculator__area-btn {
    display: inline-block;
    padding: 12px 24px;
    background: var(--oc-primary-light);
    color: var(--oc-primary-dark);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.25s;
    border: 2px solid transparent;
}

.osb-calculator__area-btn:hover {
    background: var(--oc-primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 230, 232, 0.3);
}

/* ========== Подсказка о размерах ========== */
.osb-calculator__hint {
    font-size: 13px;
    color: #888;
    margin-top: -10px;
    margin-bottom: 15px;
    padding-left: 5px;
}

/* ========== История расчётов ========== */
.osb-calculator__history {
    width: 100%;
    max-width: 960px;
    margin-bottom: 24px;
    padding: 16px;
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f4f8 100%);
    border-radius: 12px;
    border: 1px solid #e0e0e0;
}

.oc-history__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-weight: 600;
    font-size: 14px;
    color: #666;
}

.oc-history__clear {
    background: none;
    border: none;
    color: #999;
    font-size: 12px;
    cursor: pointer;
    text-decoration: underline;
    padding: 4px 8px;
}

.oc-history__clear:hover {
    color: #e74c3c;
}

.oc-history__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.oc-history__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 14px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    cursor: pointer;
    transition: all 0.2s;
}

.oc-history__item:hover {
    border-color: var(--oc-primary);
    box-shadow: 0 2px 8px rgba(0, 230, 232, 0.15);
}

.oc-history__info {
    font-size: 14px;
    color: #333;
    line-height: 1.4;
}

.oc-history__info small {
    color: #888;
}

.oc-history__price {
    font-weight: 700;
    font-size: 15px;
    color: var(--oc-primary-dark);
    white-space: nowrap;
}

/* ========== Пакетный расчёт (список деталей) ========== */
.osb-calculator__details-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.osb-calculator__details-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.oc-detail-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e8e8e8;
}

.oc-detail-row__inputs {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    flex-wrap: wrap;
}

.oc-detail-row__field {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    min-width: 0;
}

.oc-detail-row__field--qty {
    flex: 0.7;
}

.oc-detail-row__field input {
    width: 100%;
    padding: 10px 8px;
    text-align: center;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.oc-detail-row__unit {
    font-size: 13px;
    color: #888;
}

.oc-detail-row__x,
.oc-detail-row__dash {
    color: #999;
    font-weight: 500;
}

.oc-detail-row__remove {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    color: #999;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
}

.oc-detail-row__remove:hover {
    border-color: #e74c3c;
    color: #e74c3c;
    background: #fff5f5;
}

.osb-calculator__add-detail {
    width: 100%;
    padding: 12px;
    background: #fff;
    border: 2px dashed #d0d0d0;
    border-radius: 12px;
    color: var(--oc-primary-dark);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.osb-calculator__add-detail:hover {
    border-color: var(--oc-primary);
    background: var(--oc-primary-light);
}

/* Детализация в результатах */
.oc-breakdown {
    margin: 16px 0;
    padding: 14px;
    background: #f8f9fa;
    border-radius: 10px;
}

.oc-breakdown__title {
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
    font-weight: 600;
}

.oc-breakdown__row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 14px;
    border-bottom: 1px solid #eee;
}

.oc-breakdown__row:last-child {
    border-bottom: none;
}

/* ========== Уведомления ========== */
.osb-notification {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    animation: ocSlideIn 0.3s ease;
}

@keyframes ocSlideIn {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

/* ========== Подсказка оптимизации ========== */
.osb-calc__optimization {
    background: linear-gradient(135deg, #fff9e6 0%, #fff3cd 100%);
    border: 2px solid #ffc107;
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    animation: ocFadeIn 0.3s ease;
}

.osb-calc__optimization .optimization-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.osb-calc__optimization .optimization-icon {
    font-size: 24px;
}

.osb-calc__optimization .optimization-title {
    font-size: 18px;
    font-weight: 600;
    color: #856404;
}

.osb-calc__optimization .optimization-text {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 15px;
}

.osb-calc__optimization .optimization-comparison {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255,255,255,0.7);
    border-radius: 8px;
}

.osb-calc__optimization .optimization-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.osb-calc__optimization .optimization-item .label {
    font-size: 12px;
    color: #666;
}

.osb-calc__optimization .optimization-item .value {
    font-size: 18px;
    font-weight: 700;
}

.osb-calc__optimization .optimization-before .value {
    color: #dc3545;
    text-decoration: line-through;
}

.osb-calc__optimization .optimization-after .value {
    color: #28a745;
}

.osb-calc__optimization .optimization-arrow {
    font-size: 24px;
    color: #28a745;
}

.osb-calc__optimization .optimization-saving {
    margin-left: auto;
    font-size: 16px;
    color: #28a745;
}

.osb-calc__optimization .optimization-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.osb-calc__optimization .optimization-actions .btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    font-size: 14px;
}

.osb-calc__optimization .optimization-actions .btn-primary {
    background: #28a745;
    color: #fff;
}

.osb-calc__optimization .optimization-actions .btn-primary:hover {
    background: #218838;
    transform: translateY(-1px);
}

.osb-calc__optimization .optimization-actions .btn-secondary {
    background: #6c757d;
    color: #fff;
}

.osb-calc__optimization .optimization-actions .btn-secondary:hover {
    background: #5a6268;
}

/* ========== Предупреждение о самовывозе ========== */
.osb-calculator__delivery-warning {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
    border: 2px solid #ffc107;
    border-radius: 12px;
    padding: 16px 20px;
    margin: 16px 0;
}

.osb-calculator__delivery-warning .delivery-warning__icon {
    font-size: 24px;
    flex-shrink: 0;
}

.osb-calculator__delivery-warning .delivery-warning__content {
    flex: 1;
}

.osb-calculator__delivery-warning .delivery-warning__title {
    font-weight: 700;
    font-size: 16px;
    color: #856404;
    margin-bottom: 6px;
}

.osb-calculator__delivery-warning .delivery-warning__text {
    font-size: 14px;
    color: #856404;
    margin-bottom: 8px;
    line-height: 1.4;
}

.osb-calculator__delivery-warning .delivery-warning__address {
    font-size: 14px;
    color: #5d4e37;
    background: rgba(255, 255, 255, 0.6);
    padding: 8px 12px;
    border-radius: 8px;
}

.osb-calculator__delivery-warning .delivery-warning__address strong {
    color: #333;
}

/* ========== Печать ========== */
@media print {
    .osb-calculator {
        box-shadow: none;
        border: 1px solid #ddd;
    }
    .osb-calculator__button {
        display: none;
    }
    .osb-calc__optimization {
        display: none;
    }
}

/* ========================================
   SEO: Хлебные крошки
   ======================================== */
.oc-seo-breadcrumbs {
    width: 100%;
    max-width: 960px;
    margin: 15px 0 0 0;
    padding: 0;
    font-size: 13px;
    color: #666;
}

.oc-seo-breadcrumbs a {
    color: #666;
    text-decoration: none;
    transition: color 0.2s;
}

.oc-seo-breadcrumbs a:hover {
    color: var(--oc-primary-dark);
}

.oc-seo-breadcrumbs__sep {
    margin: 0 8px;
    color: #999;
}

.oc-seo-breadcrumbs__current {
    color: #333;
    font-weight: 500;
}

/* ========================================
   SEO: Вступительный блок
   ======================================== */
.oc-seo-intro {
    width: 100%;
    max-width: 960px;
    margin: 15px 0 0 0;
    padding: 25px 30px;
    background: linear-gradient(135deg, #f0fffe 0%, #e6fffe 100%);
    border-radius: 20px;
    border: 1px solid rgba(0, 230, 232, 0.15);
    text-align: center;
}

.oc-seo-intro__title {
    margin: 0 0 14px 0;
    font-size: 26px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.3;
}

.oc-seo-intro__desc {
    margin: 0 0 20px 0;
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

.oc-seo-intro__badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.oc-seo-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: #fff;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    color: #333;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid #e8e8e8;
}

.oc-seo-badge svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

/* ========================================
   SEO: FAQ блок
   ======================================== */
.oc-seo-faq {
    width: 100%;
    max-width: 960px;
    margin: 0 0 30px 0;
    padding: 25px 30px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #e8e8e8;
}

.oc-seo-faq__title {
    margin: 0 0 24px 0;
    font-size: 22px;
    font-weight: 700;
    color: #1a1a2e;
    text-align: center;
}

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

.oc-seo-faq__item {
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.oc-seo-faq__item:hover {
    border-color: var(--oc-primary);
}

.oc-seo-faq__item.active {
    border-color: var(--oc-primary);
    box-shadow: 0 4px 16px var(--oc-shadow);
}

.oc-seo-faq__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 18px 20px;
    background: #fafafa;
    border: none;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    transition: background 0.2s;
}

.oc-seo-faq__question:hover {
    background: #f5f5f5;
}

.oc-seo-faq__item.active .oc-seo-faq__question {
    background: var(--oc-primary-light);
}

.oc-seo-faq__icon {
    flex-shrink: 0;
    color: #999;
    transition: transform 0.3s, color 0.2s;
}

.oc-seo-faq__item.active .oc-seo-faq__icon {
    transform: rotate(180deg);
    color: var(--oc-primary-dark);
}

.oc-seo-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.oc-seo-faq__item.active .oc-seo-faq__answer {
    max-height: 500px;
    padding: 0 20px 20px;
}

.oc-seo-faq__answer p {
    margin: 16px 0 0 0;
    font-size: 14px;
    line-height: 1.7;
    color: #555;
}

.oc-seo-faq__answer p:first-child {
    margin-top: 0;
}

.oc-seo-faq__answer ul {
    margin: 12px 0;
    padding-left: 20px;
}

.oc-seo-faq__answer li {
    margin: 8px 0;
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

.oc-seo-faq__answer strong {
    color: #333;
}

/* ========================================
   SEO: Информационный блок о материале OSB
   ======================================== */
.oc-seo-material-info {
    width: 100%;
    max-width: 960px;
    margin: 50px auto 40px;
    padding: 0 20px;
}

.oc-seo-material-block {
    background: linear-gradient(145deg, #ffffff 0%, #faf8f5 50%, #f5f0eb 100%);
    border: 1px solid rgba(139, 115, 85, 0.15);
    border-radius: 24px;
    padding: 40px 45px;
    box-shadow: 0 10px 40px rgba(139, 115, 85, 0.08), 0 4px 12px rgba(0, 0, 0, 0.03);
    animation: ocFadeInBlock 0.5s ease-out;
}

@keyframes ocFadeInBlock {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.oc-seo-material-block h2 {
    margin: 0 0 18px 0;
    font-size: 28px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.3;
    text-align: center;
}

.oc-seo-material-lead {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
    margin: 0 0 30px 0;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(139, 115, 85, 0.15);
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.oc-seo-material-lead strong {
    color: #8b7355;
    font-weight: 600;
}

.oc-seo-material-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 30px;
}

.oc-seo-feature {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.oc-seo-feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 230, 232, 0.12);
    border-color: rgba(0, 230, 232, 0.2);
}

.oc-seo-feature-icon {
    font-size: 32px;
    flex-shrink: 0;
    line-height: 1;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #faf5f0 0%, #f0ebe5 100%);
    border-radius: 12px;
}

.oc-seo-feature strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 6px;
}

.oc-seo-feature p {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
    color: #555;
}

.oc-seo-material-note {
    margin: 0;
    padding: 20px 25px;
    background: linear-gradient(135deg, #faf5f0 0%, #f0ebe5 100%);
    border-left: 4px solid #8b7355;
    border-radius: 0 14px 14px 0;
    font-size: 15px;
    line-height: 1.65;
    color: #333;
    text-align: center;
}

.oc-seo-material-note strong {
    color: #8b7355;
    font-weight: 600;
}

/* ========================================
   SOCIAL PROOF: Лайки и Рейтинг
   ======================================== */
.fc-social-proof {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-bottom: 24px;
    position: relative;
    width: 100%;
    max-width: 960px;
}

20% {
        opacity: 1;
        transform: translateY(-30px) scale(1.2) rotate(-10deg);
    }
    50% {
        opacity: 1;
        transform: translateY(-100px) scale(1) rotate(15deg);
    }
    100% {
        opacity: 0;
        transform: translateY(-200px) scale(0.6) rotate(-5deg);
    }
}

100% { opacity: 0; transform: translate(-60px, -80px) scale(1) rotate(180deg); }
}
100% { opacity: 0; transform: translate(60px, -80px) scale(0.8) rotate(-180deg); }
}
100% { opacity: 0; transform: translate(-80px, -40px) scale(0.9) rotate(90deg); }
}
100% { opacity: 0; transform: translate(80px, -40px) scale(0.7) rotate(-90deg); }
}
100% { opacity: 0; transform: translate(0, -100px) scale(1.1) rotate(360deg); }
}
100% { opacity: 0; transform: translate(-40px, -60px) scale(0.6) rotate(270deg); }
}
100% { opacity: 0; transform: translate(40px, -60px) scale(0.6) rotate(-270deg); }
}
100% { opacity: 0; transform: translate(0, -70px) scale(0.5) rotate(180deg); }
}

/* Floating Hearts — news-page style */
.fc-floating-hearts {
    position: fixed;
    bottom: 80px;
    left: 50%;
    pointer-events: none;
    z-index: 9999;
}

.fc-calc-heart {
    position: absolute;
    animation: fcFloatHeart 2.5s ease-out forwards;
    font-size: 22px;
    opacity: 0;
}
@keyframes fcFloatHeart {
    0% { opacity: 1; transform: translate(0,0) scale(.5) rotate(0deg); }
    10% { opacity: 1; transform: translate(var(--hx),-40px) scale(1.2) rotate(var(--hr)); }
    40% { opacity: 1; transform: translate(calc(var(--hx)*1.5),-35vh) scale(1) rotate(calc(var(--hr)*2)); }
    70% { opacity: .7; transform: translate(calc(var(--hx)*2),-65vh) scale(.8) rotate(calc(var(--hr)*3)); }
    100% { opacity: 0; transform: translate(calc(var(--hx)*2.5),-95vh) scale(.4) rotate(calc(var(--hr)*4)); }
}


/* Floating Stars — full-screen emoji style */
.fc-floating-stars {
    position: fixed;
    bottom: 50%;
    left: 50%;
    pointer-events: none;
    z-index: 9999;
}

.fc-calc-star {
    position: absolute;
    animation: fcFloatStar 2.2s ease-out forwards;
    font-size: 20px;
    opacity: 0;
}
@keyframes fcFloatStar {
    0% { opacity: 1; transform: translate(0,0) scale(.4) rotate(0deg); }
    10% { opacity: 1; transform: translate(var(--sx),-30px) scale(1.3) rotate(var(--sr)); }
    40% { opacity: 1; transform: translate(calc(var(--sx)*1.5),-30vh) scale(1) rotate(calc(var(--sr)*2)); }
    70% { opacity: .6; transform: translate(calc(var(--sx)*2),-55vh) scale(.7) rotate(calc(var(--sr)*3)); }
    100% { opacity: 0; transform: translate(calc(var(--sx)*2.5),-85vh) scale(.3) rotate(calc(var(--sr)*4)); }
}

/* Кнопка лайка */
.fc-likes {
    display: flex;
    align-items: center;
}

.fc-likes__btn {
    position: relative;
    z-index: 1;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fe01f5, #c200b8);
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
    font-family: inherit;
    box-shadow: 0 4px 18px rgba(254, 1, 245, 0.38);
}

.fc-likes__btn:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 25px rgba(254, 1, 245, 0.5);
}

.fc-likes__btn:active {
    transform: scale(0.95);
}

.fc-likes__btn.liked {
    background: linear-gradient(135deg, #fe01f5, #c200b8);
    box-shadow: 0 4px 15px rgba(254, 1, 245, 0.4);
}

.fc-likes__btn.liked .fc-likes__icon {
    fill: #fff;
}

.fc-likes__btn.liked .fc-likes__count {
    color: #fff;
}

.fc-likes__icon {
    fill: #fff;
    transition: all 0.3s ease;
}

.fc-likes__btn:hover .fc-likes__icon {
    transform: scale(1.15);
}

.fc-likes__btn.liked:hover .fc-likes__icon {
    fill: #fff;
}

/* Анимация пульсации при лайке */
@keyframes heartPulse {
    0% { transform: scale(1); }
    25% { transform: scale(1.3); }
    50% { transform: scale(1); }
    75% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.fc-likes__btn.pulse .fc-likes__icon {
    animation: heartPulse 0.6s ease;
}

.fc-likes__count {
    font-size: 26px;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: -0.5px;
    line-height: 1;
}

/* Рейтинг звёздами */
.fc-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.fc-rating__stars {
    display: flex;
    gap: 2px;
}

.fc-rating__star {
    padding: 4px;
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.fc-rating__star:hover {
    transform: scale(1.2);
}

.fc-rating__star svg {
    fill: #ddd;
    stroke: #222;
    stroke-width: 0.8;
    transition: fill 0.2s ease, stroke 0.2s ease;
}

.fc-rating__star.active svg,
.fc-rating__star.hover svg {
    fill: #fdff09;
    stroke: #111;
    stroke-width: 0.9;
}

.fc-rating__star.rated {
    cursor: default;
}

.fc-rating__star.rated:hover {
    transform: none;
}

.fc-rating__value {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    font-size: 26px;
    font-weight: 800;
    margin-left: 0;
    line-height: 1;
}

.fc-rating__count {
    font-size: 13px;
    color: #888;
}

/* Подсказка "Спасибо за оценку" */
.fc-rating__thanks {
    font-size: 12px;
    color: #27ae60;
    font-weight: 500;
    animation: fadeInOut 2s ease forwards;
}

@keyframes fadeInOut {
    0% { opacity: 0; transform: translateY(5px); }
    20% { opacity: 1; transform: translateY(0); }
    80% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(-5px); }
}


/* ========================================
   SOCIAL PROOF CARDS + RIPPLE
   ======================================== */

.fc-sp-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    padding: 14px 18px 14px 22px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.07);
    box-shadow: 0 3px 18px rgba(0,0,0,0.07);
    width: 100%;
    min-height: 88px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    cursor: default;
}
.fc-sp-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.12);
}
.fc-sp-card--heart:hover {
    box-shadow: 0 8px 28px rgba(254, 1, 245, 0.18);
}
.fc-sp-card--rating:hover {
    box-shadow: 0 8px 28px rgba(253, 255, 9, 0.25);
}
.fc-sp-card::before {
    content: "";
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    border-radius: 16px 0 0 16px;
}

.fc-sp-card--heart {
    background: linear-gradient(135deg, #fdf0ff 0%, #fff 60%);
    border-color: rgba(254, 1, 245, 0.15);
}
.fc-sp-card--heart::before {
    background: linear-gradient(180deg, #fe01f5 0%, #c200b8 100%);
}

.fc-sp-card--rating {
    background: linear-gradient(135deg, #fffdf0 0%, #fff 60%);
    border-color: rgba(253, 255, 9, 0.25);
}
.fc-sp-card--rating::before {
    background: linear-gradient(180deg, #ffd700 0%, #ff9800 100%);
}

.fc-sp-card__hint {
    font-size: 11px;
    font-weight: 700;
    color: #bbb;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin: 0 0 3px;
    text-align: left;
    width: 100%;
}

/* Ripple wrap — позиционирование колец относительно кнопки */
.fc-sp-ripple-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
}

/* Внимание-ripple для сердечка — три автоматических кольца */
@keyframes fcRippleHeart {
    0%   { transform: scale(0.85); opacity: 0.55; }
    100% { transform: scale(2.6);  opacity: 0; }
}

.fc-sp-ripple {
    position: absolute;
    inset: 18px;
    border-radius: 50%;
    border: 2px solid rgba(254, 1, 245, 0.45);
    animation: fcRippleHeart 2.4s ease-out infinite;
    pointer-events: none;
}
.fc-sp-ripple--2 { animation-delay: 0.8s; }
.fc-sp-ripple--3 { animation-delay: 1.6s; }

/* Ripple wrap для звёзд — прямоугольное кольцо */
.fc-sp-ripple-wrap--stars {
    width: auto;
    height: auto;
    padding: 16px 10px;
}

@keyframes fcRippleStar {
    0%   { transform: scale(0.8);  opacity: 0.65; }
    100% { transform: scale(2.2);  opacity: 0; }
}

.fc-sp-ripple--star {
    inset: -10px;
    border-radius: 0;
    border: none;
    background: rgba(200, 202, 0, 0.55);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    animation: fcRippleStar 2.8s ease-out infinite;
}
.fc-sp-ripple--star.fc-sp-ripple--2 { animation-delay: 1.3s; }

/* fc-rating__info — значение + кол-во оценок рядом */
.fc-rating__info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1px;
}

/* Мобильная адаптация social proof */
@media (max-width: 768px) {
    .fc-social-proof {
        gap: 10px;
    }

    .fc-sp-card {
        padding: 16px 20px;
        min-width: 0;
    }

    .fc-rating__star svg {
        width: 18px;
        height: 18px;
    }

    .fc-rating__value {
        font-size: 16px;
    }

    .fc-rating__count {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .fc-social-proof {
        gap: 12px;
        padding: 12px 14px;
    }

    .fc-likes__btn {
        padding: 6px 14px;
        gap: 6px;
    }

    .fc-likes__icon {
        width: 18px;
        height: 18px;
    }

    .fc-likes__count {
        font-size: 14px;
    }

    .fc-rating__stars {
        gap: 0;
    }

    .fc-rating__star {
        padding: 2px;
    }

    .fc-rating__star svg {
        width: 16px;
        height: 16px;
    }

    .fc-rating__value {
        font-size: 14px;
    }

    .fc-rating__count {
        font-size: 11px;
    }
}

/* ========================================
   MOBILE: Доп. оптимизация (480px и ниже)
   ======================================== */
@media (max-width: 480px) {
    /* Общие контейнеры */
    .fc-page-wrapper {
        padding: 0 8px;
    }

    /* Хинт-бейдж */
    .fc-hint-badge {
        font-size: 13px;
        padding: 8px 12px;
        border-radius: 8px;
    }

    /* SEO блоки */
    .fc-seo-faq {
        padding: 16px 12px;
        border-radius: 14px;
    }

    .fc-seo-faq__title {
        font-size: 16px;
    }

    .fc-seo-faq__question {
        padding: 12px 14px;
        font-size: 13px;
    }

    .fc-seo-faq__answer p,
    .fc-seo-faq__answer li {
        font-size: 12px;
    }

    /* Social proof */
    .fc-social-proof {
        gap: 10px;
        padding: 10px 12px;
        border-radius: 12px;
    }

    .fc-likes__btn {
        padding: 6px 12px;
    }

    .fc-likes__icon {
        width: 16px;
        height: 16px;
    }

    .fc-likes__count {
        font-size: 13px;
    }

    .fc-rating__star svg {
        width: 14px;
        height: 14px;
    }

    .fc-rating__value {
        font-size: 13px;
    }

    .fc-rating__count {
        font-size: 10px;
    }

    /* Material info block */
    .fc-seo-material-note {
        padding: 14px 16px;
        font-size: 12px;
        line-height: 1.5;
    }
}

@media (max-width: 375px) {
    .fc-seo-intro {
        padding: 16px 12px;
    }

    .fc-seo-intro__title {
        font-size: 16px;
    }

    .fc-seo-intro__desc {
        font-size: 13px;
    }

    .fc-seo-badge {
        padding: 4px 7px;
        font-size: 9px;
    }

    .fc-seo-faq__question {
        padding: 10px 12px;
        font-size: 12px;
    }

    .fc-seo-material-block {
        padding: 20px 14px;
        border-radius: 14px;
    }

    .fc-seo-material-block h2 {
        font-size: 18px;
    }

    .fc-seo-feature {
        padding: 14px;
    }

    .fc-seo-feature-icon {
        font-size: 24px;
        width: 38px;
        height: 38px;
    }

    .fc-seo-feature strong {
        font-size: 13px;
    }

    .fc-seo-feature p {
        font-size: 11px;
    }
}

/* === Кнопка корзины: пульсация + риппл === */
@keyframes cart-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(254, 1, 245, 0.55); }
    70%  { box-shadow: 0 0 0 14px rgba(254, 1, 245, 0); }
    100% { box-shadow: 0 0 0 0 rgba(254, 1, 245, 0); }
}

.floor-calc__cart-btn .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.38);
    transform: scale(0);
    animation: ripple-anim 0.65s linear;
    pointer-events: none;
}

@keyframes ripple-anim {
    to { transform: scale(4); opacity: 0; }
}

/* === Social proof: badge + stat === */
.fc-sp-badge {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2px;
}
.fc-sp-badge--trophy {
    background: linear-gradient(135deg, #fff8e0, #ffeaa0);
    color: #e6ac00;
    box-shadow: 0 2px 10px rgba(255,193,7,0.3);
}
.fc-sp-badge--heart {
    background: linear-gradient(135deg, #ffe9ed, #ffd0d8);
    color: #e84393;
    box-shadow: 0 2px 10px rgba(232,67,147,0.25);
}
.fc-sp-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    text-align: center;
}
.fc-sp-stat__label {
    font-size: 11px;
    font-weight: 600;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 0.7px;
}

/* === Social proof v2: visual + info layout === */
.fc-sp-visual {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fc-sp-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    min-width: 0;
}
.fc-sp-sublabel {
    font-size: 11px;
    font-weight: 600;
    color: #bbb;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    margin-top: 2px;
}


/* ========================================
   MOBILE: Строка деталей + SEO фичи
   ======================================== */
@media (max-width: 768px) {
    .oc-seo-material-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .oc-detail-row {
        padding: 10px 10px;
    }
    .oc-detail-row__inputs {
        gap: 5px;
    }
    .oc-detail-row__field {
        min-width: 70px;
    }
    .oc-detail-row__field--qty {
        flex: 0.6;
        min-width: 60px;
    }
    .oc-detail-row__field input {
        padding: 8px 4px;
        font-size: 15px;
    }
    .oc-detail-row__unit {
        font-size: 12px;
    }
    .oc-detail-row__x,
    .oc-detail-row__dash {
        font-size: 12px;
        margin: 0 -1px;
    }
    .oc-detail-row__remove {
        width: 28px;
        height: 28px;
        font-size: 16px;
    }

    .oc-seo-feature {
        padding: 14px;
        gap: 12px;
    }
    .oc-seo-feature-icon {
        width: 40px;
        height: 40px;
        font-size: 24px;
        border-radius: 10px;
    }
    .oc-seo-feature strong {
        font-size: 14px;
    }
    .oc-seo-feature p {
        font-size: 13px;
    }

    .oc-seo-material-block {
        padding: 25px 20px;
    }
    .oc-seo-material-block h2 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .oc-seo-material-features {
        gap: 10px;
    }
    .oc-detail-row {
        padding: 8px 8px;
    }
    .oc-detail-row__inputs {
        gap: 4px;
    }
    .oc-detail-row__field {
        min-width: 55px;
    }
    .oc-detail-row__field--qty {
        min-width: 50px;
    }
    .oc-detail-row__field input {
        padding: 7px 2px;
        font-size: 14px;
    }
    .oc-detail-row__x,
    .oc-detail-row__dash {
        font-size: 11px;
        margin: 0 -2px;
    }
    .oc-detail-row__remove {
        width: 26px;
        height: 26px;
        font-size: 14px;
    }

    .oc-seo-feature {
        padding: 12px;
        gap: 10px;
    }
    .oc-seo-feature-icon {
        width: 36px;
        height: 36px;
        font-size: 20px;
    }
    .oc-seo-feature strong {
        font-size: 13px;
    }
    .oc-seo-feature p {
        font-size: 12px;
        line-height: 1.45;
    }

    .oc-seo-material-block {
        padding: 20px 14px;
        border-radius: 14px;
    }
    .oc-seo-material-block h2 {
        font-size: 18px;
    }
    .oc-seo-material-note {
        padding: 14px 16px;
        font-size: 12px;
        line-height: 1.5;
    }
}


/* ========================================
   MOBILE: Калькулятор + страница (768px)
   ======================================== */
@media (max-width: 768px) {
    .oc-page-wrapper { padding: 0 10px; }
    .oc-seo-breadcrumbs { margin: 10px 0 0 0; font-size: 12px; }
    .oc-seo-intro { padding: 18px 16px; border-radius: 16px; margin: 12px 0 16px 0; }
    .oc-seo-intro__title { font-size: 20px; }
    .oc-seo-intro__desc { font-size: 14px; }
    .oc-seo-intro__badges { gap: 6px; }
    .oc-seo-badge { padding: 5px 8px; font-size: 11px; }
    .osb-calculator { padding: 20px 16px; border-radius: 16px; margin: 12px 0 20px 0; }
    .osb-calculator__title { font-size: 20px; }
    .osb-calculator__subtitle { font-size: 13px; margin-bottom: 20px; }
    .osb-calculator__form { gap: 16px; }
    .osb-calculator__field label { font-size: 13px; }
    .osb-calculator__hint { font-size: 12px; }
    .osb-calculator__product-info { gap: 12px; padding: 14px; }
    .osb-calculator__product-image-wrap { width: 100%; max-width: 100%; height: auto; min-width: unset; }
    .osb-calculator__product-name { font-size: 15px; }
    .osb-calculator__product-desc { font-size: 12px; }
    .osb-calculator__thickness-buttons { gap: 6px; }
    .osb-calculator__thickness-btn { padding: 8px 12px; font-size: 13px; }
    .osb-calculator__button { padding: 14px 20px; font-size: 15px; border-radius: 12px; }
    .osb-calculator__add-detail { padding: 10px; font-size: 13px; }
    .osb-calculator__results--simple { padding: 16px; border-radius: 14px; }
    .osb-calculator__total-value { font-size: 28px; }
    .osb-calculator__total-label { font-size: 13px; }
    .osb-calculator__area-link { padding: 16px; border-radius: 14px; }
    .osb-calculator__area-link p { font-size: 13px; }
    .osb-calculator__area-btn { padding: 10px 18px; font-size: 13px; }
    .osb-calculator__delivery-warning { padding: 14px; border-radius: 12px; }
    .oc-seo-faq { padding: 18px 16px; border-radius: 16px; }
    .oc-seo-faq__title { font-size: 18px; margin-bottom: 16px; }
    .oc-seo-faq__question { padding: 12px 14px; font-size: 14px; }
    .oc-seo-faq__answer p { font-size: 13px; }
    .oc-seo-material-info { padding: 0 10px; margin: 30px auto 30px; }
    .oc-seo-material-block { padding: 25px 18px; border-radius: 18px; }
    .oc-seo-material-block h2 { font-size: 20px; }
    .oc-seo-material-lead { font-size: 14px; }
}

/* ========================================
   MOBILE: Калькулятор + страница (480px)
   ======================================== */
@media (max-width: 480px) {
    .oc-page-wrapper { padding: 0 6px; }
    .oc-seo-breadcrumbs { font-size: 11px; }
    .oc-seo-intro { padding: 14px 12px; border-radius: 14px; margin: 8px 0 12px 0; }
    .oc-seo-intro__title { font-size: 18px; }
    .oc-seo-intro__desc { font-size: 13px; }
    .oc-seo-badge { padding: 4px 6px; font-size: 10px; }
    .osb-calculator { padding: 16px 12px; border-radius: 14px; margin: 8px 0 16px 0; box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
    .osb-calculator__title { font-size: 18px; }
    .osb-calculator__subtitle { font-size: 12px; margin-bottom: 16px; }
    .osb-calculator__form { gap: 14px; }
    .osb-calculator__field label { font-size: 12px; }
    .osb-calculator__hint { font-size: 11px; }
    .osb-calculator__product-info { gap: 10px; padding: 12px; border-radius: 12px; }
    .osb-calculator__product-image-wrap { width: 100%; max-width: 100%; height: auto; min-width: unset; }
    .osb-calculator__product-name { font-size: 14px; }
    .osb-calculator__product-desc { font-size: 11px; }
    .osb-calculator__thickness-buttons { gap: 5px; }
    .osb-calculator__thickness-btn { padding: 7px 10px; font-size: 12px; border-radius: 8px; }
    .osb-calculator__button { padding: 12px 16px; font-size: 14px; border-radius: 10px; }
    .osb-calculator__add-detail { padding: 8px; font-size: 12px; }
    .osb-calculator__results--simple { padding: 14px; border-radius: 12px; }
    .osb-calculator__total-value { font-size: 24px; }
    .osb-calculator__total-label { font-size: 12px; }
    .osb-calculator__area-link { padding: 14px; border-radius: 12px; }
    .osb-calculator__area-link p { font-size: 12px; }
    .osb-calculator__area-btn { padding: 9px 14px; font-size: 12px; border-radius: 8px; }
    .osb-calculator__delivery-warning { padding: 12px; border-radius: 10px; }
    .oc-seo-faq { padding: 14px 12px; border-radius: 14px; }
    .oc-seo-faq__title { font-size: 16px; margin-bottom: 14px; }
    .oc-seo-faq__question { padding: 10px 12px; font-size: 13px; }
    .oc-seo-faq__answer p { font-size: 12px; }
    .oc-seo-material-info { padding: 0 6px; margin: 20px auto 24px; }
    .oc-seo-material-block { padding: 20px 14px; border-radius: 14px; }
    .oc-seo-material-block h2 { font-size: 18px; }
    .oc-seo-material-lead { font-size: 13px; }
    .oc-seo-material-note { padding: 12px 14px; font-size: 12px; }
}

/* ========================================
   MOBILE: Extra small (375px)
   ======================================== */
@media (max-width: 375px) {
    .oc-page-wrapper { padding: 0 4px; }
    .osb-calculator { padding: 14px 10px; }
    .osb-calculator__title { font-size: 16px; }
    .osb-calculator__subtitle { font-size: 11px; }
    .oc-seo-intro__title { font-size: 16px; }
    .oc-seo-intro__desc { font-size: 12px; }
    .oc-seo-badge { padding: 3px 5px; font-size: 9px; }
}

/* === Social proof: width matches fc-hero + centering on desktop === */
.fc-social-proof {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}
@media (min-width: 769px) {
    .fc-sp-card {
        justify-content: center;
    }
    .fc-sp-info {
        align-items: center;
        text-align: center;
    }
    .fc-sp-card__hint,
    .fc-likes__count,
    .fc-sp-sublabel,
    .fc-rating__value,
    .fc-rating__count {
        text-align: center;
    }
}

/* === Hide old/orphaned social proof elements === */
.fc-rating,
.fc-likes,
.mc-rating,
.mc-likes,
.oc-rating,
.oc-likes { display: none !important; }
/* Hide orphaned fc-sp-info outside fc-social-proof */
.fc-sp-info:not(.fc-sp-card .fc-sp-info) { display: none !important; }

/* === CSS aliases for component-specific floating animation classes === */
.oc-calc-heart {
    position: absolute;
    animation: fcFloatHeart 2.5s ease-out forwards;
    font-size: 22px;
    opacity: 0;
}
.oc-calc-star {
    position: absolute;
    animation: fcFloatStar 2.2s ease-out forwards;
    font-size: 20px;
    opacity: 0;
}

/* === CSS alias for oc-floating-stars container === */
.oc-floating-stars {
    position: fixed;
    bottom: 50%;
    left: 50%;
    pointer-events: none;
    z-index: 9999;
}

/* === Риппл на кнопке корзины (при клике) === */
.osb-calculator__button--cart .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.38);
    transform: scale(0);
    animation: ripple-anim 0.65s linear;
    pointer-events: none;
}

/* End */
/* /local/components/custom/osb.calculator/templates/.default/style.css?177229256246732 */
