/* ============================================================
   Special Offer template styles
   Scoped to .single-special_offer body class (added by WordPress)
   ============================================================ */

.single-special_offer body {
    min-width: 1440px;
}

/* ============================================================
   HERO  (600px tall)
   ============================================================ */
.single-special_offer .hero {
    position: relative;
    width: 1440px;
    height: 600px;
    overflow: hidden;
    margin-top: -100px;
}

.single-special_offer .hero__bg {
    position: absolute;
    left: 0; top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.single-special_offer .header {
    position: absolute;
    top: 50px;
    left: 140px;
    right: 140px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}
.single-special_offer .header__logo-link { display: inline-flex; }
.single-special_offer .header__logo  { width: 152px; height: 50px; object-fit: contain; }
.single-special_offer .header__burger { width: 24px;  height: 18px; }

.single-special_offer .hero__text {
    position: absolute;
    left: 140px;
    top: 275px;
}
.single-special_offer .hero__title {
    font-size: 50px;
    font-weight: 600;
    line-height: 1;
    color: #fff;
}
.single-special_offer .hero__price {
    font-size: 50px;
    font-weight: 600;
    line-height: 1;
    color: #fff;
    margin-top: 10px;
}

.single-special_offer .hero__band {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 1440px;
    height: 60px;
    background: #030303;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.single-special_offer .hero__marquee {
    display: inline-block;
    white-space: nowrap;
    font-size: 30px;
    font-weight: 600;
    color: #fff;
    animation: so-marquee 25s linear infinite;
}
@keyframes so-marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================================
   CONTENT SECTION — flex two-column layout
   ============================================================ */
.single-special_offer .content {
    display: flex;
    padding: 81px 117px 80px 140px;
    gap: 126px;
    align-items: flex-start;
    width: 1440px;
    background: #fff;
    height: auto;
}

.single-special_offer .content__left {
    width: 514px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

.single-special_offer .content__right {
    width: 543px;
    flex-shrink: 0;
}

/* Reset absolute positioning set in profit_spec/style.css */
.single-special_offer .content__heading,
.single-special_offer .content__spec,
.single-special_offer .content__price-tag,
.single-special_offer .content__guarantee,
.single-special_offer .content__delivery,
.single-special_offer .contact-block {
    position: static;
    left: auto;
    top: auto;
    width: auto;
}

/* Left column element styles */
.single-special_offer .content__heading {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.2;
    color: #00862C;
}

.single-special_offer .content__spec {
    margin-top: 43px;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.43;
    color: #575856;
}

.single-special_offer .content__price-tag {
    margin-top: 30px;
    font-size: 40px;
    font-weight: 600;
    line-height: 1.25;
    color: #00862C;
}

.single-special_offer .content__guarantee {
    margin-top: 2px;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.43;
    color: #00862C;
}

.single-special_offer .content__delivery {
    margin-top: 5px;
    font-size: 14px;
    font-weight: 400;
    color: #000;
    line-height: 20px;
}

/* ============================================================
   CONTACT BLOCK
   ============================================================ */
.single-special_offer .contact-block {
    margin-top: 50px;
    width: 589px;
    height: 133px;
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.single-special_offer .contact-block__badge {
    flex-shrink: 0;
    width: 133px;
    height: 133px;
}

.single-special_offer .contact-block__info {
    padding-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.single-special_offer .contact-block__text {
    font-size: 14px;
    font-weight: 400;
    color: #575856;
    line-height: 20px;
}

.single-special_offer .contact-block__phone {
    font-size: 16px;
    font-weight: 600;
    color: #575856;
    line-height: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
    display: block;
    text-decoration: none;
}
.single-special_offer .contact-block__phone:hover { color: #00862C; }

.single-special_offer .contact-block__buttons {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 2px;
}

.single-special_offer .btn-chat {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 24px;
    padding: 0 8px;
    /* border: 1px solid #000; */
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #000;
    line-height: 24px;
    cursor: pointer;
    text-decoration: none;
    transition: background .15s;
}
.single-special_offer .btn-chat:hover { background: #f0f0f0; }
.single-special_offer .btn-chat img { width: 20px; height: 20px; object-fit: contain; }

/* Right column */
.single-special_offer .content__desc {
    font-size: 14px;
    font-weight: 400;
    color: #000;
    line-height: 20px;
}
.single-special_offer .content__desc p { margin-bottom: 14px; }
.single-special_offer .content__desc p:last-of-type { margin-bottom: 0; }
.single-special_offer .content__desc ul {
    padding-left: 18px;
    margin-top: 6px;
    margin-bottom: 10px;
}
.single-special_offer .content__desc li { margin-bottom: 4px; }

.single-special_offer .btn-more {
    display: block;
    width: 200px;
    height: 40px;
    background: #000;
    color: #fff;
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 40px;
    text-align: center;
    margin-top: 55px;
    cursor: pointer;
    text-decoration: none;
    transition: background .15s;
    border-radius: 20px;
}
.single-special_offer .btn-more:hover { background: #222; }


