/** Shopify CDN: Minification failed

Line 2173:15 Expected identifier but found whitespace
Line 2173:16 Unexpected "0"

**/
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --green-primary: #89152c;
    --green-light: #88152c;
    --green-vivid: #1e241e;
    --green-pale: #e8f5e9;
    --yellow-cream: #fdf6e3;
    --yellow-badge: #f5c518;
    --text-dark: #1a1a1a;
    --text-muted: #555;
    --white: #ffffff;
    --black: #000000;
    --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.1);
    --shadow-btn: 0 4px 18px rgba(45, 122, 58, 0.35);
}

body {
    font-family:
        "Work Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    background: #ffffff;
    min-height: 100vh;
    /* display: flex; */
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    overflow-x: hidden;
}

html {
    overflow-x: hidden;
}

/* ── ANNOUNCEMENT BAR ── */
.announcement-bar {
    width: 100%;
    margin-bottom: 24px;
    background-color: var(--green-primary);
    color: var(--white);
    text-align: center;
    padding: 12px 20px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ── HERO WRAPPER ── */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1440px;
    width: 100%;
    overflow: unset;
    min-height: 620px;
    justify-self: center;
}

/* ════════════════════════════════
       LEFT SECTION
    ════════════════════════════════ */
.hero-left {
    background: var(--white);
    padding: 52px 52px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

/* Social proof bar */
.social-proof {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.social-proof-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
}

.avatars {
    display: flex;
}

.avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid var(--white);
    object-fit: cover;
    margin-left: -8px;
    background: linear-gradient(135deg, #a8d5b5, #5cb870);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    overflow: hidden;
}

.avatar:first-child {
    margin-left: 0;
}

.avatar-img-1 {
    background: linear-gradient(135deg, #f8c8a0, #e8956d);
}

.avatar-img-2 {
    background: linear-gradient(135deg, #a0c8f8, #6d95e8);
}

.avatar-img-3 {
    background: linear-gradient(135deg, #c8a0f8, #956de8);
}

.stars {
    display: flex;
    align-items: center;
    gap: 2px;
    color: var(--yellow-badge);
    font-size: 13px;
    font-weight: 700;
}

.stars .rating-label {
    margin-left: 4px;
    color: var(--text-dark);
}

.review-text {
    font-size: 12.5px;
    color: var(--text-muted);
    font-weight: 500;
}

/* Headline */
.headline {
    font-size: 44px !important;
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.headline .accent {
    color: var(--green-primary);
}

/* Benefits list */
.benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.benefits li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
}

.checkmark {
    width: 22px;
    height: 22px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.checkmark svg {
    width: 12px;
    height: 12px;
    stroke: white;
    stroke-width: 2.5;
    fill: none;
}

/* Tagline */
.tagline {
    font-size: 18px;
    color: #000000;
    font-weight: 700;
    letter-spacing: 0.2px;
}

/* CTA Area */
.cta-area {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: relative;
        margin-top: 15px;
}

.badge-sold {
    background: #ffffff;
    color: #88152c;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.3px;
    padding: 5px 14px;
    border-radius: 999px;
    box-shadow: 0 2px 8px rgb(136 21 44);
    /* animation: pulse-badge 2s ease-in-out infinite; */
    position: absolute;
    top: calc(0px);
    left: calc(55% / 2);
    transform: translateX(-50%) translateY(-50%);
    white-space: nowrap;
    z-index: 2;
}

@keyframes pulse-badge {

    0%,
    100% {
        transform: translateX(-50%) translateY(-50%) scale(1);
    }

    50% {
        transform: translateX(-50%) translateY(-50%) scale(1.04);
    }
}

.cta-btn {
    width: 55%;
    background: linear-gradient(8deg, var(--green-primary), #451e21);
    color: var(--white);
    border: 1px solid black;
    padding: 18px 32px;
    border-radius: 40px;
    font-size: 17px;
    font-weight: 800;
    cursor: pointer;
    letter-spacing: 0.2px;
    box-shadow: 5px 5px 0px 0px #000000;
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        filter 0.18s ease;
    position: relative;
    overflow: hidden;
}

.cta-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0.12),
            transparent);
    pointer-events: none;
}

.cta-btn:hover {
    transform: translate3d(5px, 5px, 0);
    box-shadow: 1px 1px 0px 0px #000000;
}

.cta-btn:active {
    transform: translateY(0);
}

.risk-free {
    margin-top: 11px;
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 55%;
}

/* ════════════════════════════════
       RIGHT SECTION
    ════════════════════════════════ */
.hero-right {
    background: var(--yellow-cream);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 0;
    width: auto;
    height: min-content;
    align-self: center;
}

/* Limited Time Badge Image */
.badge-limited-img {
    position: absolute;
    top: calc(-3%);
    /* ürün alanının %3 yukarısı */
    left: calc(-3%);
    /* ürün alanının %3 soluna */
    width: calc(30%);
    /* id=product-hero-img genişliğinin %30'u */
    height: auto;
    z-index: 10;
    pointer-events: none;
}

@keyframes wobble {

    0%,
    100% {
        transform: rotate(-2deg) scale(1);
    }

    50% {
        transform: rotate(2deg) scale(1.03);
    }
}

/* Floating gummy bears */
.gummy {
    position: absolute;
    font-size: 26px;
    opacity: 0.82;
    pointer-events: none;
    animation: float 4s ease-in-out infinite;
}

.gummy:nth-child(1) {
    top: 18%;
    right: 14%;
    animation-delay: 0s;
    font-size: 22px;
}

.gummy:nth-child(2) {
    top: 38%;
    right: 8%;
    animation-delay: 0.8s;
    font-size: 18px;
}

.gummy:nth-child(3) {
    top: 12%;
    left: 45%;
    animation-delay: 1.2s;
    font-size: 20px;
}

.gummy:nth-child(4) {
    top: 55%;
    left: 10%;
    animation-delay: 0.4s;
    font-size: 24px;
}

.gummy:nth-child(5) {
    top: 28%;
    left: 18%;
    animation-delay: 1.8s;
    font-size: 16px;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(8deg);
    }
}

/* Product image */
.product-img-wrap {
    display: inline-block;
    z-index: 5;
}

.product-img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
}

@keyframes hero-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* ── RESPONSIVE ── */
@media (max-width: 820px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 0 5%;
        gap: 1.25rem;
    }

    .hero-left {
        padding: 36px 28px;
        order: 1;
    }

    .headline {
        font-size: 32px !important;
    }

    .hero-right {
        /* min-height: 420px; */
        order: -1;
        padding-top: 5%;
    }

    .badge-limited-img {
        width: calc(31%);
        top: calc(-2%);
        left: calc(-6%);
    }
}

@media (max-width: 480px) {
    body {
        padding: 0;
    }

    .hero-left {
        gap: 1rem;
        padding: 0;
        margin-bottom: 1.5rem;
    }

    .headline {
        font-size: 1.95rem;
    }

    .cta-btn {
        font-size: 15px;
        padding: 25px 20px 25px 20px;
        width: 100%;
        
    }

    .badge-sold {
        left: calc(100% / 2);
        font-size: 14px;
    }

    .risk-free {
        margin-top: 11px;
        font-size: 14px;
        color: var(--black);
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        width: max-content;
        align-self: center;
    }

    .benefits li {
        font-size: 16px;
        font-weight: 500;
    }

    .tagline {
        font-size: 16px;
        color: #000000;
        font-weight: 700;
        letter-spacing: 0;
    }

    .checkmark {
        width: 18px;
        height: 18px;
    }
}

.testimonials {
    /* Full-bleed: main'in max-width kısıtından bağımsız 100vw genişlik */
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 64px 0 48px;
    background: #fff;
    overflow: hidden;
}

.t-viewport {
    overflow: hidden;
    padding: 12px 0;
}

.t-track {
    display: flex;
    gap: 20px;
    transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    align-items: stretch;
}

/* ── Card ── */
.t-card {
    flex: 0 0 50%;
    max-width: 90vw;
    border: 1.5px solid #e0e0e0;
    border-radius: 16px;
    padding: 28px 26px 24px;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 14px;
    box-sizing: border-box;
    opacity: 0.55;
    scale: 0.97;
    transition:
        opacity 0.35s,
        scale 0.35s,
        border-color 0.35s,
        box-shadow 0.35s,
        filter 0.35s;
    filter: drop-shadow(3px 3px 0px #002613);
    align-items: center;
}

.t-card--active {
    border-color: #1a1a1a;
    border-width: 1px;
    /* box-shadow: 0 4px 24px rgba(0, 0, 0, 0.09); */
    filter: drop-shadow(3px 3px 0px #002613);
    opacity: 1;
    scale: 1;
}

.t-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--green-primary);
    margin: 0;
    line-height: 1.3;
}

.t-body {
    font-size: 15px;
    font-weight: 400;
    color: #333;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.t-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 12px;
    /* border-top: 1px solid #f0f0f0; */
}

.t-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e8f5e9;
    flex-shrink: 0;
}

.t-meta {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.t-stars {
    display: flex;
    gap: 2px;
    color: #f5c518;
}

.t-name {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
}

/* ── Controls ── */
.t-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.t-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid transparent;
    background: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    transition:
        border-color 0.2s,
        background 0.2s,
        color 0.2s;
    line-height: 1;
}

.t-arrow:hover {
    /* border-color: #1a1a1a; */
    /* background: #1a1a1a; */
    /* color: #fff; */
}

.t-arrow:disabled {
    /* infinite modda disabled yok */
    opacity: 1;
    pointer-events: auto;
}

.t-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.t-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d0d0d0;
    border: none;
    cursor: pointer;
    padding: 0;
    transition:
        background 0.25s,
        transform 0.25s;
}

.t-dot--active {
    background: #1a1a1a;
    transform: scale(1.25);
}

/* ── Mobile ── */
@media (max-width: 820px) {
    .t-card {
        flex: 0 0 80vw;
        opacity: 0.5;
        scale: 0.96;
    }

    .t-card--active {
        opacity: 1;
        scale: 1;
        align-items: flex-start;
    }

    .testimonials {
        padding: 40px 0 36px;
    }
}

@media (max-width: 480px) {
    .t-card {
        flex: 0 0 88vw;
        padding: 22px 18px 20px;
    }

    .t-title {
        font-size: 15px;
    }

    .t-body {
        font-size: 14px;
    }
}

/* ── Section wrapper ── */
.benefits-section {
    width: 100%;
    padding: 80px 24px 72px;
    background: #fff;
    box-sizing: border-box;
}

/* ── Header ── */
.benefits-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 10px;
}

.benefits-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    color: #000;
    line-height: 1.15;
    margin: 0 0 12px;
}

.benefits-subtitle {
    font-size: clamp(16px, 1.5vw, 16px);
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

/* ════════════════════════════════
       DESKTOP — 3 sütun, grid-areas
       ════════════════════════════════ */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 400px 1fr;
    grid-template-rows: 262px 263px;
    grid-template-areas:
        "gut    hero  immunity"
        "energy hero  brain";
    align-items: center;
    gap: 0 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* ── Benefit items ── */
.benefit-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    word-break: break-word;
    overflow-wrap: break-word;
}

/* Desktop: tüm benefit itemlar ortalı */
[style*="grid-area: gut"],
[style*="grid-area: energy"],
[style*="grid-area: immunity"],
[style*="grid-area: brain"] {
    text-align: center;
    align-items: center;
}

.benefit-icon {
    width: 56px;
    height: 56px;
    color: #4B0C19;
    flex-shrink: 0;
}

.benefit-name {
    font-size: 24px;
    font-weight: 700;
    color: #973247;
    margin: 0;
}

.benefit-desc {
    font-size: 14px;
    color: #374151;
    line-height: 1.65;
    margin: 0;
    max-width: 260px;
}

[style*="grid-area: gut"] .benefit-desc,
[style*="grid-area: energy"] .benefit-desc {
    /* margin-left: auto; */
}

/* ── Hero image (center) ── */
.benefits-hero {
    grid-area: hero;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 400px;
    height: 525px;
}

.benefits-product-img {
    width: 400px;
    height: 525px;
    object-fit: contain;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.12));
}

.benefits-shadow {
    width: 180px;
    height: 24px;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, transparent 75%);
    border-radius: 50%;
    margin-top: -12px;
    filter: blur(4px);
}

/* ════════════════════════════════
       MOBILE ≤ 1024px
       Hero üstte, 4 kart 2x2 grid
       ════════════════════════════════ */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        grid-template-rows: auto auto auto;
        grid-template-areas:
            "hero    hero"
            "gut     immunity"
            "energy  brain";
        gap: 32px;
        max-width: 560px;
    }

    /* Mobilde tüm bloklar sola dayalı */
    [style*="grid-area: gut"],
    [style*="grid-area: immunity"],
    [style*="grid-area: energy"],
    [style*="grid-area: brain"] {
        text-align: left;
        align-items: flex-start;
        height: 100%;
    }

    [style*="grid-area: gut"] .benefit-desc,
    [style*="grid-area: immunity"] .benefit-desc {
        margin-left: 0;
    }

    .benefit-desc {
        max-width: 100%;
    }

    .benefits-hero {
        justify-self: center;
    }

    .benefits-product-img {
        max-width: 80%;
    }
}

/* ── 480px fine-tune ── */
@media (max-width: 480px) {
    .benefits-section {
        padding: 56px 16px 48px;
    }

    .benefits-grid {
        gap: 18px;
    }

    .benefit-name {
        font-size: 20px;
    }

    .benefit-icon {
        width: 44px;
        height: 44px;
    }
}

/* ════════════════════════════════════════
       SOCIAL PROOF SECTION
       ════════════════════════════════════════ */
.sp-section {
    /* Full-bleed: main'in max-width kısıtından bağımsız 100vw genişlik */
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    background: #690f23;
    padding: 48px 24px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* ── Kart temel ── */
.sp-card {
    border-radius: 20px;
    overflow: hidden;
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    align-content: center;
    height: 820px;
}

/* ── Kart 1: Split ── */
.sp-card--split {
    display: flex;
    min-height: 720px;
}

.sp-left {
    flex: 1;
    background: #fff;
    padding: 48px 67px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    align-items: center;
    text-align: center;
}

.sp-heading {
    font-size: clamp(2rem, 3vw, 30px);
    font-weight: 800;
    color: var(--green-primary);
    line-height: 1.2;
    margin: 0;
}

.sp-lead {
    font-size: 15px;
    color: #333;
    margin: 0;
}

.sp-stats-row {
    display: flex;
    gap: 24px;
    margin-top: 8px;
}

.sp-stat {
    flex: 1;
}

.sp-num {
    display: block;
    font-size: clamp(6.25rem, 6vw, 100px);
    font-weight: unset;
    color: var(--green-primary);
    line-height: 1;
}

.sp-stat-desc {
    font-size: 16px;
    color: #444;
    line-height: 1.5;
    margin: 6px 0 0;
    font-weight: 500;
}

.sp-cta-btn {
    display: inline-block;
    background: var(--green-primary);
        cursor: pointer !important;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 100px;
    text-decoration: none;
    width: fit-content;
    margin-top: 8px;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 5px 5px 0px 0px #000000;
}

.sp-cta-btn:hover {
    background: #88152c;
    transform: translate3d(5px, 5px, 0);
    box-shadow: 1px 1px 0px 0px #000000;
}

.sp-sources {
    font-size: 11px;
    color: #888;
    margin: 0;
}

.sp-source-link {
    color: #888;
}

.sp-right {
    flex: 0 0 50%;
    max-width: 50%;
    overflow: hidden;
}

.sp-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ── Kart 2: Krem ── */
.sp-card--cream {
    background: #fff2cb;
}

.sp-cream-inner {
    padding: 48px 40px;
    /* max-width: 780px; */
    /* margin: 0 auto; */
    text-align: center;
    height: 100%;
    justify-self: center;
    align-content: center;
}

.sp-cream-heading {
    font-size: clamp(26px, 3vw, 44px);
    font-weight: 800;
    font-style: italic;
    color: var(--green-primary);
    margin: 0 0 12px;
}

.sp-cream-lead {
    font-size: 20px;
    color: var(--black);
    line-height: 1.6;
    margin: 0 auto;
    max-width: 65%;
}

.sp-4stats {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 24px;
}

.sp-4stat {
    flex: 1;
    min-width: 0;
    text-align: center;
}

.sp-4num {
    display: block;
    font-size: clamp(72px, 5vw, 100px);
    font-weight: unset;
    color: var(--green-primary);
    line-height: 1;
}

.sp-4desc {
    font-size: 16px;
    color: #444;
    font-weight: 500;
    line-height: 1.5;
    margin: 8px 0 0;
}

.sp-footnote {
    font-size: 12px;
    color: #4B0C19;
    margin: 0 0 24px;
    font-style: italic;
    font-weight: 500;
}

.sp-divider {
    border: none;
    border-top: 1px solid #c8d8b8;
    margin: 0 0 28px;
}

.sp-quality-heading {
    font-size: clamp(25px, 2.5vw, 26px);
    font-weight: 800;
    color: var(--green-primary);
    margin: 0 0 10px;
}

.sp-quality-lead {
    font-size: 20px;
    color: #444;
    line-height: 1.6;
    margin: 0 0 20px;
    font-weight: 500;
    max-width: 52%;
    justify-self: center;
}

.sp-checks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 32px;
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
}

.sp-check-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #333;
}

.sp-check-icon {
    color: #4B0C19;
    font-size: 18px;
    flex-shrink: 0;
}

/* ── Social Proof Responsive ── */
@media (max-width: 768px) {
    .sp-card {
        height: auto;
    }

    .sp-card--split {
        flex-direction: column-reverse;
    }

    .sp-lead {
        font-size: 1.25rem;
        color: #333;
        margin: 0;
    }

    .sp-stats-row {
        display: flex;
        gap: 24px;
        margin-top: 8px;
        flex-direction: column;
    }

    .sp-cta-btn {
        display: inline-block;
        background: var(--green-primary);
        color: #fff;
        font-size: 18px;
        font-weight: 700;
        padding: 20px 28px;
        border-radius: 100px;
        text-decoration: none;
        width: 100%;
        margin-top: 8px;
        transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
        box-shadow: 5px 5px 0px 0px #000000;
    }

    .sp-right {
        flex: 0 0 390px;
        max-width: 100%;
    }

    .sp-4stats {
        flex-wrap: wrap;
    }

    .sp-4stat {
        flex: 0 0 calc(50% - 8px);
    }

    .sp-left {
        padding: 32px 24px;
    }

    .sp-cream-inner {
        padding: 32px 20px;
    }

    .sp-cream-lead {
        font-size: 16px;
        color: var(--black);
        line-height: 1.6;
        margin: 1rem auto;
        max-width: unset;
    }

    .sp-4desc {
        font-size: 12px;
        color: #444;
        font-weight: 500;
        line-height: 1.5;
        margin: 8px 0 0;
    }

    .sp-quality-lead {
        font-size: 1.25rem;
        color: #444;
        line-height: 1.6;
        margin: 0 0 20px;
        font-weight: 500;
        justify-self: center;
        max-width: unset;
    }

    .sp-checks {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px 32px;
        max-width: fit-content;
        margin: 0 auto;
        text-align: left;
    }
}

/* ════════════════════════════════════════
       INTERACTIVE REVIEWS & VIDEO GALLERY
       ════════════════════════════════════════ */
.ir-section {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    background: #ab102f78;
    padding: 64px 24px;
    box-sizing: border-box;
}

.ir-inner {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.ir-header {
    text-align: center;
}

.ir-stars-wrap {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    margin-bottom: 8px;
}

.ir-stars-visual {
    position: relative;
    display: inline-flex;
    width: max-content;
}

.ir-stars-empty,
.ir-stars-filled {
    display: flex;
    gap: 2px;
}

.ir-stars-empty {
    /* filter: grayscale(1) opacity(0.3); removed for mask */
}

.ir-stars-filled {
    position: absolute;
    top: 0;
    left: 0;
    /* height: 100%; */
    overflow: hidden;
    white-space: nowrap;
}

.ir-star-svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    background-color: var(--green-primary);
    -webkit-mask-image: url("/cdn/shop/files/svgviewer-output_2.svg?v=1778590486");
    -webkit-mask-size: cover;
    mask-image: url("/cdn/shop/files/svgviewer-output_2.svg?v=1778590486");
    mask-size: cover;
}

.ir-stars-empty .ir-star-svg {
    background-color: rgba(0, 0, 0, 0.2);
}

.ir-stars-text {
    color: var(--green-primary);
    font-weight: 700;
    font-size: 16px;
}

.ir-title {
    font-size: clamp(32px, 3vw, 44px);
    font-weight: 600;
    color: var(--green-primary);
    margin: 0;
}

.ir-tabs {
    display: flex;
    gap: 12px;
    justify-content: center;
    max-width: unset;
}

.ir-tab {
    background: transparent;
    border: 2px solid var(--black);
    border-radius: 100px;
    padding: 10px 24px;
    font-size: 22px;
    font-weight: 700;
    color: var(--black);
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 24%;
}

.ir-tab.active {
    background: var(--green-primary);
    color: var(--white);
    /* border-color: var(--green-primary); */
}

.ir-text-reviews {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1440px;
    width: 100%;
    margin: 24px 0 48px;
}

.ir-text-card {
    text-align: center;
}

.ir-text-stars {
    color: var(--green-primary);
    margin-bottom: 12px;
    font-size: 14px;
}

.ir-text-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--black);
    margin: 0 0 12px;
    line-height: 1.4;
}

.ir-text-body {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    margin: 0 0 16px;
    font-weight: 500;
}

.ir-text-author {
    font-size: 18px;
    font-weight: 600;
    color: var(--black);
}

.ir-video-wrapper {
    position: relative;
    width: 100%;
    max-width: 1440px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ir-slider-btn {
    display: none;
    background: transparent;
    border: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

.ir-slider-btn img {
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.ir-slider-btn.prev {
    left: 10px;
}

.ir-slider-btn.next {
    right: 10px;
}

.ir-slider-dots {
    display: none;
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    gap: 8px;
    z-index: 10;
}

.ir-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.3s;
}

.ir-dot.active {
    background: var(--green-primary);
}

.ir-video-gallery {
    display: flex;
    gap: 20px;
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
}

.ir-video-gallery::-webkit-scrollbar {
    display: none;
}

.ir-video-card {
    flex: 0 0 calc(20% - 16px);
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 9/16;
    background: #000;
    scroll-snap-align: center;
}

.ir-video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ir-video-badge {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    background: #88152c;
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 4px;
    z-index: 2;
    white-space: nowrap;
    text-transform: uppercase;
    box-shadow: 3px 3px 0px 2px #000000;
}

.ir-video-text {
    position: absolute;
    bottom: 24px;
    left: 12px;
    right: 12px;
    color: var(--white);
    font-size: 13px;
    font-weight: 800;
    text-align: center;
    z-index: 2;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    line-height: 1.3;
}

.ir-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: none;
    border-radius: 3px;
    width: 4rem;
    height: 2rem;
    font-size: 1.25rem;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    line-height: 1;
}

.ir-play-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

.ir-fullscreen-btn {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    border-radius: 4px;
    width: 38px;
    height: 34px;
    font-size: 12px;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ir-fullscreen-btn img {
    filter: brightness(0) invert(1);
}

.ir-video-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.5) 100%);
    pointer-events: none;
    z-index: 1;
}

@media (max-width: 1024px) {
    .ir-text-reviews {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .ir-video-card {
        flex: 0 0 calc(33.333% - 14px);
    }
}

@media (max-width: 768px) {
    .ir-tabs {
        display: flex;
        gap: 12px;
        justify-content: center;
        max-width: unset;
        flex-wrap: wrap;
    }

    .ir-tab {
        flex: 0 0 calc(50% - 6px);
        min-width: 0;
        box-sizing: border-box;
        padding: 8px 8px;
        font-size: clamp(14px, 4.1vw, 16px);
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .ir-video-wrapper {
        padding-bottom: 60px;
    }

    .ir-video-card {
        flex: 0 0 100%;
        height: 452px;
    }

    .ir-slider-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        top: auto;
        bottom: 0;
        transform: none;
    }

    .ir-slider-btn.prev {
        left: calc(40% - 100px);
    }

    .ir-slider-btn.next {
        right: calc(40% - 100px);
    }

    .ir-slider-dots {
        display: flex;
    }

    .ir-video-gallery {
        width: 67%;
        padding: 0;
    }
}

/* Fullscreen Mode Overrides */
.ir-video-card:fullscreen .ir-video-badge,
.ir-video-card:fullscreen .ir-video-text,
.ir-video-card:fullscreen::after {
    display: none;
}

.ir-video-card:fullscreen video {
    object-fit: contain;
    background: #000;
}

.ir-video-card:-webkit-full-screen .ir-video-badge,
.ir-video-card:-webkit-full-screen .ir-video-text,
.ir-video-card:-webkit-full-screen::after {
    display: none;
}

.ir-video-card:-webkit-full-screen video {
    object-fit: contain;
    background: #000;
}

/* ════ US VS THEM SECTION ════ */
.us-vs-them-section {
    padding: 80px 20px;
    background-color: var(--white);
    overflow: hidden;
    width: 100%;
}

.uvt-container {
    max-width: 1100px;
    /* margin: 0 auto; */
    display: flex;
    align-items: center;
    gap: 60px;
    justify-self: center;
}

.uvt-text {
    flex: 0 0 32%;
}

.uvt-title {
    font-size: clamp(32px, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--green-primary);
    margin: 0 0 16px;
    line-height: 1.1;
}

.uvt-desc {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--black);
    line-height: 1.5;
    margin: 0;
}

.uvt-table-wrapper {
    flex: 1;
    position: relative;
    min-width: 0;
}

.uvt-grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1fr;
    grid-auto-rows: minmax(50px, auto);
    position: relative;
    z-index: 2;
}

.uvt-table-bg {
    position: absolute;
    inset: 0;
    grid-column: 1 / 5;
    grid-row: 1 / 8;
    background: var(--white);
    border: 2px solid var(--black);
    border-radius: 12px;
    z-index: 1;
    box-shadow: 5px 5px 0px 0px #000000;
}

.uvt-gruns-bg {
    position: absolute;
    inset: 0;
    grid-column: 2 / 3;
    grid-row: 1 / 8;
    background: var(--green-primary);
    border: 2px solid var(--black);
    border-radius: 16px;
    box-shadow: 3px 3px 0px 1px var(--black);
    z-index: 2;
    margin-top: -12px;
    margin-bottom: -12px;
}

.uvt-gruns-logo {
    grid-column: 2 / 3;
    grid-row: 1;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    color: var(--yellow-badge);
    letter-spacing: -1px;
    z-index: 3;
}

.uvt-cell {
    z-index: 3;
    padding: 12px 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-bottom: 1px solid var(--black);
    font-size: 16px;
    font-weight: 800;
    color: var(--black);
}

.uvt-row-label {
    align-items: flex-start;
    text-align: left;
    font-size: 17px;
    font-weight: 600;
    padding-left: 20px;
}

.uvt-row-label small {
    font-size: 9px;
    font-weight: 600;
    margin-top: 4px;
    display: block;
    line-height: 1.1;
}

.uvt-col-border {
    border-right: 1px solid var(--black);
}

.uvt-highlight-text {
    color: var(--white);
    border-bottom: none;
}

.uvt-yellow {
    color: var(--yellow-badge) !important;
}

.uvt-red {
    color: #d32f2f !important;
}

.uvt-last-row {
    border-bottom: none;
}

.uvt-gruns-u {
    font-family: inherit;
    font-size: 22px;
    font-weight: 800;
    color: var(--yellow-badge);
}

.uvt-icon-header {
    margin-bottom: 4px;
}

.uvt-header-text {
    font-size: 9px;
    text-transform: lowercase;
    font-weight: 700;
    line-height: 1.1;
}

.uvt-star {
    display: inline-block;
    width: 18px;
    height: 18px;
    background-color: currentColor;
    -webkit-mask-image: url('/cdn/shop/files/svgviewer-output_2.svg?v=1778590486');
    mask-image: url('/cdn/shop/files/svgviewer-output_2.svg?v=1778590486');
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
}

.uvt-stars-wrap {
    display: flex;
    gap: 2px;
    align-items: center;
    justify-content: center;
}

/* ════ FUMBLE SECTION ════ */
.fumble-section {
    width: 100vw;
    max-width: 100%;
    height: 500px;
    background: linear-gradient(to bottom, #88152c 0%, #f15a3859 100%);
    padding: 0px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-top: 40px;
    margin-left: calc(-50vw + 50%);
}

.fumble-container {
    max-width: 1440px;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
}

.fumble-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
    color: var(--black);
}

.fumble-title {
    font-size: clamp(36px, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
}

.fumble-desc {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 32px;
    max-width: 400px;
}

.fumble-btn {
    background: var(--white);
    color: var(--black);
    border: 2px solid var(--black);
    border-radius: 30px;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 4px 4px 0px 0px var(--black);
    transition: transform 0.1s ease, box-shadow 0.1s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.fumble-btn:hover {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0px 0px var(--black);
}

.fumble-image-col {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.fumble-img {
    max-width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ════ SHAUN WHITE SECTION ════ */
.shaun-section {
    width: 100vw;
    max-width: 100%;
    background: var(--white);
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: calc(-50vw + 50%);
}

.shaun-container {
    max-width: 1100px;
    width: 100%;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 60px;
}

.shaun-image-wrapper {
    width: 100%;
    border-radius: 16px;
    border: 2px solid var(--black);
    overflow: hidden;
    display: flex;
    box-shadow: 6px 6px 0px 0px var(--black);
}

.shaun-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 400px;
}

.shaun-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: var(--black);
}

.shaun-quote {
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.shaun-desc {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 24px;
}

.shaun-author {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 4px;
}

.shaun-title {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 24px;
}

.shaun-btn {
    background: var(--green-primary);
    color: var(--white);
    border: 2px solid var(--black);
    border-radius: 30px;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 4px 4px 0px 0px var(--black);
    transition: transform 0.1s ease, box-shadow 0.1s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.shaun-btn:hover {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0px 0px var(--black);
}

.shaun-disclaimer {
    font-size: 10px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .us-vs-them-section {
        padding: 40px 10px;
    }

    .uvt-container {
        flex-direction: column;
        align-items: stretch;
        gap: 30px;
    }

    .uvt-text {
        text-align: center;
    }

    .uvt-title {
        font-size: 32px;
    }

    .uvt-desc {
        font-size: 15px;
    }

    .uvt-table-wrapper {
        /* overflow-x: auto; */
        padding: 20px 0;
        -webkit-overflow-scrolling: touch;
    }

    .uvt-grid {
        /* min-width: 600px; */
    }

    .uvt-row-label {
        align-items: flex-start;
        text-align: left;
        font-size: 13px;
        font-weight: 600;
        padding-left: 20px;
    }

    .fumble-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .fumble-text {
        align-items: center;
    }

    .fumble-title {
        font-size: 32px;
        margin-top: 2rem;
    }

    .fumble-btn {
        width: 100%;
        font-size: 20px;
        font-weight: 600;
    }

    .shaun-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .shaun-quote {
        font-size: 32px;
    }

    .shaun-img {
        min-height: 300px;
    }

    .shaun-btn {
        width: 100%;
        font-size: 20px;
    }

    .fumble-section {
        max-width: unset !important;
    }
}

.section-template--20553352741055__custom_liquid_cxKmMN-padding {
    padding-top: 0;
    padding-bottom: 0;
}

.circle-divider:last-of-type::after,
a:empty,
article:empty,
div:empty,
dl:empty,
h1:empty,
h2:empty,
h3:empty,
h4:empty,
h5:empty,
h6:empty,
p:empty,
section:empty,
ul:empty {
    display: unset !important;
}

/* WhatsApp Butonu */
.wfb-wrapper,
/* Yukarı Çık Butonu (Hem ID hem Class ihtimaline karşı) */
#scroll-to-top-btn-scroll-to-top-btn,
.scroll-to-top-btn-scroll-to-top-btn {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.section-template--20340764344511__custom_liquid_jejek3-padding {
    padding-top: 0;
    padding-bottom: 0;
}

.section-template--20340764344511__custom_liquid_aE8Wpb-padding {
    padding-top: calc(40px * 0.75);
    padding-bottom: calc(52px * 0.75);
    display: none;
}

main {
    max-width: unset !important
}
.image-with-text__media img {
  filter: sepia(1%) saturate(180%) hue-rotate(-18deg)
          brightness(1) contrast(1.08) !important;
}
    /* .image-with-text__media{box-shadow: 0 11px 7px rgb(136 21 44 / 75%);}

    .image-with-text:not(.image-with-text--overlap) .image-with-text__media-item>*, .image-with-text:not(.image-with-text--overlap) .image-with-text__text-item>* {
    /* box-shadow: none; */
    box-shadow: 0 11px 7px rgb(136 21 44 / 75%);
} */
.section-template--20579066839231__custom_liquid_bGa6Mc-padding {
    padding-top: 0;
    padding-bottom: 0;
}
.section-template--20579066839231__custom_liquid_NxCmEx-padding {
    padding-top: 0;
    padding-bottom: 0;
}
.shipping-checkpoints__bar{
            background-color: #88152c;
}
.material-symbols-outlined{
    
    color: #ffffff;
}
.shipping-checkpoint__icon {
    background-color: #88152c;
}
    .shipping-checkpoint p {
        color: #88152c;
    }


    .music-player__btn[disabled], a:not([href]) {
    cursor: pointer;
}