/* ==============================================
   HOMEPAGE SECTIONS â€” Extracted from Elementor HTML Widgets
   ============================================== */


/* ===== PRODUCTS SECTION ===== */

/* ===== PRODUCTS SECTION ===== */
.seed-products {
    background-color: #1c3a13;
    padding: 100px 80px;
    font-family: var(--font-primary);
    color: #fcfcf7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== HEADER ROW ===== */
.seed-products__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    max-width: 1400px;
    margin: 0 auto 48px;
    gap: 40px;
}

.seed-products__heading {
    font-family: var(--font-primary);
    font-size: clamp(36px, 4.5vw, 56px);
    font-weight: 300;
    line-height: 1.05;
    color: #fcfcf7;
    letter-spacing: -0.02em;
    margin: 0;
    max-width: 520px;
}

.seed-products__header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
    flex-shrink: 0;
}

.seed-products__desc {
    font-size: 15px;
    font-weight: 350;
    line-height: 1.55;
    color: rgba(252, 252, 247, 0.7);
    margin: 0;
    max-width: 420px;
    text-align: right;
}

.seed-products__shop-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fcfcf7;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: opacity 0.2s;
}

.seed-products__shop-all:hover {
    opacity: 0.7;
}

.seed-products__shop-all svg {
    width: 14px;
    height: 14px;
    stroke: #fcfcf7;
    fill: none;
    transition: transform 0.2s;
}

.seed-products__shop-all:hover svg {
    transform: translateX(3px);
}

/* ===== PRODUCT GRID â€” 3 columns, bundle wider ===== */
.seed-products__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.4fr;
    gap: 16px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: stretch;
}

/* ===== PRODUCT CARD ===== */
.seed-products__card {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 48px 24px 32px;
    position: relative;
    text-decoration: none;
    color: #fcfcf7;
    cursor: pointer;
    box-sizing: border-box;
    transform-origin: bottom center;
    transition: background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.seed-products__card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: scale(1.04);
    z-index: 2;
}

/* Badge */
.seed-products__badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 5px 14px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    z-index: 2;
}

.seed-products__badge--bestseller {
    background: rgba(252, 252, 247, 0.2);
    color: #fcfcf7;
}

.seed-products__badge--new {
    background: rgba(168, 201, 122, 0.25);
    color: #a8c97a;
}

.seed-products__badge--bundle {
    background: rgba(168, 201, 122, 0.3);
    color: #a8c97a;
}

/* Product Code Pill */
.seed-products__code {
    display: inline-block;
    padding: 5px 14px;
    border: 1px solid rgba(252, 252, 247, 0.2);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: rgba(252, 252, 247, 0.7);
    margin-bottom: 8px;
}

/* Product Name */
.seed-products__name {
    font-family: var(--font-primary);
    font-size: 26px;
    font-weight: 350;
    line-height: 1.2;
    color: #fcfcf7;
    margin: 0 0 24px;
    letter-spacing: -0.01em;
}

/* ===== VIDEO / POSTER WRAPPER ===== */
.seed-products__visual {
    width: 100%;
    max-width: 260px;
    aspect-ratio: 3 / 4;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    background: transparent;
    overflow: hidden;
}

/* Override Elementor's .elementor img { height: auto } */
.seed-products__visual img,
.seed-products__visual video {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

/* GIF — hidden by default, shown on hover */
.seed-products__gif {
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    background: transparent;
}

/* Static poster image — shown by default, fades on hover */
.seed-products__poster {
    z-index: 2;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.seed-products__card.is-hovered .seed-products__poster {
    opacity: 0;
}

.seed-products__card.is-hovered .seed-products__gif {
    opacity: 1;
}

/* ===== BUNDLE CARD STYLES ===== */
.seed-products__card--bundle {
    background: linear-gradient(160deg, rgba(168, 201, 122, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
    border: 1px solid rgba(168, 201, 122, 0.15);
}

.seed-products__card--bundle:hover {
    background: linear-gradient(160deg, rgba(168, 201, 122, 0.22) 0%, rgba(255, 255, 255, 0.12) 100%);
}

.seed-products__bundle-visuals {
    display: flex;
    gap: 0;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 24px;
    position: relative;
}

.seed-products__bundle-visuals .seed-products__visual {
    max-width: 260px;
    margin-bottom: 0;
}

/* ===== BUNDLE DISCOUNT BADGE ===== */
.seed-products__bundle-discount {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    min-width: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(168, 201, 122, 0.35) 0%, rgba(168, 201, 122, 0.15) 100%);
    border: 1px solid rgba(168, 201, 122, 0.4);
    z-index: 3;
    position: relative;
    box-shadow: 0 0 32px rgba(168, 201, 122, 0.2), inset 0 0 12px rgba(168, 201, 122, 0.1);
    flex-shrink: 0;
    margin: 0 -16px;
}

.seed-products__bundle-discount-pct {
    font-size: 20px;
    font-weight: 700;
    color: #fcfcf7;
    line-height: 1;
    letter-spacing: -0.02em;
}

.seed-products__bundle-discount-label {
    font-size: 8px;
    font-weight: 600;
    color: rgba(252, 252, 247, 0.85);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1;
    margin-top: 2px;
}

.seed-products__card--bundle .seed-products__name {
    font-size: 26px;
}

/* ===== SHOP NOW BUTTON ===== */
.seed-products__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 12px 28px;
    border-radius: 100px;
    background: #1c3a13;
    color: #fcfcf7;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    border: none;
    cursor: pointer;
    margin-top: auto;
    transition: background 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.seed-products__cta-arrow {
    display: inline-flex;
    width: 0;
    opacity: 0;
    transform: translateX(-6px);
    transition: width 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
    font-size: 16px;
    line-height: 1;
}

.seed-products__card:hover .seed-products__cta {
    background: #fcfcf7;
    color: #1c3a13;
}

.seed-products__card:hover .seed-products__cta-arrow {
    width: 20px;
    opacity: 1;
    transform: translateX(0);
}



/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .seed-products {
        padding: 60px 40px;
    }

    .seed-products__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .seed-products__card--bundle {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .seed-products {
        padding: 48px 20px;
    }

    .seed-products__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .seed-products__desc {
        text-align: left;
    }

    .seed-products__header-right {
        align-items: flex-start;
    }

    .seed-products__grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 12px;
        padding-bottom: 12px;
        scrollbar-width: none;
    }

    .seed-products__grid::-webkit-scrollbar {
        display: none;
    }

    .seed-products__card {
        flex: 0 0 85%;
        scroll-snap-align: center;
        min-width: 0;
        padding: 66px 16px 24px;
    }

    .seed-products__card--bundle {
        flex: 0 0 85%;
    }

    .seed-products__name {
        font-size: 18px;
    }

    .seed-products__visual {
        max-width: 180px;
    }

    .seed-products__card--bundle .seed-products__name {
        font-size: 18px;
    }

    .seed-products__bundle-visuals .seed-products__visual {
        max-width: 160px;
    }

    .seed-products__bundle-discount {
        width: 56px;
        height: 56px;
        min-width: 56px;
        margin: 0 -12px;
    }

    .seed-products__bundle-discount-pct {
        font-size: 16px;
    }

    .seed-products__bundle-discount-label {
        font-size: 7px;
    }
}


/* ===== DAILY_ESSENTIALS SECTION ===== */

/* ===== Daily Essentials Section â€” seed.com replica ===== */
.de-section {
    padding: 80px 60px;
    max-width: 1485px;
    margin: 0 auto;
    font-family: var(--font-primary);
    display: flex;
    align-items: flex-start;
    gap: 60px;
    box-sizing: border-box;
}

/* ---- Sol: Metin ---- */
.de-left {
    flex: 0 0 42%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 20px;
}

.de-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #E8F5D6;
    color: #1C3A13;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 28px;
    width: fit-content;
}

.de-badge .badge-dot {
    width: 6px;
    height: 6px;
    background: #1C3A13;
    border-radius: 50%;
}

.de-title {
    font-size: 48px;
    font-weight: 350;
    line-height: 1.1;
    letter-spacing: -0.5px;
    color: #1C3A13;
    margin: 0 0 24px 0;
}

.de-desc {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #1C3A13;
    margin: 0 0 36px 0;
    opacity: 0.8;
}

.de-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #1C3A13;
    color: #FCFCF7;
    font-size: 16px;
    font-weight: 500;
    padding: 16px 28px;
    border-radius: 100px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    width: fit-content;
}

.de-cta:hover {
    background: #2a5a1e;
    transform: translateY(-1px);
}

.de-cta .cta-arrow {
    font-size: 14px;
    transition: transform 0.2s;
}

.de-cta:hover .cta-arrow {
    transform: translateX(3px);
}

.de-footnote {
    font-size: 11px;
    color: rgba(28, 58, 19, 0.4);
    margin-top: 20px;
    line-height: 1.4;
}

/* ---- SaÄŸ: Resim Grid ---- */
.de-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.de-img-hero {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.de-img-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.de-img-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
}

.de-img-card {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.de-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.de-img-card:hover img {
    transform: scale(1.05);
}

/* ===== Responsive ===== */
@media (max-width: 1100px) {
    .de-section {
        padding: 60px 40px;
        gap: 40px;
    }

    .de-title {
        font-size: 38px;
    }
}

@media (max-width: 900px) {
    .de-section {
        flex-direction: column;
        padding: 50px 24px;
        gap: 40px;
    }

    .de-left {
        flex: none;
        width: 100%;
    }

    .de-title {
        font-size: 34px;
    }
}

@media (max-width: 600px) {
    .mth-brand {
        margin-bottom: 16px;
    }

    .de-section {
        padding: 40px 16px;
        gap: 28px;
    }

    .de-title {
        font-size: 28px;
    }

    .de-desc {
        font-size: 14px;
    }

    .de-img-row {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .de-img-row .de-img-card:last-child {
        display: none;
    }

    .de-cta {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }
}


/* ===== VIACAP_TECHNOLOGY SECTION ===== */

/* ===== ViaCapÂ® Technology â€” seed.com exact replica ===== */
.vc-section {
    position: relative;
    background-image: url('https://res.cloudinary.com/dljz0lko8/image/upload/f_auto,q_auto/v1755552501/library/viacap/viacapbg.png');
    background-size: cover;
    background-position: 0% 0%;
    overflow: hidden;
    width: 100%;
    height: 720px;
    padding: 80px 32px;
    box-sizing: border-box;
    border-radius: 24px;
    margin: 0 auto;
    font-family: var(--font-primary);
}



/* Glass Card */
.vc-glass {
    position: relative;
    background: rgba(87, 94, 85, 0.35);
    border-radius: 32px;
    padding: 80px;
    max-width: 1400px;
    height: 560px;
    margin: 0 auto;
    box-sizing: border-box;
    display: flex;
    align-items: stretch;
}

/* ---- Sol: Metin ---- */
.vc-left {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

/* Badge */
.vc-badge {
    font-size: 12px;
    font-weight: 300;
    line-height: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #FCFCF7;
    margin-bottom: 24px;
}

.vc-badge .dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #FCFCF7;
    border-radius: 50%;
    margin-right: 10px;
    vertical-align: middle;
}

/* Heading */
.vc-title {
    font-size: 40px;
    font-weight: 350;
    line-height: 44px;
    letter-spacing: -0.4px;
    color: #FCFCF7;
    margin: 0 0 40px 0;
}

/* Stat Box */
.vc-stat {
    display: flex;
    align-items: center;
    gap: 24px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 16px;
    max-width: 420px;
    background: transparent;
}

.vc-stat-left {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #FCFCF7;
    font-size: 14px;
    font-weight: 350;
    line-height: 1.4;
}

.vc-pill {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 6px;
    padding: 3px 10px;
    font-size: 11px;
    font-weight: 600;
    color: #FCFCF7;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

/* 4.6x Number */
.vc-stat-num {
    font-size: 48px;
    font-weight: 350;
    color: #FCFCF7;
    white-space: nowrap;
    letter-spacing: -1px;
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-left: auto;
}

.vc-stat-num .arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #FCFCF7;
    margin-right: 2px;
}

.vc-stat-num sup {
    font-size: 20px;
    vertical-align: super;
}

/* Footnote */
.vc-footnote {
    font-size: 12px;
    font-weight: 350;
    color: rgba(252, 252, 247, 0.8);
    line-height: 1.4;
}

/* ---- SaÄŸ: KapsÃ¼l + Etiketler ---- */
.vc-right {
    flex: 0 0 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* KapsÃ¼l Video â€” absolute center */
.vc-capsule-wrap {
    position: absolute;
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vc-capsule-wrap video {
    width: 400px;
    height: 400px;
    object-fit: contain;
}

/* Etiket konteynerleri */
.vc-label-area {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0;
}

/* OUTER CAPSULE â€” sol Ã¼st */
.vc-label-outer {
    top: 0;
    left: 0;
    right: 55%;
    flex-direction: row;
}

.vc-label-outer .vc-label-text {
    flex: 0 0 auto;
    max-width: 200px;
}

.vc-label-outer .vc-dotline {
    flex: 1;
    min-width: 20px;
}

/* INNER CAPSULE â€” saÄŸ alt */
.vc-label-inner {
    bottom: 0;
    right: 0;
    left: 55%;
    flex-direction: row;
}

.vc-label-inner .vc-dotline {
    flex: 1;
    min-width: 20px;
}

.vc-label-inner .vc-label-text {
    flex: 0 0 auto;
    max-width: 200px;
}

/* Etiket Typography */
.vc-label-text h3 {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #FCFCF7;
    margin: 0 0 6px 0;
    line-height: 1.3;
}

.vc-label-text p {
    font-size: 12px;
    font-weight: 350;
    line-height: 1.4em;
    color: #FCFCF7;
    margin: 0;
    max-width: 200px;
}

/* NoktalÄ± Ã§izgiler */
.vc-dotline {
    border-bottom: 1px dashed rgba(252, 252, 247, 0.8);
    height: 0;
    width: 70px;
}

/* ===== Responsive ===== */
@media (max-width: 1200px) {
    .vc-section {
        height: auto;
        min-height: 600px;
        padding: 50px 24px;
    }

    .vc-glass {
        height: auto;
        min-height: 460px;
        padding: 50px;
    }

    .vc-capsule-wrap,
    .vc-capsule-wrap video {
        width: 320px;
        height: 320px;
    }
}

@media (max-width: 1024px) {
    .vc-section {
        padding: 40px 16px;
        min-height: auto;
    }

    .vc-glass {
        flex-direction: column;
        height: auto;
        padding: 40px 32px;
        gap: 24px;
        border-radius: 24px;
    }

    .vc-left {
        flex: none;
    }

    .vc-right {
        flex: none;
        min-height: auto;
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .vc-title {
        font-size: 30px;
        line-height: 34px;
    }

    /* Etiketler artÄ±k dikey sÄ±ralÄ± */
    .vc-label-area {
        position: static;
        width: 100%;
        max-width: none;
    }

    .vc-label-outer,
    .vc-label-inner {
        flex-direction: row;
        align-items: flex-start;
        gap: 16px;
    }

    .vc-label-outer .vc-label-text,
    .vc-label-inner .vc-label-text {
        max-width: none;
    }

    .vc-capsule-wrap {
        position: static;
    }

    .vc-capsule-wrap,
    .vc-capsule-wrap video {
        width: 260px;
        height: 260px;
    }

    .vc-dotline {
        display: none;
    }
}

@media (max-width: 768px) {
    .vc-section {
        border-radius: 16px;
        padding: 24px 12px;
    }

    .vc-glass {
        padding: 32px 20px;
        border-radius: 20px;
        gap: 20px;
    }

    .vc-badge {
        font-size: 10px;
        margin-bottom: 16px;
    }

    .vc-title {
        font-size: 24px;
        line-height: 28px;
        margin-bottom: 24px;
    }

    .vc-title br {
        display: none;
    }

    .vc-stat {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 16px;
        max-width: 100%;
    }

    .vc-stat-num {
        font-size: 32px;
        margin-left: 0;
    }

    .vc-footnote {
        font-size: 10px;
    }

    .vc-right {
        gap: 20px;
    }

    .vc-label-outer,
    .vc-label-inner {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .vc-label-text h3 {
        font-size: 11px;
    }

    .vc-label-text p {
        font-size: 11px;
        max-width: none;
    }

    .vc-capsule-wrap,
    .vc-capsule-wrap video {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .vc-section {
        border-radius: 12px;
        padding: 16px 8px;
    }

    .vc-glass {
        padding: 24px 16px;
        border-radius: 16px;
    }

    .vc-title {
        font-size: 20px;
        line-height: 24px;
        margin-bottom: 20px;
    }

    .vc-stat-num {
        font-size: 28px;
    }

    .vc-capsule-wrap,
    .vc-capsule-wrap video {
        width: 160px;
        height: 160px;
    }
}


/* ===== MORE_THAN_HUMAN SECTION ===== */

/* ===== You Are More Than Human â€” seed.com replica ===== */
.mth-section {
    padding: 40px 32px 80px;
    max-width: 1440px;
    margin: 0 auto;
    font-family: var(--font-primary);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
    box-sizing: border-box;
    background: #FCFCF7;
}

/* ---- Seed Brand ---- */
.mth-brand {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 18px;
    font-weight: 500;
    color: #1C3A13;
    letter-spacing: 0.02em;
    margin-bottom: -40px;
}

.mth-brand svg {
    width: 26px;
    height: 21px;
    color: #1C3A13;
}

/* ---- Sol: Metin ---- */
.mth-left {
    flex: 0 0 42%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mth-title {
    font-size: 48px;
    font-weight: 350;
    line-height: 1.1;
    letter-spacing: -0.5px;
    color: #1C3A13;
    margin: 0 0 28px 0;
}

.mth-desc {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #1C3A13;
    margin: 0 0 36px 0;
    opacity: 0.75;
    max-width: 460px;
}

/* Buton â€” pill shape with play icon */
.mth-cta {
    display: inline-flex;
    align-items: center;
    background: #1C3A13;
    color: #FCFCF7;
    font-size: 15px;
    font-weight: 500;
    padding: 5px 5px 5px 34px;
    border-radius: 158px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    width: fit-content;
    gap: 16px;
}

.mth-cta:hover {
    background: #2a5a1e;
    transform: translateY(-1px);
}

.mth-play-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #FCFCF7;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mth-play-icon svg {
    width: 14px;
    height: 14px;
    fill: #1C3A13;
    margin-left: 2px;
}

/* Etiket â€” sol altta */
.mth-label {
    margin-top: 100px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #000000;
}

/* ---- SaÄŸ: Video AlanÄ± ---- */
.mth-right {
    flex: 1;
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #0a1a08;
    cursor: pointer;
}

/* Poster / Ã–n izleme resmi */
.mth-poster {
    position: absolute;
    inset: 0;
    z-index: 2;
    transition: opacity 0.4s ease;
}

.mth-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mth-poster.is-hidden {
    opacity: 0;
    pointer-events: none;
}

/* BÃ¼yÃ¼k Play butonu â€” poster Ã¼stÃ¼nde */
.mth-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.4s ease;
}

.mth-video-play:hover {
    transform: translate(-50%, -50%) scale(1.08);
    box-shadow: 0 6px 32px rgba(0, 0, 0, 0.25);
}

.mth-video-play.is-hidden {
    opacity: 0;
    pointer-events: none;
}

.mth-video-play svg {
    width: 28px;
    height: 28px;
    fill: #1C3A13;
    margin-left: 4px;
}

/* Video */
.mth-right video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ===== Responsive ===== */
@media (max-width: 1100px) {
    .mth-section {
        padding: 60px 32px;
        gap: 40px;
    }

    .mth-title {
        font-size: 40px;
    }
}

@media (max-width: 900px) {
    .mth-section {
        flex-direction: column;
        padding: 50px 24px;
        gap: 36px;
    }

    .mth-left {
        flex: none;
        width: 100%;
    }

    .mth-right {
        width: 100%;
        border-radius: 28px;
    }

    .mth-title {
        font-size: 36px;
    }

    .mth-desc {
        max-width: none;
    }

    .mth-label {
        margin-top: 32px;
    }
}

@media (max-width: 600px) {
    .mth-brand {
        margin-bottom: 16px;
    }

    .mth-section {
        padding: 40px 16px;
        gap: 28px;
    }

    .mth-title {
        font-size: 28px;
    }

    .mth-desc {
        font-size: 14px;
        margin-bottom: 28px;
    }

    .mth-right {
        border-radius: 20px;
        aspect-ratio: 16 / 10;
    }

    .mth-cta {
        padding: 5px 5px 5px 24px;
        font-size: 14px;
    }

    .mth-play-icon {
        width: 38px;
        height: 38px;
    }

    .mth-video-play {
        width: 60px;
        height: 60px;
    }

    .mth-video-play svg {
        width: 22px;
        height: 22px;
    }
}


/* ===== HEALTH_TRANSFORMATIONS SECTION ===== */

/* ===== Health Transformations â€” seed.com replica ===== */
.ht-section {
    padding: 130px 0 120px;
    background: #fcfcf7;
    font-family: var(--font-primary);
    overflow: hidden;
}

/* ---- Header ---- */
.ht-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 56px;
    padding: 0 24px;
}

.ht-title {
    font-size: 48px;
    font-weight: 350;
    line-height: 1.1;
    letter-spacing: -0.5px;
    color: #1C3A13;
    margin: 0 0 18px 0;
}

.ht-subtitle {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.55;
    color: #1C3A13;
    margin: 0;
    opacity: 0.55;
}

/* ---- Swiper Stage ---- */
.ht-stage-wrap {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.ht-swiper {
    overflow: visible !important;
    border-radius: 20px;
}

.ht-swiper .swiper-wrapper {
    align-items: stretch;
}

.ht-swiper .swiper-slide {
    width: 85%;
    max-width: 1080px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    background: #1C3A13;
    aspect-ratio: 16 / 9;
    flex-shrink: 0;
    cursor: pointer;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.ht-swiper .swiper-slide:not(.swiper-slide-active) {
    transform: scale(0.94);
    opacity: 0.6;
}

.ht-swiper .swiper-slide-active {
    transform: scale(1);
    opacity: 1;
}

/* Video element fills the slide */
.ht-slide-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    inset: 0;
}

/* ---- Big centered play button overlay ---- */
.ht-play-overlay {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.ht-play-overlay.is-hidden {
    opacity: 0;
    pointer-events: none;
}

.ht-play-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, background 0.2s ease;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.ht-play-overlay:hover .ht-play-circle {
    transform: scale(1.08);
    background: rgba(255, 255, 255, 1);
}

.ht-play-circle svg {
    width: 30px;
    height: 30px;
    fill: #1C3A13;
    margin-left: 4px;
    /* optical centering for play triangle */
}

/* ---- Overlays inside each slide ---- */
.ht-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 28px 28px 24px;
}

.ht-overlay-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}

.ht-logo {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.ht-logo sup {
    font-size: 10px;
    vertical-align: super;
    margin-left: 1px;
}

.ht-member-label {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.3px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

/* Slide info overlay (bottom-left) â€” name + member duration */
.ht-overlay-bottom {
    display: flex;
    align-items: flex-end;
}

.ht-slide-info {
    color: #fff;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

.ht-slide-info__name {
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 4px;
    line-height: 1.2;
}

.ht-slide-info__detail {
    font-size: 13px;
    font-weight: 400;
    opacity: 0.85;
    margin: 0;
}

/* Fullscreen button (top-right corner) */
.ht-fullscreen-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    z-index: 5;
    transition: background 0.2s;
}

.ht-fullscreen-btn:hover {
    background: rgba(0, 0, 0, 0.5);
}

.ht-fullscreen-btn svg {
    width: 18px;
    height: 18px;
    fill: #fff;
}

/* ---- Floating Navigation Pill ---- */
.ht-nav-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(239, 239, 234, 0.92);
    border-radius: 100px;
    padding: 6px;
    margin: 24px auto 0;
    width: fit-content;
    position: relative;
    z-index: 10;
}

/* Sound toggle button */
.ht-sound-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #1C3A13;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s;
}

.ht-sound-btn:hover {
    background: #2a5a1e;
}

.ht-sound-btn svg {
    width: 18px;
    height: 18px;
    fill: #fcfcf7;
}

/* Pill inner container */
.ht-pill-inner {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Active person pill button (play/pause + name) */
.ht-active-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border-radius: 100px;
    padding: 10px 20px 10px 14px;
    cursor: pointer;
    border: none;
    transition: background 0.2s;
    flex-shrink: 0;
}

.ht-active-pill:hover {
    background: #f0f0eb;
}

.ht-active-pill__icon {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ht-active-pill__icon svg {
    width: 12px;
    height: 12px;
    fill: #1C3A13;
}

.ht-active-pill__name {
    font-size: 15px;
    font-weight: 500;
    color: #1C3A13;
    white-space: nowrap;
    line-height: 1;
}

/* Adjacent person thumbnail in nav */
.ht-adj-thumb {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    flex-shrink: 0;
    transition: transform 0.2s;
    padding: 0;
    border: none;
    background: none;
}

.ht-adj-thumb:hover {
    transform: scale(1.1);
}

.ht-adj-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ht-adj-thumb[data-hidden="true"] {
    display: none;
}

/* ===== Responsive ===== */
@media (max-width: 1200px) {
    .ht-section {
        padding: 100px 0 90px;
    }

    .ht-stage-wrap {
        padding: 0 24px;
    }

    .ht-swiper .swiper-slide {
        width: 90%;
    }
}

@media (max-width: 768px) {
    .ht-section {
        padding: 70px 0 60px;
    }

    .ht-header {
        margin-bottom: 32px;
    }

    .ht-title {
        font-size: 32px;
    }

    .ht-subtitle {
        font-size: 14px;
    }

    .ht-stage-wrap {
        padding: 0 12px;
    }

    .ht-swiper .swiper-slide {
        width: 94%;
        aspect-ratio: 9 / 14;
        border-radius: 16px;
    }

    .ht-swiper .swiper-slide:not(.swiper-slide-active) {
        transform: scale(0.92);
    }

    .ht-overlay {
        padding: 20px 18px 16px;
    }

    .ht-logo {
        font-size: 17px;
    }

    .ht-member-label {
        font-size: 12px;
    }

    .ht-slide-info__name {
        font-size: 18px;
    }

    .ht-slide-info__detail {
        font-size: 12px;
    }

    .ht-fullscreen-btn {
        width: 36px;
        height: 36px;
        top: 16px;
        right: 16px;
    }

    .ht-play-circle {
        width: 64px;
        height: 64px;
    }

    .ht-play-circle svg {
        width: 24px;
        height: 24px;
    }

    .ht-nav-pill {
        margin-top: 18px;
        padding: 5px;
        gap: 4px;
    }

    .ht-sound-btn {
        width: 40px;
        height: 40px;
    }

    .ht-active-pill {
        padding: 8px 16px 8px 12px;
    }

    .ht-active-pill__name {
        font-size: 14px;
    }

    .ht-adj-thumb {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 480px) {
    .ht-title {
        font-size: 26px;
    }

    .ht-swiper .swiper-slide {
        width: 96%;
        border-radius: 14px;
    }

    .ht-play-circle {
        width: 56px;
        height: 56px;
    }

    .ht-play-circle svg {
        width: 20px;
        height: 20px;
    }
}


/* ===== SEED_STORIES SECTION ===== */

/* ===== MEDIA SCROLLER SECTION ===== */
.seed-stories {
    background-color: #fcfcf7;
    padding: 0px 0 80px;
    overflow: hidden;
    font-family: var(--font-primary);
}

.seed-stories__header-wrap {
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 60px;
}

.seed-stories__heading {
    font-family: var(--font-primary);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 300;
    line-height: 1.1;
    color: #1c3a13;
    letter-spacing: -0.02em;
    max-width: 600px;
    margin: 0 0 60px;
}

/* ===== SCROLLER CONTAINER ===== */
.seed-stories__scroller {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 0 80px 20px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    cursor: grab;
    align-items: flex-start;
}

.seed-stories__scroller::-webkit-scrollbar {
    display: none;
}

.seed-stories__scroller:active {
    cursor: grabbing;
}

/* ===== CARD BASE ===== */
.seed-stories__card {
    flex-shrink: 0;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    background: #e8e5dd;
}

.seed-stories__card img,
.seed-stories__card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ===== CARD SHAPES ===== */

/* Vertical tall â€” 9:14 ratio */
.seed-stories__card--vertical {
    width: 276px;
    height: 430px;
    border-radius: 24px;
}

/* Round â€” 1:1 circle */
.seed-stories__card--round {
    width: 340px;
    height: 340px;
    border-radius: 50%;
    position: relative;
}

.seed-stories__card--round img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 50% !important;
}

/* ===== CARD COLUMN (two stacked items) ===== */
.seed-stories__column {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex-shrink: 0;
}

/* ===== QUOTE CARD ===== */
.seed-stories__card--quote {
    width: 340px;
    border-radius: 24px;
    padding: 40px 28px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.seed-stories__card--quote-dark {
    background: #1c3a13;
}

.seed-stories__card--quote-light {
    background: #e8e5dd;
}

/* Link icon (top-right) */
.seed-stories__quote-icon {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.seed-stories__card--quote-dark .seed-stories__quote-icon {
    background: rgba(252, 252, 247, 0.12);
}

.seed-stories__card--quote-light .seed-stories__quote-icon {
    background: rgba(28, 58, 19, 0.07);
}

.seed-stories__quote-icon svg {
    width: 14px;
    height: 14px;
}

.seed-stories__card--quote-dark .seed-stories__quote-icon svg {
    fill: rgba(252, 252, 247, 0.6);
}

.seed-stories__card--quote-light .seed-stories__quote-icon svg {
    fill: rgba(28, 58, 19, 0.4);
}

.seed-stories__quote-text {
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.55;
    margin: 0 0 20px;
    max-width: 280px;
}

.seed-stories__card--quote-dark .seed-stories__quote-text {
    color: #fcfcf7;
}

.seed-stories__card--quote-light .seed-stories__quote-text {
    color: #1c3a13;
}

/* Logo text fallbacks */
.seed-stories__logo-fastcompany {
    font-family: 'Georgia', serif;
    font-size: 17px;
    font-weight: 700;
    color: #1c3a13;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.seed-stories__logo-forbes {
    font-family: 'Georgia', serif;
    font-size: 24px;
    font-weight: 700;
    font-style: italic;
    color: #fcfcf7;
    letter-spacing: 0.02em;
}

/* ===== PLAY BUTTON OVERLAY ===== */
.seed-stories__play-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(28, 58, 19, 0.35);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: background 0.2s ease, transform 0.15s ease;
}

.seed-stories__play-btn:hover {
    background: rgba(28, 58, 19, 0.6);
    transform: scale(1.05);
}

.seed-stories__play-btn svg {
    width: 14px;
    height: 14px;
    fill: #fcfcf7;
    margin-left: 2px;
}

/* ===== VIDEO OVERLAY TEXT ===== */
.seed-stories__video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 50px 20px 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.45));
    pointer-events: none;
    z-index: 1;
}

.seed-stories__video-label {
    font-family: var(--font-primary);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(252, 252, 247, 0.65);
    margin-bottom: 2px;
}

.seed-stories__video-title {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 300;
    color: #fcfcf7;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .seed-stories {
        padding: 60px 0 40px;
    }

    .seed-stories__header-wrap {
        text-align: center;
        padding: 0 20px;
    }

    .seed-stories__heading {
        font-size: 32px;
        max-width: none;
        margin: 0 auto 32px;
    }

    .seed-stories__scroller {
        gap: 12px;
        padding: 0 20px 12px;
    }

    .seed-stories__card--vertical {
        width: 200px;
        height: 310px;
    }

    .seed-stories__card--round {
        width: 240px;
        height: 240px;
    }

    .seed-stories__card--quote {
        width: 240px;
        padding: 28px 18px 24px;
    }

    .seed-stories__quote-text {
        font-size: 13px;
    }
}


/* ===== BOOKEND_CARDS SECTION ===== */

/* ===== BOOKEND SECTION ===== */
.seed-bookend {
    background-color: #fcfcf7;
    padding: 0 80px 80px;
    font-family: var(--font-primary);
}

.seed-bookend__grid {
    display: flex;
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
}

/* ===== CARD BASE ===== */
.seed-bookend__card {
    flex: 1;
    aspect-ratio: 1 / 1;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 48px 40px;
    box-sizing: border-box;
}

/* Dark overlay for better text readability */
.seed-bookend__card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
    z-index: 0;
}

.seed-bookend__card>* {
    position: relative;
    z-index: 1;
}

/* ===== CARD 1: SEED LABS ===== */
.seed-bookend__card--labs {
    background-image: url('/wp-content/uploads/2026/02/blgs-bck.jpg');
}

/* ===== CARD 2: DS-01 ===== */
.seed-bookend__card--ds01 {
    background-image: url('/wp-content/uploads/2026/02/bgl1.jpg');
}

/* ===== EYEBROW TEXT ===== */
.seed-bookend__eyebrow {
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fcfcf7;
    margin: 0 0 auto;
    opacity: 0.85;
}

/* ===== INNER CONTENT WRAPPER ===== */
.seed-bookend__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

/* ===== TITLE ===== */
.seed-bookend__title {
    font-family: var(--font-primary);
    font-size: 40px;
    font-weight: 350;
    line-height: 1.1;
    color: #fcfcf7;
    margin: 0;
    letter-spacing: -0.01em;
}

/* Seed Labs title with animated reveal feel */
.seed-bookend__title span {
    display: inline;
}

/* ===== SUBTITLE ===== */
.seed-bookend__subtitle {
    font-size: 16px;
    font-weight: 350;
    line-height: 1.5;
    color: #fcfcf7;
    margin: 0;
    opacity: 0.9;
}

/* ===== PRODUCT IMAGE (DS-01 card) ===== */
.seed-bookend__product-img {
    width: 232px;
    height: 142px;
    object-fit: contain;
    margin-bottom: -8px;
}

/* ===== DS-01 TITLE (smaller style) ===== */
.seed-bookend__title--ds01 {

    font-weight: 350;
    font-size: 24px;
    line-height: 28px;
    color: #fcfcf7;
    margin-top: -16px;
}

/* ===== CTA BUTTON ===== */
.seed-bookend__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 24px;
    border-radius: 100px;
    background: #fcfcf7;
    color: #1c3a13;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: background 0.25s ease, transform 0.15s ease, box-shadow 0.25s ease;
    border: none;
    cursor: pointer;
    margin-top: 4px;
}

.seed-bookend__cta:hover {
    background: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.seed-bookend__cta svg {
    width: 12px;
    height: 12px;
    fill: #1c3a13;
    transition: transform 0.2s ease;
}

.seed-bookend__cta:hover svg {
    transform: translateX(2px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .seed-bookend {
        padding: 0 20px 40px;
    }

    .seed-bookend__grid {
        flex-direction: column;
        gap: 16px;
    }

    .seed-bookend__card {
        aspect-ratio: auto;
        min-height: 400px;
        padding: 36px 28px;
    }

    .seed-bookend__title {
        font-size: 32px;
    }

    .seed-bookend__product-img {
        width: 180px;
        height: 110px;
    }
}

/* 1. Zeta kartındaki GIF */
.seed-products__card[data-href*="/zeta/"] .seed-products__gif {
    transform: scale(1.1) !important;
    transform-origin: center center;
}

/* 2. Teta kartındaki GIF */
.seed-products__card[data-href*="/teta/"] .seed-products__gif {
    transform: scale(1.0) !important;
    transform-origin: center center;
}

/* 3. Bundle'daki Zeta GIF (sol) */
.seed-products__bundle-visuals .seed-products__visual:first-child .seed-products__gif {
    transform: scale(1.05) !important;
    transform-origin: center center;
}

/* 4. Bundle'daki Teta GIF (sağ) */
.seed-products__bundle-visuals .seed-products__visual:last-child .seed-products__gif {
    transform: scale(0.95) !important;
    transform-origin: center center;
}

.seed-products__bundle-visuals .seed-products__visual:first-child img {
    transform: scale(1.08) !important;
    transform-origin: center center;
}

/* ===== BUNDLE VISUAL SIZING ===== */
/* Enlarge bundle visuals */
.seed-products__bundle-visuals .seed-products__visual {
    max-width: 280px !important;
    flex: 1;
}

/* Adjust discount badge overlap for larger bottles */
.seed-products__bundle-discount {
    margin: 0 -30px;
}

/* Bundle'daki Teta'yı büyüt */
.seed-products__bundle-visuals .seed-products__visual:last-child img {
    transform: scale(1.1) !important;
    transform-origin: center center;
}


/* =============================================================
   HERO SLIDER
   ============================================================= */

:root {
    --hs-font: inherit;
    --hs-cream: #FCFCF7;
    --hs-cream-alt: #F6F7EF;
    --hs-green-dark: #1C3A13;
    --hs-green-medium: #2D5A1E;
    --hs-green-light: #4A7A3D;
    --hs-green-accent: #5B8A4C;
    --hs-pill: 9999px;
    --hs-dur: 6s;
    --hs-border: hsla(130, 20%, 90%, 1);
}

/* SECTION */
.hero-slider {
    position: relative;
    width: 100%;
    height: 80dvh;
    overflow: hidden;
    font-family: var(--hs-font);
    -webkit-font-smoothing: antialiased;
    background: var(--hs-cream);
}

/* BG SLIDES */
.hs-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
    will-change: opacity;
}

.hs-bg.active {
    opacity: 1;
}

.hs-bg img,
.hs-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hs-bg::before,
.hs-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hs-bg::before {
    background: linear-gradient(to top, rgba(252, 252, 247, .35), transparent 50%);
}

.hs-bg::after {
    background: linear-gradient(to right, rgba(252, 252, 247, .15), transparent 55%);
}

/* CONTENT */
.hs-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.hs-spacer {
    flex-shrink: 0;
    height: 80px;
}

.hs-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
    overflow: hidden;
    padding: 0 20px 8px;
}

.hs-inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
    position: relative;
}

/* SLIDE */
.hs-slide {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    min-height: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .6s ease, visibility .6s;
    pointer-events: none;
    cursor: grab;
    user-select: none;
    touch-action: pan-y;
}

.hs-slide:active {
    cursor: grabbing;
}

.hs-slide.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 2;
}

.hs-gap {
    flex-shrink: 0;
    height: 24px;
}

/* ===== VISUAL (PRODUCT IMAGE) ===== */
.hs-visual {
    flex: 1;
    min-height: 10vh;
    max-height: 38vh;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    width: 100%;
    position: relative;
}

.hs-visual-frame {
    height: 100%;
    max-height: 32vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
}

.hs-visual-frame img {
    height: 100%;
    max-height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    border-radius: 12px;
}

/* ===== VIDEO THUMBNAIL ===== */
.hs-vthumb {
    position: relative;
    display: block;
    width: 100%;
    max-width: 24rem;
    height: 100%;
    max-height: 20vh;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(28, 58, 19, .12);
    cursor: pointer;
    background: transparent;
    padding: 0;
}

.hs-vthumb video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hs-vthumb-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .3s ease;
}

.hs-vthumb:hover .hs-vthumb-overlay {
    background: rgba(0, 0, 0, .4);
}

.hs-play-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .9);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .2);
    transition: transform .3s ease;
    border: none;
    cursor: pointer;
}

.hs-vthumb:hover .hs-play-btn {
    transform: scale(1.1);
}

.hs-play-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    stroke: currentColor;
    color: #333;
    margin-left: 2px;
}

/* "Bestseller" badge */
.hs-bestseller {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #111;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 8px;
    z-index: 3;
}

/* TITLE */
.hs-title {
    flex-shrink: 0;
    font-size: 20px;
    font-weight: 700;
    color: var(--hs-green-dark);
    line-height: 1.15;
    margin: 0 0 4px;
    letter-spacing: -.02em;
}

.hs-title .accent {
    color: var(--hs-green-medium);
}

/* DESC */
.hs-desc {
    flex-shrink: 0;
    color: rgba(28, 58, 19, .7);
    font-size: 12px;
    line-height: 1.6;
    max-width: 28rem;
    margin: 0 0 8px;
}

/* CTA */
.hs-cta-row {
    flex-shrink: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 8px;
}

.hs-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 28px;
    border-radius: var(--hs-pill);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all .3s ease;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.hs-cta--white {
    background: var(--hs-green-dark);
    color: #fff;
    box-shadow: 0 4px 18px rgba(28, 58, 19, .2);
}

.hs-cta--white:hover {
    background: var(--hs-green-medium);
}

.hs-cta svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* ===== NEURO PERFORMANCE TABLE ===== */
.hs-neuro-table {
    width: 100%;
    max-width: 540px;
    margin-bottom: 12px;
}

.hs-neuro-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 2px solid var(--hs-green-dark);
    padding-bottom: 8px;
    margin-bottom: 4px;
}

.hs-neuro-col-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--hs-green-dark);
    letter-spacing: 0.01em;
}

.hs-neuro-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 10px 0;
    border-bottom: 1px solid rgba(28, 58, 19, .08);
}

.hs-neuro-row:last-child {
    border-bottom: none;
}

.hs-neuro-row span {
    font-size: 14px;
    font-weight: 400;
    color: rgba(28, 58, 19, .7);
    line-height: 1.4;
}

/* ===== LARGE VISUAL (slide-specific) ===== */
.hs-visual--large {
    max-height: 48vh;
}

.hs-visual--large .hs-visual-frame {
    max-height: 44vh;
}

/* ===== SCROLLING TAGS ===== */
.hs-stags-area {
    flex-shrink: 0;
    height: 72px;
    width: 100%;
}

.hs-stags-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    margin-top: 4px;
}

.hs-stags-wrap::before,
.hs-stags-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 32px;
    z-index: 10;
    pointer-events: none;
}

.hs-stags-wrap::before {
    left: 0;
    background: linear-gradient(to right, rgba(252, 252, 247, .9), transparent);
}

.hs-stags-wrap::after {
    right: 0;
    background: linear-gradient(to left, rgba(252, 252, 247, .9), transparent);
}

.hs-stags-track {
    display: flex;
    gap: 8px;
    width: max-content;
    animation: hsTagScroll 25s linear infinite;
}

.hs-stag {
    flex-shrink: 0;
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px solid rgba(28, 58, 19, .10);
    background: rgba(28, 58, 19, .04);
    white-space: nowrap;
}

.hs-stag span {
    font-size: 11px;
    font-weight: 600;
    color: var(--hs-green-dark);
    white-space: nowrap;
}

.hs-stag--emerald {
    background: linear-gradient(to bottom right, rgba(28, 58, 19, .08), rgba(45, 90, 30, .05));
}

.hs-stag--sage {
    background: linear-gradient(to bottom right, rgba(74, 122, 61, .08), rgba(91, 138, 76, .05));
}

.hs-stag--teal {
    background: linear-gradient(to bottom right, rgba(20, 120, 100, .07), rgba(40, 150, 130, .04));
}

.hs-stag--moss {
    background: linear-gradient(to bottom right, rgba(60, 100, 40, .08), rgba(80, 120, 55, .05));
}

.hs-stag--olive {
    background: linear-gradient(to bottom right, rgba(100, 140, 60, .07), rgba(120, 160, 70, .04));
}

.hs-stag--forest {
    background: linear-gradient(to bottom right, rgba(35, 80, 50, .08), rgba(50, 100, 65, .05));
}

.hs-stag--mint {
    background: linear-gradient(to bottom right, rgba(60, 160, 100, .06), rgba(80, 180, 120, .04));
}

.hs-stag--leaf {
    background: linear-gradient(to bottom right, rgba(91, 138, 76, .07), rgba(74, 122, 61, .04));
}

@keyframes hsTagScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ===== TRUST BADGE ===== */
.hs-badge-area {
    flex-shrink: 0;
    height: 72px;
    width: 100%;
}

.hs-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 14px;
    border-radius: 16px;
    background: rgba(28, 58, 19, .06);
    border: 1px solid rgba(28, 58, 19, .10);
    width: fit-content;
    margin-top: 4px;
}

.hs-badge-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(28, 58, 19, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hs-badge-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.hs-badge-txt strong {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--hs-green-dark);
    line-height: 1.3;
}

.hs-badge-txt span {
    display: block;
    font-size: 10px;
    color: rgba(28, 58, 19, .55);
    margin-top: 2px;
}

/* ===== SLIDE 5 — PROMO (KindPatches style) ===== */
.hs-slide--promo {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1;
    min-height: 60vh;
}

.hs-promo-layout {
    display: flex;
    align-items: center;
    gap: 48px;
    min-height: 0;
}


/* Promo text area */
.hs-promo-text {
    flex: 1;
    min-width: 0;
}

.hs-promo-topline {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    font-family: var(--font-primary);
}

.hs-promo-icon {
    font-size: 18px;
}

.hs-promo-label {
    font-size: 14px;
    font-weight: 800;
    color: var(--hs-green-dark);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hs-promo-divider {
    color: rgba(28, 58, 19, .25);
    font-weight: 300;
    font-size: 18px;
}

.hs-promo-brand {
    font-size: 14px;
    font-weight: 600;
    color: var(--hs-green-dark);
    opacity: .7;
}

.hs-promo-title {
    font-family: var(--font-primary);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    color: var(--hs-green-dark);
    line-height: 1.1;
    margin: 0 0 12px;
    letter-spacing: -1px;
}

.hs-promo-sub {
    font-family: var(--font-primary);
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 400;
    color: rgba(28, 58, 19, .55);
    margin: 0 0 28px;
}

/* ===== Promo visual — product bottles ===== */
.hs-promo-visual {
    position: relative;
    flex-shrink: 0;
    width: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hs-promo-products {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
}

/* Decorative glowing orb behind bottles */
.hs-promo-products::before {
    content: '';
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(28, 58, 19, .12) 0%, rgba(28, 58, 19, .05) 40%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    animation: hsOrbPulse 4s ease-in-out infinite;
}

/* Decorative ring around the orb */
.hs-promo-products::after {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    border: 2px dashed rgba(28, 58, 19, .1);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    animation: hsRingSpin 20s linear infinite;
}

@keyframes hsOrbPulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.08);
        opacity: .8;
    }
}

@keyframes hsRingSpin {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.hs-promo-bottle {
    max-height: 320px;
    width: auto;
    filter: drop-shadow(0 12px 32px rgba(28, 58, 19, .18));
    transition: transform .4s ease;
}

.hs-promo-bottle--left {
    transform: rotate(-6deg) translateX(16px);
    z-index: 2;
}

.hs-promo-bottle--right {
    transform: rotate(6deg) translateX(-16px);
    z-index: 1;
}

.hs-slide--promo:hover .hs-promo-bottle--left {
    transform: rotate(-3deg) translateX(10px) scale(1.03);
}

.hs-slide--promo:hover .hs-promo-bottle--right {
    transform: rotate(3deg) translateX(-10px) scale(1.03);
}

/* Social proof badge */
.hs-promo-social-badge {
    position: absolute;
    bottom: 8px;
    right: -12px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(28, 58, 19, .9);
    padding: 8px 14px;
    border-radius: 24px;
    z-index: 10;
    box-shadow: 0 4px 16px rgba(28, 58, 19, .2);
}

.hs-promo-social-icon {
    width: 20px;
    height: 20px;
    color: #25F4EE;
}

.hs-promo-social-icon svg {
    width: 100%;
    height: 100%;
}

.hs-promo-social-txt strong {
    display: block;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.2;
}

.hs-promo-social-txt span {
    display: block;
    color: rgba(255, 255, 255, .65);
    font-size: 9px;
    line-height: 1.2;
}

/* ===== SLIDE 0 — SEED.COM STYLE (two-column hero) ===== */
.hs-slide--seed {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-align: left;
    padding: 0;
}

.hs-seed-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    gap: 32px;
    padding: 0 24px;
}

/* ── Left: Text ── */
.hs-seed-text {
    flex: 1;
    min-width: 0;
    max-width: 520px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hs-seed-topline {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.hs-seed-sku {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border: 1.5px solid var(--hs-green-dark);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: var(--hs-green-dark);
    letter-spacing: 0.02em;
    line-height: 1;
    white-space: nowrap;
}

.hs-seed-product-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--hs-green-dark);
    letter-spacing: -0.01em;
}

.hs-seed-title {
    font-family: var(--font-primary);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;
    color: var(--hs-green-dark);
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin: 0 0 20px;
}

.hs-seed-desc {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    color: rgba(28, 58, 19, .6);
    line-height: 1.6;
    margin: 0 0 28px;
    max-width: 440px;
}

.hs-seed-cta-row {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.hs-seed-cta-row .hs-cta {
    padding: 12px 28px;
    font-size: 15px;
}

.hs-seed-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--hs-green-dark);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: opacity .25s ease;
    white-space: nowrap;
}

.hs-seed-link:hover {
    opacity: .7;
}

.hs-seed-link svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* ── Right: Visual ── */
.hs-seed-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    max-width: 500px;
    height: 80%;
}

.hs-seed-visual img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 16px 48px rgba(28, 58, 19, .12));
}

/* ARROWS */
.hs-arrow {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(28, 58, 19, .05);
    border: 1px solid rgba(28, 58, 19, .10);
    color: var(--hs-green-dark);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
}

.hs-arrow:hover {
    background: rgba(28, 58, 19, .12);
}

.hs-arrow svg {
    width: 20px;
    height: 20px;
}

.hs-arrow--prev {
    left: 32px;
}

.hs-arrow--next {
    right: 32px;
}

/* BOTTOM */
.hs-bottom {
    position: relative;
    z-index: 20;
    flex-shrink: 0;
}

.hs-discover-row {
    display: flex;
    justify-content: center;
    margin-bottom: 12px;
}

.hs-discover {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: var(--hs-pill);
    background: rgba(28, 58, 19, .06);
    border: 1px solid rgba(28, 58, 19, .10);
    color: var(--hs-green-dark);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all .3s ease;
}

.hs-discover:hover {
    background: rgba(28, 58, 19, .12);
}

.hs-discover svg {
    width: 16px;
    height: 16px;
}

/* DOTS */
.hs-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 20px;
    padding: 0 28px;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
}

.hs-dot {
    position: relative;
    height: 3px;
    flex: 1;
    border-radius: var(--hs-pill);
    background: rgba(28, 58, 19, .10);
    overflow: hidden;
    cursor: pointer;
    border: none;
    padding: 0;
}

.hs-dot:hover {
    background: rgba(28, 58, 19, .18);
}

.hs-dot-fill {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    border-radius: var(--hs-pill);
    background: var(--hs-green-dark);
    width: 0;
}

.hs-dot.done .hs-dot-fill {
    width: 100%;
    transition: none;
}

.hs-dot.active {
    background: rgba(28, 58, 19, .20);
}

.hs-dot.active .hs-dot-fill {
    animation: hsDotProg var(--hs-dur) linear forwards;
}

@keyframes hsDotProg {
    from {
        width: 0
    }

    to {
        width: 100%
    }
}

/* MARQUEE BAR */
.hs-marquee-bar {
    background: linear-gradient(135deg, #1C3A13 0%, #2D5A1E 30%, #4A7A3D 60%, #1C3A13 100%);
    padding: 20px 0;
    overflow: hidden;
    position: relative;
}

.hs-marquee-track {
    display: flex;
    gap: 0;
    animation: hsMarquee 25s linear infinite;
    width: max-content;
}

.hs-marquee-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    padding: 0 30px;
    color: rgba(255, 255, 255, .9);
    font-family: var(--hs-font);
    font-size: 22px;
    font-weight: 600;
    font-style: italic;
    white-space: nowrap;
}

@keyframes hsMarquee {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

/* =============== HERO SLIDER — MOBILE (< 768px) =============== */
@media (max-width:767px) {
    .hero-slider {
        height: 70dvh;
    }

    .hs-spacer {
        height: 70px;
    }

    .hs-body {
        padding: 0 16px 6px;
    }

    /* All slides: stack from top, no stretching */
    .hs-slide {
        justify-content: flex-start;
    }

    .hs-gap {
        height: 4px;
    }

    /* Video & image containers: compact, no stretching */
    .hs-visual {
        min-height: 0;
        flex: 0 0 auto;
        margin-bottom: 6px;
    }

    .hs-visual-frame {
        max-height: 34vh;
    }

    .hs-visual-frame img {
        border-radius: 10px;
    }

    .hs-vthumb {
        max-width: 100%;
        max-height: 28vh;
        border-radius: 10px;
    }

    .hs-play-btn {
        width: 44px;
        height: 44px;
    }

    .hs-play-btn svg {
        width: 18px;
        height: 18px;
    }

    .hs-title {
        font-size: 24px;
        margin-bottom: 10px;
        line-height: 1.2;
    }

    .hs-desc {
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 10px;
        max-width: 100%;
    }

    .hs-cta-row {
        margin-bottom: 14px;
        gap: 8px;
    }

    .hs-cta {
        padding: 10px 24px;
        font-size: 14px;
    }

    .hs-stags-area {
        height: 44px;
        flex-shrink: 0;
    }

    .hs-stags-wrap {
        margin-top: 2px;
    }

    .hs-stag {
        padding: 6px 12px;
    }

    .hs-stag span {
        font-size: 11px;
    }

    .hs-badge-area {
        height: auto;
        min-height: 36px;
        flex-shrink: 0;
    }

    .hs-badge {
        padding: 6px 10px;
        gap: 8px;
        border-radius: 12px;
    }

    .hs-badge-icon {
        width: 32px;
        height: 32px;
    }

    .hs-badge-icon img {
        width: 22px;
        height: 22px;
    }

    .hs-badge-txt strong {
        font-size: 10px;
    }

    .hs-badge-txt span {
        font-size: 9px;
    }

    .hs-discover {
        padding: 8px 16px;
        font-size: 12px;
    }

    .hs-discover-row {
        margin-bottom: 6px;
    }

    .hs-dots {
        margin-bottom: 10px;
        gap: 4px;
        padding: 0 16px;
    }

    .hs-dot {
        height: 3px;
    }

    .hs-bestseller {
        top: 6px;
        left: 6px;
        font-size: 10px;
        padding: 4px 10px;
        border-radius: 6px;
    }

    /* ── Slide 4 (Promo) — mobile ── */
    .hs-promo-layout {
        flex-direction: column-reverse;
        gap: 20px;
        text-align: center;
    }

    .hs-promo-visual {
        width: 260px;
    }

    .hs-promo-bottle {
        max-height: 200px;
    }

    .hs-promo-bottle--left {
        transform: rotate(-4deg) translateX(12px);
    }

    .hs-promo-bottle--right {
        transform: rotate(4deg) translateX(-12px);
    }

    .hs-promo-social-badge {
        right: -8px;
        bottom: 4px;
        padding: 6px 10px;
    }

    .hs-promo-topline {
        justify-content: center;
        margin-bottom: 10px;
    }

    .hs-promo-title {
        font-size: 32px;
        letter-spacing: -0.5px;
    }

    .hs-promo-sub {
        font-size: 16px;
        margin-bottom: 18px;
    }

    .hs-slide--promo .hs-cta {
        margin: 0 auto;
    }

    /* ── Slide 1 (Seed/Teta) — mobile ── */
    .hs-slide--seed {
        text-align: left;
    }

    .hs-seed-layout {
        flex-direction: column;
        gap: 12px;
        padding: 8px 0 0;
        justify-content: flex-start;
        height: auto;
    }

    .hs-seed-text {
        max-width: 100%;
        flex: 0 0 auto;
    }

    .hs-seed-topline {
        margin-bottom: 8px;
    }

    .hs-seed-sku {
        padding: 4px 10px;
        font-size: 11px;
    }

    .hs-seed-product-name {
        font-size: 15px;
    }

    .hs-seed-title {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .hs-seed-desc {
        font-size: 12px;
        margin-bottom: 12px;
        max-width: 100%;
    }

    .hs-seed-cta-row {
        gap: 12px;
    }

    .hs-seed-visual {
        max-width: 200px;
        height: auto;
        flex: 0 0 auto;
    }
}

/* =============== HERO SLIDER — SMALL PHONES (< 375px) =============== */
@media (max-width:374px) {
    .hs-title {
        font-size: 22px;
    }

    .hs-desc {
        font-size: 11px;
    }

    .hs-cta {
        padding: 8px 18px;
        font-size: 13px;
    }

    .hs-visual-frame {
        max-height: 24vh;
    }

    .hs-vthumb {
        max-height: 24vh;
    }

    .hs-promo-visual {
        width: 180px;
    }

    .hs-promo-bottle {
        max-height: 160px;
    }
}

/* =============== HERO SLIDER — TABLET (768px – 1023px) =============== */
@media (min-width:768px) and (max-width:1023px) {
    .hs-spacer {
        height: 72px;
    }

    .hs-body {
        padding: 0 32px 8px;
    }

    .hs-slide {
        align-items: center;
        text-align: center;
    }

    .hs-visual-frame {
        max-height: 46vh;
    }

    .hs-vthumb {
        max-width: 28rem;
        max-height: 46vh;
    }

    .hs-title {
        font-size: clamp(28px, 4vw, 40px);
        text-align: center;
    }

    .hs-desc {
        font-size: 14px;
        max-width: 32rem;
        margin: 0 auto 14px;
        text-align: center;
    }

    .hs-cta-row {
        justify-content: center;
    }

    .hs-badge {
        margin: 4px auto 0;
    }

    /* Seed slide — tablet */
    .hs-slide--seed {
        text-align: left;
    }

    .hs-seed-layout {
        gap: 24px;
        padding: 0 16px;
    }

    .hs-seed-title {
        font-size: clamp(28px, 4vw, 40px);
    }

    .hs-seed-visual {
        max-width: 340px;
    }
}

/* =============== HERO SLIDER — DESKTOP (≥ 1024px) =============== */
@media (min-width:1024px) {
    .hs-spacer {
        height: 96px;
    }

    .hs-body {
        padding: 0 48px 12px;
    }

    .hs-gap {
        height: 36px;
    }

    .hs-slide {
        align-items: center;
        text-align: center;
    }

    /* Seed slide — desktop: override center text alignment */
    .hs-slide--seed {
        text-align: left;
        align-items: stretch;
    }

    .hs-seed-layout {
        padding: 0 48px;
        gap: 48px;
    }

    .hs-seed-visual {
        max-width: 500px;
    }

    .hs-visual {
        min-height: 10vh;
        margin-bottom: 16px;
    }

    .hs-visual-frame {
        max-height: 35vh;
    }

    .hs-visual-frame img {
        border-radius: 16px;
    }

    .hs-vthumb {
        max-width: 48rem;
        max-height: 35vh;
        border-radius: 16px;
    }

    .hs-play-btn {
        width: 64px;
        height: 64px;
    }

    .hs-play-btn svg {
        width: 28px;
        height: 28px;
    }

    .hs-title {
        font-size: clamp(26px, 3.5vw, 42px);
        margin-bottom: 12px;
        text-align: center;
    }

    .hs-desc {
        font-size: 16px;
        max-width: 42rem;
        margin: 0 auto 20px;
        text-align: center;
    }

    .hs-cta-row {
        justify-content: center;
        gap: 12px;
        margin-bottom: 16px;
    }

    .hs-cta {
        padding: 12px 28px;
        font-size: 15px;
    }

    .hs-stags-area {
        height: 100px;
    }

    .hs-stags-wrap::before,
    .hs-stags-wrap::after {
        width: 64px;
    }

    .hs-stags-track {
        gap: 12px;
    }

    .hs-stag {
        padding: 10px 24px;
    }

    .hs-stag span {
        font-size: 14px;
    }

    .hs-stags-wrap {
        max-width: 64rem;
        margin-left: auto;
        margin-right: auto;
    }

    .hs-badge-area {
        height: 100px;
    }

    .hs-badge {
        gap: 14px;
        padding: 10px 20px;
        margin: 4px auto 0;
    }

    .hs-badge-icon {
        width: 44px;
        height: 44px;
    }

    .hs-badge-txt strong {
        font-size: 13px;
    }

    .hs-badge-txt span {
        font-size: 11px;
    }

    .hs-arrow {
        display: flex;
    }

    .hs-dots {
        margin-bottom: 28px;
        gap: 8px;
    }

    .hs-dot {
        height: 5px;
    }
}

/* =============== HERO SLIDER — SHORT VIEWPORT (15" laptops) =============== */
@media (max-height:800px) and (min-width:1024px) {
    .hs-spacer {
        height: 96px;
    }

    .hs-gap {
        height: 16px;
    }

    .hs-visual {
        min-height: 18vh;
        margin-bottom: 4px;
    }

    .hs-visual-frame {
        max-height: 40vh;
    }

    .hs-title {
        font-size: clamp(24px, 3vw, 34px);
        margin-bottom: 4px;
    }

    .hs-desc {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .hs-cta-row {
        margin-bottom: 4px;
    }

    .hs-stags-area {
        height: 48px;
    }

    .hs-badge-area {
        height: 64px;
    }

    .hs-discover-row {
        margin-bottom: 6px;
    }

    .hs-dots {
        margin-bottom: 12px;
    }
}