/* <!-- ================================================
     SAMTA HEALTH BANNER — WordPress Custom HTML Block
     Paste this entire code into a Custom HTML block
================================================ --> */


@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&display=swap');

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

:root {
    --brand: #A6371E;
    --brand-light: #C94F33;
    --brand-pale: #FDF1EE;
    --brand-mid: #E8C5BB
}

.sw {
    font-family: 'Plus Jakarta Sans', sans-serif;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 24px rgba(166, 55, 30, 0.09)
}

/* SLIDER */
.ss {
    position: relative;
    width: 100%;
    min-height: 320px;
    overflow: hidden
}

.sl {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .85s ease;
    display: flex;
    align-items: stretch;
    min-height: 320px
}

.sl.active {
    opacity: 1;
    z-index: 2
}

/* BACKGROUND */
.sbg {
    position: absolute;
    inset: 0;
    background: #fff;
    overflow: hidden
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(52px);
    opacity: .16
}

.b1 {
    width: 260px;
    height: 260px;
    background: var(--brand);
    top: -70px;
    right: -50px
}

.b2 {
    width: 160px;
    height: 160px;
    background: #F97316;
    bottom: -40px;
    right: 110px
}

.b3 {
    width: 100px;
    height: 100px;
    background: var(--brand);
    bottom: 10px;
    left: 38%;
    opacity: .09
}

.sgrid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(166, 55, 30, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(166, 55, 30, .04) 1px, transparent 1px);
    background-size: 36px 36px
}

.bub {
    position: absolute;
    border-radius: 50%;
    border: 1.5px solid rgba(166, 55, 30, .1);
    background: rgba(166, 55, 30, .03);
    animation: bf 12s ease-in-out infinite
}

.bb1 {
    width: 80px;
    height: 80px;
    top: 8%;
    left: 1%;
    animation-delay: 0s
}

.bb2 {
    width: 48px;
    height: 48px;
    top: 62%;
    left: 7%;
    animation-delay: -4s
}

.bb3 {
    width: 36px;
    height: 36px;
    top: 18%;
    right: 26%;
    animation-delay: -7s
}

.bb4 {
    width: 60px;
    height: 60px;
    bottom: 4%;
    right: 20%;
    animation-delay: -2s
}

@keyframes bf {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-14px)
    }
}

/* INNER LAYOUT */
.si {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 32px 40px 28px;
    gap: 20px
}

.st {
    flex: 1;
    min-width: 0
}

/* BADGE */
.stag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--brand-pale);
    border: 1px solid var(--brand-mid);
    color: var(--brand);
    padding: 4px 13px;
    border-radius: 40px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px
}

.tdot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--brand);
    animation: td 1.3s ease-in-out infinite
}

@keyframes td {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .2
    }
}

/* TEXT */
.spre {
    font-size: 12px;
    color: #888;
    font-weight: 500;
    margin-bottom: 5px
}

.stitle {
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 900;
    color: #1a1a1a;
    line-height: 1.15;
    margin-bottom: 9px
}

.stitle span {
    color: var(--brand)
}

/* PRICE ROW */
.spr {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    flex-wrap: wrap
}

.sprice {
    background: var(--brand);
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    padding: 6px 18px;
    border-radius: 8px
}

.sold {
    color: #bbb;
    font-size: 13px;
    font-weight: 600;
    text-decoration: line-through
}

.ssave {
    background: #FEF3C7;
    color: #92400E;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 6px
}

.sparams {
    background: #EEF7EE;
    color: #2D6A2D;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 6px;
    border: 1px solid #C3E0C3
}

/* PILLS */
.spills {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 18px
}

.spill {
    display: flex;
    align-items: center;
    gap: 4px;
    background: #F9F9F9;
    border: 1px solid #EBEBEB;
    color: #444;
    font-size: 11px;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 18px
}

.spill-i {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--brand-pale);
    border: 1px solid var(--brand-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 7px;
    color: var(--brand);
    font-weight: 800
}

/* BUTTONS */
.sbtns {
    display: flex;
    gap: 9px;
    flex-wrap: wrap
}

.sbtn {
    padding: 10px 22px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    border: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    transition: all .25s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px
}

.sbtn-m {
    background: var(--brand);
    color: #fff
}

.sbtn-m:hover {
    background: var(--brand-light);
    transform: translateY(-2px)
}

.sbtn-o {
    background: #fff;
    color: var(--brand);
    border: 1.5px solid var(--brand-mid)
}

.sbtn-o:hover {
    background: var(--brand-pale)
}

/* RIGHT VISUAL CARD */
.sv {
    flex-shrink: 0;
    width: 175px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px
}

.scard {
    width: 150px;
    height: 125px;
    background: var(--brand-pale);
    border: 1px solid var(--brand-mid);
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    position: relative;
    overflow: hidden
}

.scard::before {
    content: '';
    position: absolute;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(166, 55, 30, .07);
    top: -25px;
    right: -25px
}

.semoji {
    font-size: 46px;
    animation: ef 2.8s ease-in-out infinite
}

@keyframes ef {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-6px)
    }
}

.slabel {
    font-size: 9px;
    font-weight: 700;
    color: var(--brand);
    letter-spacing: .5px;
    text-transform: uppercase
}

/* STAT CARDS */
.sstats {
    display: flex;
    gap: 7px;
    width: 100%
}

.sstat {
    flex: 1;
    background: #fff;
    border: 1px solid #EBEBEB;
    border-radius: 9px;
    padding: 8px 4px;
    text-align: center
}

.sn {
    font-size: 15px;
    font-weight: 800;
    color: var(--brand);
    line-height: 1
}

.sl2 {
    font-size: 8px;
    color: #888;
    font-weight: 600;
    margin-top: 2px;
    letter-spacing: .3px
}

/* NAV ARROWS */
.snav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #E5E5E5;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .07);
    color: #555;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s
}

.snav:hover {
    border-color: var(--brand);
    color: var(--brand)
}

.snav.prev {
    left: 10px
}

.snav.next {
    right: 10px
}

/* BOTTOM DOTS + PROGRESS */
.sbot {
    border-top: 1px solid #F2F2F2;
    padding: 9px 40px;
    background: #FAFAFA;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.sdots {
    display: flex;
    gap: 7px;
    align-items: center
}

.sdot {
    width: 6px;
    height: 6px;
    border-radius: 20px;
    background: #DDD;
    cursor: pointer;
    transition: all .3s
}

.sdot.active {
    width: 22px;
    background: var(--brand)
}

.sprog {
    flex: 1;
    height: 3px;
    background: #EBEBEB;
    border-radius: 3px;
    margin: 0 14px;
    overflow: hidden
}

.sbar {
    height: 100%;
    background: var(--brand);
    border-radius: 3px;
    width: 0%;
    transition: width 5s linear
}

.sctr {
    font-size: 11px;
    color: #AAA;
    font-weight: 600
}

/* HIGHLIGHTS STRIP */
.shigh {
    padding: 14px 40px;
    background: var(--brand-pale);
    border-top: 1px solid var(--brand-mid)
}

.shigh-title {
    font-size: 10px;
    font-weight: 700;
    color: var(--brand);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px
}

.shigh-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 6px
}

.stag2 {
    background: #fff;
    border: 1px solid var(--brand-mid);
    color: #555;
    font-size: 10px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 4px
}

.stag2 b {
    color: var(--brand)
}

/* TRUST STRIP */
.strust {
    display: flex;
    align-items: center;
    background: #fff;
    border-top: 1px solid #F2F2F2;
    overflow-x: auto
}

.ti {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 10px 18px;
    white-space: nowrap;
    font-size: 11px;
    color: #555;
    font-weight: 600;
    flex-shrink: 0;
    border-right: 1px solid #F0F0F0
}

.ti:last-child {
    border-right: none
}

.tico {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--brand-pale);
    border: 1px solid var(--brand-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0
}

/* MOBILE RESPONSIVE */
@media(max-width:600px) {
    .si {
        flex-direction: column;
        padding: 24px 18px 20px;
        gap: 16px;
        align-items: flex-start
    }

    .sv {
        width: 100%;
        flex-direction: row;
        gap: 10px
    }

    .scard {
        width: 110px;
        height: 90px;
        flex-shrink: 0
    }

    .semoji {
        font-size: 32px
    }

    .sstats {
        flex: 1
    }

    .sstat {
        padding: 7px 3px
    }

    .sn {
        font-size: 13px 
    }

    .stitle {
        font-size: 22px
    }

    .sbot,
    .shigh {
        padding-left: 18px;
        padding-right: 18px
    }

    .snav {
        display: none
    }

    .shigh {
        padding: 12px 18px
    }

    .ti {
        padding: 8px 12px;
        font-size: 10px
    }
}