.hero-section {
    position: relative;
    overflow: hidden;
    /* rounded corners like the screenshot */
    margin: 0 20px;
    border-radius: 10px;
}

.hero-slide {
    position: relative;
    min-height: 600px;
    display: flex !important;
    align-items: center;
    overflow: hidden;
}


.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    z-index: 0;
}

.slide-1::before {
    background: url(../images/1.jpg) no-repeat;
    background-size: cover;
}

.slide-2::before {
    background: url(../images/2.jpg) no-repeat;
    background-size: cover;
}

.slide-3::before {
    background: url(../images/3.jpg) no-repeat;
    background-size: cover;
}

.slide-4::before {
    background: url(../images/4.jpg) no-repeat;
    background-size: cover;
}


.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient( to right, rgba(0,0,0,.25) 0%, rgba(0,0,0,.10) 45%, transparent 70% );
    z-index: 1;
}


.hero-person {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 60%;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    pointer-events: none;
}

.hero-person-circle {
    width: 100%;
    height: 100%;
    border-radius: 50% 0 0 50%;
    opacity: .18;
    background: rgba(255,255,255,.3);
}


.hero-content {
    position: relative;
    z-index: 3;
    padding: 60px 60px;
    max-width: 550px;
}

.hero-content h1 {
    font-size: clamp(32px, 4.5vw, 54px);
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 18px;
    text-shadow: 0 2px 12px rgba(0,0,0,.18);
}

.hero-content p {
    font-size: clamp(14px, 1.6vw, 16px);
    color: rgba(255,255,255,.92);
    line-height: 1.65;
    margin-bottom: 28px;
    max-width: 400px;
    text-shadow: 0 1px 6px rgba(0,0,0,.12);
}


.btn-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--jv-orange);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 14px 28px;
    border-radius: 40px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background .15s, transform .1s;
    box-shadow: 0 4px 16px rgba(240,146,42,.35);
}

.btn-hero-cta:hover {
    background: #d97d1a;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(240,146,42,.45);
}

.btn-hero-cta i {
    font-size: 14px;
}


.hero-rating {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: 24px;
}

.hero-rating .stars-row {
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-rating .score {
    font-size: 16px;
    font-weight: 700;
    color: var(--jv-teal);
}

.hero-rating .stars {
    display: flex;
    gap: 2px;
}

.hero-rating .stars i {
    font-size: 14px;
    color: var(--jv-teal);
}

.hero-rating .verified {
    font-size: 13px;
    color: rgba(255,255,255,.85);
    font-weight: 500;
}


.hero-section .owl-nav {
    position: absolute;
    bottom: 24px;
    right: 24px;
    display: flex;
    gap: 8px;
    z-index: 10;
    margin: 0;
}

.hero-section .owl-nav button {
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    background: rgba(255,255,255,.85) !important;
    border: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: var(--jv-dark) !important;
    font-size: 0 !important;
    transition: background .15s, transform .1s !important;
    box-shadow: 0 2px 8px rgba(0,0,0,.15) !important;
}

.hero-section .owl-nav button:hover {
    background: #fff !important;
    transform: scale(1.08) !important;
}

/* Custom arrow icons via pseudo-elements */
.hero-section .owl-prev::after {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    border-left: 2px solid var(--jv-dark);
    border-bottom: 2px solid var(--jv-dark);
    transform: rotate(45deg) translate(2px,-2px);
}

.hero-section .owl-next::after {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--jv-dark);
    border-top: 2px solid var(--jv-dark);
    transform: rotate(45deg) translate(-2px,2px);
}

/* Hide dots */
.hero-section .owl-dots {
    display: none;
}


@media (max-width: 991px) {
    .jv-nav-links {
        display: none;
    }

    .jv-hamburger {
        display: block;
    }

    .hero-section {
        margin: 0 12px;
    }

    .hero-slide {
        min-height: 380px;
    }

    .hero-content {
        padding: 44px 36px;
    }
}

@media (max-width: 767px) {
    .hero-section {
        margin: 0 8px;
        border-radius: 12px;
    }

    .hero-slide {
        min-height: 300px;
    }

    .hero-content {
        padding: 32px 24px;
        max-width: 90%;
    }

    .hero-content h1 {
        font-size: 26px;
    }

    .hero-content p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .btn-hero-cta {
        font-size: 12px;
        padding: 11px 22px;
    }

    .hero-section .owl-nav {
        bottom: 14px;
        right: 14px;
    }

    .hero-section .owl-nav button {
        width: 34px !important;
        height: 34px !important;
    }
}

@media (max-width: 480px) {
    .jv-nav-actions .nav-icon-btn span {
        display: none;
    }

    .hero-slide {
        min-height: 320px;
    }

    .hero-content h1 {
        font-size: 22px;
    }
}


.press-bar {
    padding: 20px 0px;
    margin: auto;
}

.press-bar-inner {
    max-width: 1320px;
    margin: 0 auto;
    background: #f4f4f2;
    border-radius: 12px;
    padding: 22px 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(28px, 6vw, 90px);
    flex-wrap: wrap;
}

.press-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 0.42;
    filter: grayscale(1);
    transition: opacity .2s, filter .2s;
    user-select: none;
    cursor: default;
}

.press-logo:hover {
    opacity: 0.65;
    filter: grayscale(0.4);
}

.press-muscle {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

.press-muscle .amp-fitness {
    font-size: 11px;
    font-weight: 900;
    font-style: italic;
    letter-spacing: 0.4px;
    color: #333;
    line-height: 1;
    text-transform: uppercase;
}

.press-muscle .amp-fitness .amp {
    font-size: 13px;
}

.press-muscle .muscle-word {
    font-size: 23px;
    font-weight: 900;
    font-style: italic;
    letter-spacing: -0.5px;
    color: #222;
    line-height: 1;
    text-transform: uppercase;
}

.press-mens {
    font-size: 23px;
    font-weight: 800;
    color: #222;
    letter-spacing: -0.5px;
    font-family: Georgia, 'Times New Roman', serif;
    white-space: nowrap;
}

.press-mens em {
    font-style: italic;
    font-weight: 400;
}

.press-mbg {
    font-size: 21px;
    font-weight: 300;
    color: #444;
    letter-spacing: -0.2px;
    font-family: 'Segoe UI', system-ui, sans-serif;
    white-space: nowrap;
}

.press-rd {
    flex-direction: column;
    align-items: center;
    gap: 1px;
}

.press-rd .rd-top {
    font-size: 25px;
    font-weight: 700;
    font-style: italic;
    color: #222;
    font-family: Georgia, serif;
    line-height: 1;
    white-space: nowrap;
}

.press-rd .rd-bottom {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #555;
    text-transform: lowercase;
    line-height: 1.2;
    align-self: flex-end;
}

@media (max-width: 767px) {
    .press-bar-inner {
        gap: 24px;
        padding: 18px 28px;
        border-radius: 10px;
    }

    .press-mens {
        font-size: 17px;
    }

    .press-mbg {
        font-size: 16px;
    }

    .press-rd .rd-top {
        font-size: 19px;
    }

    .press-muscle .muscle-word {
        font-size: 18px;
    }

    .press-muscle .amp-fitness {
        font-size: 9px;
    }
}

@media (max-width: 480px) {
    .press-bar {
        padding: 14px 10px;
    }

    .press-bar-inner {
        gap: 18px;
        padding: 16px 20px;
    }

    .press-mens {
        font-size: 14px;
    }

    .press-mbg {
        font-size: 13px;
    }

    .press-rd .rd-top {
        font-size: 16px;
    }

    .press-rd .rd-bottom {
        font-size: 9px;
        letter-spacing: 1.5px;
    }

    .press-muscle .muscle-word {
        font-size: 15px;
    }
}


.ysgit-section {
    padding: 80px 0px 56px;
    max-width: 1360px;
    margin: 0 auto;
}

.ysgit-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.ysgit-head-left h2 {
    font-size: clamp(26px, 3.5vw, 44px);
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.1;
    margin-bottom: 6px;
}

.ysgit-head-left .hashtag {
    font-size: 14px;
    color: #888;
    font-weight: 400;
}

.ysgit-head-right {
    max-width: 400px;
    font-size: 14px;
    color: #555;
    line-height: 1.65;
    padding-top: 4px;
}

/* Grid */
.ysgit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 12px;
}

/* Tile */
.ysgit-tile {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    min-height: 240px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 28px;
    text-decoration: none;
}

.ysgit-tile-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.45s cubic-bezier(.25,.46,.45,.94);
    z-index: 0;
}

.ysgit-tile:hover .ysgit-tile-bg {
    transform: scale(1.05);
}

/* Dark vignette at bottom for readability */
.ysgit-tile-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to top, rgba(0,0,0,.45) 0%, rgba(0,0,0,.15) 40%, transparent 70% );
    z-index: 1;
    transition: background 0.35s ease;
}

.ysgit-tile:hover .ysgit-tile-overlay {
    background: linear-gradient( to top, rgba(0,0,0,.55) 0%, rgba(0,0,0,.22) 45%, transparent 75% );
}

/* Pill CTA label */
.ysgit-label {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.22);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1.5px solid rgba(255,255,255,.55);
    border-radius: 40px;
    padding: 11px 22px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.1px;
    transition: background 0.25s, border-color 0.25s, transform 0.25s;
    white-space: nowrap;
}

.ysgit-label .arrow {
    font-size: 15px;
    transition: transform 0.25s;
}

.ysgit-tile:hover .ysgit-label {
    background: rgba(255,255,255,.32);
    border-color: rgba(255,255,255,.85);
    transform: translateY(-2px);
}

.ysgit-tile:hover .ysgit-label .arrow {
    transform: translateX(4px);
}

/* Individual tile background colours */
.tile-bp .ysgit-tile-bg {
    background: linear-gradient(135deg,#b8d4e8 0%,#7ab0d0 30%,#4a8aaf 60%,#2a607a 100%);
}

.tile-circ .ysgit-tile-bg {
    background: linear-gradient(135deg,#a8d8e8 0%,#68c0d8 30%,#28a0c0 60%,#0a7090 100%);
}

.tile-mens .ysgit-tile-bg {
    background: linear-gradient(135deg,#c0d8e8 0%,#80b0d0 30%,#4090b8 60%,#206090 100%);
}

.tile-engy .ysgit-tile-bg {
    background: linear-gradient(135deg,#d8e8f0 0%,#a0c8e0 30%,#60a8c8 60%,#2080a0 100%);
}

/* Glowing figure silhouette effect on tiles */
.tile-bp .ysgit-tile-bg::after, .tile-circ .ysgit-tile-bg::after, .tile-mens .ysgit-tile-bg::after, .tile-engy .ysgit-tile-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 55% 60%, rgba(41,184,200,.35) 0%, transparent 65%);
}

@media (max-width: 767px) {
    .ysgit-grid {
        grid-template-columns: 1fr;
    }

    .ysgit-tile {
        min-height: 200px;
    }

    .ysgit-head-right {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .ysgit-section {
        padding: 32px 12px 40px;
    }

    .ysgit-tile {
        min-height: 170px;
    }

    .ysgit-label {
        font-size: 13px;
        padding: 9px 18px;
    }
}

.bestsellers-section {
    padding: 48px 0px 60px;
    max-width: 1360px;
    margin: 40px 0px;
}

.bestsellers-section h2 {
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 32px;
}

.bs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

/* Card */
.bs-card {
    background: #fff;
    border: 1px solid #f5f5f5;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.25s, transform 0.25s;
}

.bs-card:hover {
    box-shadow: 0 12px 36px rgba(0,0,0,.10);
    transform: translateY(-4px);
}

/* Image area */
.bs-card-img {
    position: relative;
     background: #f7f7f5;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 2px;
}

/* Pill product mockup */
.bs-pill-wrap {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: -8px;
    height: 100%;
    width: 100%;
}

.bs-bottle {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bs-bottle-cap {
    width: 48px;
    height: 18px;
    border-radius: 6px 6px 0 0;
    margin-bottom: -2px;
}

.bs-bottle-body {
    width: 64px;
    height: 110px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px 6px;
    position: relative;
}

.bs-bottle-label {
    font-size: 7px;
    font-weight: 800;
    text-align: center;
    line-height: 1.2;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.bs-bottle-sub {
    font-size: 5.5px;
    color: rgba(255,255,255,.75);
    text-align: center;
    margin-top: 2px;
    line-height: 1.3;
}

.bs-bottle-logo {
    font-size: 6px;
    font-weight: 900;
    color: rgba(255,255,255,.9);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

/* second smaller bottle behind */
.bs-bottle-2 {
    position: absolute;
    left: 12px;
    bottom: 0;
    z-index: 0;
}

.bs-bottle-2 .bs-bottle-cap {
    width: 38px;
    height: 14px;
}

.bs-bottle-2 .bs-bottle-body {
    width: 52px;
    height: 88px;
}

.bs-bottle-main {
    z-index: 1;
}

/* Body */
.bs-card-body {
    padding: 16px 16px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
    background: #f5f5f5;
}

.bs-stars {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.bs-stars .s-icons {
    color: #f5a623;
    font-size: 12px;
    letter-spacing: 1px;
}

.bs-stars .s-count {
    font-size: 12px;
    color: #666;
}

.bs-card-body h5 {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 6px;
    line-height: 1.3;
}

.bs-card-body p {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 2px;
    flex: 1;
}

.bs-price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 14px;
}

.bs-price-now {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

.bs-price-was {
    font-size: 14px;
    color: #aaa;
    text-decoration: line-through;
}

.bs-btn-cart {
    width: 100%;
    background: #f0922a;
    color: #fff;
    border: none;
    border-radius: 40px;
    padding: 5px 16px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.18s, transform 0.12s;
}

.bs-btn-cart:hover {
    background: #d97d1a;
    transform: translateY(-1px);
}

.bs-btn-cart:active {
    transform: scale(0.98);
}

/* Shop All button */
.bs-shop-all-wrap {
    text-align: center;
    margin-top: 36px;
}

.bs-btn-showall {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid #1a1a1a;
    background: #fff;
    color: #1a1a1a;
    border-radius: 40px;
    padding: 13px 40px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.18s, color 0.18s;
}

.bs-btn-showall:hover {
    background: #1a1a1a;
    color: #fff;
}

@media (max-width: 991px) {
    .bs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .bs-grid {
        grid-template-columns: 1fr;
    }

    .bestsellers-section {
        padding: 32px 12px 40px;
    }
}


.quiz-banner {
    position: relative;
    background: #0e8a8a;
    border-radius: 18px;
    overflow: visible;
    /* let the image overflow upward */
    width: 100%;
    min-height: 160px;
    display: flex;
    align-items: center;
}

/* subtle inner glow */
.quiz-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 18px;
    background: radial-gradient(ellipse at 30% 50%, rgba(255,255,255,.08) 0%, transparent 70%);
    pointer-events: none;
}


.banner-person {
    flex-shrink: 0;
    width: 45%;
    position: relative;
    align-self: flex-end;
    /* sits on the bottom edge */
    margin-left: 24px;
}

.banner-person img {
    display: block;
    width: 100%;
    /* lift the image so it peeks above the card */
    object-fit: contain;
    object-position: bottom;
    /* remove any white background from the PNG */
    mix-blend-mode: normal;
}


.banner-content {
    flex: 1;
    padding: 2.2rem 2.4rem 2.2rem 2rem;
    color: #ffffff;
}

.banner-content h2 {
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    font-weight: 800;
    letter-spacing: -.3px;
    line-height: 1.2;
    margin-bottom: .65rem;
    color: #fff;
}

.banner-content p {
    font-size: clamp(.82rem, 1.8vw, .95rem);
    font-weight: 400;
    line-height: 1.55;
    color: rgba(255,255,255,.88);
    max-width: 400px;
    margin-bottom: 1.4rem;
}

.banner-content p strong {
    font-weight: 700;
    color: #ffffff;
}

.btn-quiz {
    display: inline-block;
    background: #f59e0b;
    color: #ffffff;
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: .85rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-align: center;
    padding: .75rem 2.4rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    line-height: 1.35;
    transition: background .2s ease, transform .15s ease, box-shadow .2s ease;
    box-shadow: 0 4px 16px rgba(245,158,11,.45);
}

.btn-quiz:hover {
    background: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(245,158,11,.55);
    color: #fff;
}

.btn-quiz:active {
    transform: translateY(0);
}

@media (max-width: 600px) {
    .quiz-banner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding-top: 0;
    }

    .banner-person {
        width: 140px;
        margin-left: 0;
        align-self: center;
        margin-bottom: -6px;
        order: -1;
    }

    .banner-content {
        padding: 1.5rem 1.4rem 1.8rem;
    }

    .banner-content p {
        margin-left: auto;
        margin-right: auto;
    }
}

.subscribe-section {
    background: #fafbfb;
    padding: 64px 24px 72px;
    text-align: center;
    margin-top: 100px;
}

.subscribe-section .eyebrow {
    font-size: .85rem;
    font-weight: 600;
    color: #555;
    letter-spacing: .04em;
    margin-bottom: .5rem;
}

.subscribe-section h2 {
    font-size: clamp(1.6rem, 4vw, 2.15rem);
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: -.3px;
    margin-bottom: 2.6rem;
}

.feature-card {
    background: #d6ebeb;
    border-radius: 16px;
    padding: 2rem 1.4rem 1.8rem;
    height: 100%;
    transition: transform .2s ease, box-shadow .2s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,.08);
}

.feature-card .icon-wrap {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card .icon-wrap svg {
    width: 48px;
    height: 48px;
    stroke: #f59e0b;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.feature-card h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: .6rem;
}

.feature-card p {
    font-size: .85rem;
    font-weight: 400;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.btn-shop {
    display: inline-block;
    background: #f59e0b;
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: .82rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: .85rem 3rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    margin-top: 2.8rem;
    transition: background .2s ease, transform .15s ease, box-shadow .2s ease;
    box-shadow: 0 4px 18px rgba(245,158,11,.4);
}

.btn-shop:hover {
    background: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245,158,11,.5);
    color: #fff;
}

.btn-shop:active {
    transform: translateY(0);
}

.guarantee-section {
    background: #ffffff;
    padding: 64px 24px;
}


.guarantee-text .eyebrow {
    font-size: .82rem;
    font-weight: 600;
    color: #888;
    letter-spacing: .04em;
    margin-bottom: .45rem;
}

.guarantee-text h2 {
    font-size: clamp(1.9rem, 4vw, 2.6rem);
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: -.4px;
    line-height: 1.15;
    margin-bottom: .9rem;
}

.guarantee-text h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: .9rem;
}

.guarantee-text p {
    font-size: .92rem;
    font-weight: 400;
    color: #555;
    line-height: 1.75;
    max-width: 520px;
}

.guarantee-image-wrap {
    position: relative;
    display: inline-block;
    width: 100%;
}

.guarantee-image-wrap img.main-img {
    width: 100%;
    border-radius: 14px;
    display: block;
    object-fit: cover;
    aspect-ratio: 16 / 10;
}


.guarantee-badge {
    position: absolute;
    top: -20px;
    right: -16px;
    width: 90px;
    height: 90px;
}

.guarantee-badge svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,.25));
}

@media (max-width: 767px) {
    .guarantee-text p {
        max-width: 100%;
    }

    .guarantee-badge {
        width: 70px;
        height: 70px;
        top: -14px;
        right: -10px;
    }
}



