/* ═══════════════════════════════════════════════════════
   SBC Theme — Homepage CSS
   13 bölüm: Hero, CTA, Categories, Components, Products,
   Sale, Guides, Community, Blog, Trust, Banks, Story
   ═══════════════════════════════════════════════════════ */

/* ─── HERO SLIDER ─── */
.sbc-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    width: 100%;
    height: min(480px, 42vw); /* 21:9 oranını koruyarak tam genişlik */
}
.sbc-hero__track { position: relative; width: 100%; height: 100%; }
.sbc-hero__slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity .6s ease;
}
.sbc-hero__slide.is-active { opacity: 1; z-index: 1; }
.sbc-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.15) 100%);
}
.sbc-hero__content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 24px;
    max-width: 700px;
    margin: 0 auto;
}
.sbc-hero__title {
    font-size: clamp(28px, 5vw, 52px);
    font-weight: 800;
    color: var(--sbc-white);
    letter-spacing: -1px;
    line-height: 1.1;
    margin: 0 0 12px;
}
.sbc-hero__subtitle,
.sbc-hero__sub {
    font-size: clamp(14px, 2vw, 18px);
    color: rgba(255,255,255,.8);
    margin: 0 0 24px;
    line-height: 1.5;
}
.sbc-btn--hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--sbc-white);
    color: var(--sbc-black);
    font-size: 14px;
    font-weight: 800;
    border-radius: var(--sbc-r);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .8px;
    transition: all var(--sbc-ease);
    align-self: center;
}
.sbc-btn--hero:hover {
    background: var(--sbc-red);
    color: var(--sbc-white);
    transform: translateY(-2px);
}
/* Hero arrows */
.sbc-hero__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--sbc-white);
    background: rgba(0,0,0,.3);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: background var(--sbc-ease);
}
.sbc-hero__arrow:hover { background: rgba(0,0,0,.6); }
.sbc-hero__arrow--prev { left: 16px; }
.sbc-hero__arrow--next { right: 16px; }
/* Hero dots */
.sbc-hero__dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 8px;
}
.sbc-hero__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,.5);
    background: transparent;
    padding: 0;
    cursor: pointer;
    transition: all var(--sbc-ease);
}
.sbc-hero__dot.is-active {
    background: var(--sbc-white);
    border-color: var(--sbc-white);
    transform: scale(1.2);
}

/* ─── PERKS / TRUST BAR (App Safety Area) ─── */
.sbc-perks {
    border-bottom: 1px solid var(--sbc-200);
    padding: 14px 0;
    background: var(--sbc-50);
}
.sbc-perks__row {
    display: flex;
    align-items: center;
    gap: 28px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.sbc-perks__row::-webkit-scrollbar { display: none; }
.sbc-perks__item {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    flex-shrink: 0;
}
.sbc-perks__icon {
    font-size: 20px;
    flex-shrink: 0;
}
.sbc-perks__text {
    display: flex;
    flex-direction: column;
}
.sbc-perks__label {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--sbc-black);
    line-height: 1.2;
}
.sbc-perks__sub {
    font-size: 11px;
    font-weight: 400;
    color: var(--sbc-text-muted, var(--sbc-500));
    line-height: 1.3;
}
@media (max-width: 768px) {
    .sbc-perks__row {
        gap: 20px;
        padding: 0 4px;
    }
}

/* ─── CTA BAR ─── */
.sbc-cta {
    padding: 20px 0;
    background: var(--sbc-card-alt);
    border-bottom: 1px solid var(--sbc-100);
}
.sbc-cta__row {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
.sbc-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--sbc-black);
    color: var(--sbc-white);
    font-weight: 700;
    font-size: 14px;
    padding: 14px 28px;
    border-radius: var(--sbc-r-full);
    transition: all var(--sbc-ease);
    letter-spacing: .3px;
}
.sbc-cta__btn:hover {
    background: var(--sbc-accent);
    color: var(--sbc-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(255,77,0,.25);
}
.sbc-cta__emoji { font-size: 18px; }

/* ─── KATEGORİLER RAIL ─── */
.sbc-cats__rail {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(128px, 1fr));
    gap: 10px;
}

.sbc-cat-card {
    display: block;
    border-radius: var(--sbc-r);
    overflow: hidden;
    text-decoration: none;
    transition: transform var(--sbc-ease), box-shadow var(--sbc-ease);
}
.sbc-cat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sbc-shadow-md);
}

.sbc-cat-card__img {
    position: relative;
    aspect-ratio: 3/4;
    background: var(--sbc-900);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--sbc-r);
}
.sbc-cat-card__img img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.sbc-cat-card:hover .sbc-cat-card__img img { transform: scale(1.08); }

.sbc-cat-card__emoji {
    font-size: 48px;
    position: relative; z-index: 2;
}

.sbc-cat-card__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.82) 0%, rgba(0,0,0,.2) 55%, transparent 100%);
    z-index: 1;
}

.sbc-cat-card__info {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 12px 10px;
    z-index: 2;
}
.sbc-cat-card__name {
    display: block;
    font-size: 12px;
    font-weight: 800;
    color: var(--sbc-white);
    letter-spacing: .6px;
    line-height: 1.2;
    text-transform: uppercase;
}
.sbc-cat-card__count {
    display: block;
    font-size: 10px;
    color: rgba(255,255,255,.6);
    font-weight: 500;
    margin-top: 2px;
}

/* Mobile: yatay scroll — sbc-wrap overflow:hidden peek'i doğal kırpar */
@media (max-width: 768px) {
    .sbc-cats__rail {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
        gap: 10px;
        padding-bottom: 4px;
    }
    .sbc-cats__rail::-webkit-scrollbar { display: none; }
    .sbc-cat-card {
        flex: 0 0 auto;
        width: 118px;
        scroll-snap-align: start;
    }
    /* 335px inner width: 2 kart(236px) + gap(10px) + 79px peek = 325px → 3. kart %67 görünür */
}

/* ─── COMPONENTS PILLS ─── */
.sbc-comps__row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* ─── PRODUCT GRID ─── */
.sbc-prods__grid,
.sbc-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.sbc-card {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--sbc-100);
    border-radius: var(--sbc-r);
    overflow: hidden;
    background: var(--sbc-white);
    transition: all var(--sbc-ease);
}
.sbc-card:hover {
    border-color: var(--sbc-200);
    box-shadow: var(--sbc-shadow-md);
    transform: translateY(-4px);
}
.sbc-card__img {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: #f5f5f5;
}
.sbc-card__img a { display: block; width: 100%; height: 100%; }
.sbc-card__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
    margin: 0 !important;
    transition: transform .4s ease;
}
.sbc-card:hover .sbc-card__img img { transform: scale(1.05); }
.sbc-card__link { color: inherit; display: block; flex: 1; }
.sbc-card__badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--sbc-red);
    color: var(--sbc-white);
    font-size: 11px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: var(--sbc-r-sm);
    z-index: 2;
}
/* YENİ badge — turuncu/siyah marka renkleri */
.sbc-card__badge--new {
    background: var(--sbc-accent, #FF4D00);
    color: var(--sbc-white);
}
/* İndirimli + yeni ürünlerde: YENİ badge sağ üstte */
.sbc-card__badge--new-secondary {
    left: auto;
    right: 8px;
    background: var(--sbc-black, #0A0A0A);
    color: var(--sbc-accent, #FF4D00);
    border: 1.5px solid var(--sbc-accent, #FF4D00);
}
.sbc-card__body {
    padding: 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.sbc-card__title {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.sbc-card__price { font-size: 14px; font-weight: 800; }
.sbc-card__price del { color: var(--sbc-400); font-weight: 500; font-size: 12px; }
.sbc-card__price ins { color: var(--sbc-red); text-decoration: none; font-weight: 800; }

/* ─── ADD TO CART (homepage cards) ─── */
.sbc-card__actions { padding: 0 12px 12px; }
.sbc-card__atc {
    display: block !important;
    width: 100%;
    text-align: center;
    padding: 10px 16px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: .5px;
    border: none !important;
    border-radius: var(--sbc-r-sm) !important;
    background: var(--sbc-black) !important;
    color: var(--sbc-white) !important;
    cursor: pointer;
    transition: all var(--sbc-ease);
    line-height: 1.4 !important;
}
.sbc-card__atc:hover {
    background: var(--sbc-accent, #FF4D00) !important;
    color: var(--sbc-white) !important;
}
.sbc-card__atc--view {
    background: var(--sbc-600, #555) !important;
    color: var(--sbc-white) !important;
    border: none !important;
}
.sbc-card__atc--view:hover {
    background: var(--sbc-black) !important;
    color: var(--sbc-white) !important;
}
.sbc-card__atc.added::after { content: ' \2713'; }
.sbc-card__atc.loading { opacity: .6; pointer-events: none; }

/* ─── SALE SECTION ─── */
.sbc-sale { background: transparent; }
.sbc-sale__inner {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
    align-items: center;
}
.sbc-sale__left {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.sbc-sale__title { font-size: 28px; font-weight: 800; margin: 0; }
.sbc-sale__desc { color: var(--sbc-500); font-size: 15px; margin: 0; }
.sbc-sale__right {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

/* ─── GUIDES ─── */
.sbc-guides__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.sbc-guide {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 20px;
    border-radius: var(--sbc-r-lg);
    background: var(--sbc-50);
    border: 1px solid var(--sbc-100);
    transition: all var(--sbc-ease);
}
.sbc-guide:hover {
    transform: translateY(-4px);
    box-shadow: var(--sbc-shadow-md);
    border-color: var(--sbc-200);
}
.sbc-guide__icon { font-size: 36px; margin-bottom: 12px; }
.sbc-guide h3 { font-size: 15px; font-weight: 800; margin: 0 0 6px; }
.sbc-guide p { font-size: 13px; color: var(--sbc-500); margin: 0; line-height: 1.4; }

/* ─── COMMUNITY ─── */
.sbc-community {
    background: var(--sbc-black);
    color: var(--sbc-white);
    padding: 56px 0;
}
.sbc-community .sbc-sec__title { color: var(--sbc-white); }
.sbc-community__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.sbc-comm-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: var(--sbc-white);
    padding: 28px 16px;
    border-radius: var(--sbc-r-lg);
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    transition: all var(--sbc-ease);
}
.sbc-comm-card:hover {
    background: rgba(255,255,255,.12);
    transform: translateY(-4px);
    color: var(--sbc-white);
}
.sbc-comm-card__icon { font-size: 32px; margin-bottom: 12px; }
.sbc-comm-card h3 { font-size: 15px; font-weight: 800; margin: 0 0 6px; color: var(--sbc-white); }
.sbc-comm-card p { font-size: 13px; color: rgba(255,255,255,.6); margin: 0; }

/* Topluluk kart — görsel varyantı */
.sbc-comm-card.has-image {
    padding: 0;
    overflow: hidden;
}
.sbc-comm-card__media {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}
.sbc-comm-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}
.sbc-comm-card.has-image:hover .sbc-comm-card__media img {
    transform: scale(1.05);
}
.sbc-comm-card__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 48px;
    height: 48px;
    background: rgba(0,0,0,.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    transition: background .2s;
}
.sbc-comm-card.has-image:hover .sbc-comm-card__play {
    background: var(--sbc-red);
}
.sbc-comm-card.has-image h3,
.sbc-comm-card.has-image p {
    padding: 0 16px;
}
.sbc-comm-card.has-image h3 { margin-top: 12px; }
.sbc-comm-card.has-image p { padding-bottom: 16px; }

/* ─── BLOG ─── */
.sbc-blog__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.sbc-post {
    border-radius: var(--sbc-r-lg);
    overflow: hidden;
    border: 1px solid var(--sbc-100);
    transition: all var(--sbc-ease);
    background: var(--sbc-white);
    display: block;
}
.sbc-post:hover {
    transform: translateY(-4px);
    box-shadow: var(--sbc-shadow-md);
}
.sbc-post__img { aspect-ratio: 16/10; overflow: hidden; }
.sbc-post__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}
.sbc-post:hover .sbc-post__img img { transform: scale(1.05); }
.sbc-post__info { padding: 16px; }
.sbc-post__date {
    font-size: 11px;
    font-weight: 600;
    color: var(--sbc-400);
    text-transform: uppercase;
    letter-spacing: .5px;
}
.sbc-post__title {
    font-size: 16px;
    font-weight: 800;
    margin: 6px 0 0;
    line-height: 1.3;
    color: var(--sbc-black);
}

/* ─── TRUST BAR ─── */
.sbc-trust {
    background: var(--sbc-50);
    border-top: 1px solid var(--sbc-100);
}
.sbc-trust__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.sbc-trust__item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}
.sbc-trust__item > span:first-child { font-size: 28px; }
.sbc-trust__item strong { font-weight: 700; font-size: 14px; display: block; }
.sbc-trust__item small { font-size: 12px; color: var(--sbc-500); }

/* ─── BANKS ─── */
.sbc-banks { text-align: center; padding: 32px 0; }
.sbc-banks__text { font-size: 14px; font-weight: 700; color: var(--sbc-500); margin: 0 0 16px; }
.sbc-banks__logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.sbc-banks__logos span {
    font-size: 13px;
    font-weight: 700;
    color: var(--sbc-400);
    letter-spacing: .5px;
}

/* ─── STORY ─── */
.sbc-story { text-align: center; padding: 64px 0; }
.sbc-story__inner { max-width: 640px; margin: 0 auto; }
.sbc-story__title { font-size: clamp(28px, 4vw, 40px); font-weight: 800; margin: 12px 0; }
.sbc-story__text { font-size: 16px; color: var(--sbc-500); line-height: 1.7; margin: 0 0 24px; }
.sbc-story__links { display: flex; gap: 20px; justify-content: center; }
.sbc-story__links a {
    font-size: 14px;
    font-weight: 700;
    color: var(--sbc-black);
    transition: color var(--sbc-ease);
}
.sbc-story__links a:hover { color: var(--sbc-red); }

/* ─── MOBILE ─── */
@media (max-width: 768px) {
    .sbc-hero { aspect-ratio: 16/9; max-height: 320px; }
    .sbc-hero__title { font-size: 24px; }
    .sbc-hero__inner { padding: 24px; }
    .sbc-cats__bento {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 140px 120px 120px;
    }
    .sbc-cat--hero { grid-column: 1 / span 2; grid-row: 1; }
    .sbc-cat--mid:nth-child(2) { grid-column: 1; grid-row: 2; }
    .sbc-cat--mid:nth-child(3) { grid-column: 2; grid-row: 2; }
    .sbc-cat--sm:nth-child(4)  { grid-column: 1; grid-row: 3; }
    .sbc-cat--sm:nth-child(5)  { grid-column: 2; grid-row: 3; }
    .sbc-cat:hover { transform: none; box-shadow: none; }
    .sbc-cats__pills { gap: 6px; }
    .sbc-cat-pill { padding: 6px 10px; font-size: 12px; }
    .sbc-prods__grid, .sbc-product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .sbc-guides__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .sbc-community__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .sbc-blog__grid { grid-template-columns: 1fr; gap: 16px; }
    .sbc-trust__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .sbc-sale__inner { grid-template-columns: 1fr; }
    .sbc-sale__right { grid-template-columns: repeat(2, 1fr); }
    .sbc-sec { padding: 32px 0; }
    .sbc-sec__title { font-size: 22px; }
    /* No hover on mobile */
    .sbc-card:hover,
    .sbc-cat:hover,
    .sbc-guide:hover,
    .sbc-comm-card:hover,
    .sbc-post:hover { transform: none; box-shadow: none; }
}

/* ─── TABLET ─── */
@media (min-width: 769px) and (max-width: 1024px) {
    .sbc-cats__bento { grid-template-columns: 1fr 1fr 1fr; grid-template-rows: 180px 140px; }
    .sbc-prods__grid, .sbc-product-grid { grid-template-columns: repeat(3, 1fr); }
    .sbc-guides__grid { grid-template-columns: repeat(2, 1fr); }
    .sbc-community__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ─── HERO CTA ─── */
/* ─── HERO CTA — App ile senkron renk paleti ─── */
.sbc-hero-cta {
    padding: 12px 0 4px;
    background: var(--sbc-white);
}
.sbc-hero-cta__row {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 14px;
    flex-wrap: wrap;
}
.sbc-hero-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    border-radius: var(--sbc-r-sm);
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all var(--sbc-ease);
    cursor: pointer;
    text-decoration: none;
}
/* Neon — "Kaykayını Seç" (app'teki yeşil) */
.sbc-hero-cta__btn--neon {
    background: var(--sbc-neon);
    color: var(--sbc-black);
}
.sbc-hero-cta__btn--neon:hover {
    background: var(--sbc-neon-dk);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(190,255,0,.3);
    color: var(--sbc-black);
}
/* Accent — burnt orange */
.sbc-hero-cta__btn--accent {
    background: var(--sbc-accent);
    color: var(--sbc-white);
}
.sbc-hero-cta__btn--accent:hover {
    background: var(--sbc-accent-dk);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255,77,0,.3);
    color: var(--sbc-white);
}
/* Dark — siyah */
.sbc-hero-cta__btn--dark {
    background: var(--sbc-black);
    color: var(--sbc-white);
}
.sbc-hero-cta__btn--dark:hover {
    background: var(--sbc-accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255,77,0,.2);
    color: var(--sbc-white);
}
/* Ghost — şeffaf border (eski orange/red uyumluluk) */
.sbc-hero-cta__btn--ghost,
.sbc-hero-cta__btn--orange,
.sbc-hero-cta__btn--red {
    background: var(--sbc-black);
    color: var(--sbc-white);
}
.sbc-hero-cta__btn--ghost:hover,
.sbc-hero-cta__btn--orange:hover,
.sbc-hero-cta__btn--red:hover {
    background: var(--sbc-accent);
    transform: translateY(-2px);
    color: var(--sbc-white);
}
/* Wide buton — 2 satırlı (ana metin + alt açıklama) */
.sbc-hero-cta__row--2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    max-width: 560px;
    margin: 0 auto 0;
}
.sbc-hero-cta__btn--wide {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 14px 20px;
    text-align: center;
    gap: 2px;
}
.sbc-hero-cta__btn-main {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .8px;
    text-transform: uppercase;
}
.sbc-hero-cta__btn-emoji {
    font-size: 16px;
}
.sbc-hero-cta__btn-sub {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
    opacity: .6;
    line-height: 1.3;
}
.sbc-hero-cta__btn--neon .sbc-hero-cta__btn-sub { color: var(--sbc-black); }
.sbc-hero-cta__btn--dark .sbc-hero-cta__btn-sub { color: var(--sbc-300); }
@media (max-width: 480px) {
    .sbc-hero-cta__row--2col {
        grid-template-columns: 1fr 1fr;
        max-width: 100%;
        gap: 8px;
    }
    .sbc-hero-cta__btn--wide {
        padding: 12px 14px;
    }
    .sbc-hero-cta__btn-main {
        font-size: 12px;
    }
    .sbc-hero-cta__btn-sub {
        font-size: 9px;
    }
}

/* Banner */
.sbc-hero-cta__banner {
    display: block;
    text-align: center;
    background: var(--sbc-accent);
    color: var(--sbc-white);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: .5px;
    padding: 13px 20px;
    border-radius: var(--sbc-r-sm);
    transition: all var(--sbc-ease);
    text-decoration: none;
}
.sbc-hero-cta__banner:hover {
    background: var(--sbc-accent-dk);
    color: var(--sbc-white);
}

/* ─── VIDEO HERO ─── */
.sbc-video-hero {
    position: relative;
    width: 100%;
    aspect-ratio: 16/7;
    max-height: 560px;
    overflow: hidden;
    background: var(--sbc-black);
}
.sbc-video-hero__wrap {
    position: relative;
    width: 100%;
    height: 100%;
}
.sbc-video-hero video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.sbc-video-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.2);
    pointer-events: none;
}
.sbc-video-hero__btn {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(16,185,129,.9);
    color: var(--sbc-white);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 10px 18px;
    border-radius: var(--sbc-r-full);
    backdrop-filter: blur(4px);
    transition: all var(--sbc-ease);
    text-decoration: none;
}
.sbc-video-hero__btn:hover {
    background: #059669;
    color: var(--sbc-white);
    transform: translateY(-2px);
}
@media (max-width: 768px) {
    .sbc-video-hero { aspect-ratio: 16/9; max-height: 260px; }
}

/* ─── REVIEWS CTA ─── */
.sbc-reviews-cta {
    background: #1c1917;
    color: var(--sbc-white);
    padding: 56px 0;
}
.sbc-reviews-cta__head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 32px;
}
.sbc-reviews-cta .sbc-sec__title {
    color: var(--sbc-white);
    font-size: clamp(20px, 3vw, 28px);
    margin-bottom: 12px;
}
.sbc-reviews-cta__desc {
    color: rgba(255,255,255,.7);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}
.sbc-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}
.sbc-review-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--sbc-r-lg);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.sbc-review-card__header {
    display: flex;
    align-items: center;
    gap: 12px;
}
.sbc-review-card__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--sbc-red);
    color: var(--sbc-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    flex-shrink: 0;
}
.sbc-review-card__author {
    font-size: 14px;
    font-weight: 700;
    color: var(--sbc-white);
}
.sbc-review-card__verified {
    font-size: 11px;
    color: #10b981;
    font-weight: 600;
}
.sbc-review-card__stars {
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: 16px;
    color: rgba(255,255,255,.2);
}
.sbc-review-card__stars .filled { color: #f59e0b; }
.sbc-review-card__score {
    font-size: 12px;
    font-weight: 700;
    color: rgba(255,255,255,.6);
    margin-left: 4px;
}
.sbc-review-card__text {
    font-size: 14px;
    color: rgba(255,255,255,.8);
    line-height: 1.5;
    margin: 0;
    flex: 1;
}
.sbc-review-card__date {
    font-size: 11px;
    color: rgba(255,255,255,.4);
}
/* Ürün satırı — foto + isim + ok */
.sbc-review-card__product-row {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    border-top: 1px solid rgba(255,255,255,.08);
    padding-top: 10px;
    margin-top: 4px;
    transition: opacity var(--sbc-ease);
}
.sbc-review-card__product-row:hover { opacity: .85; }
.sbc-review-card__prod-img {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    object-fit: cover;
    flex-shrink: 0;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.12);
}
.sbc-review-card__prod-name {
    font-size: 12px;
    color: rgba(255,255,255,.8);
    font-weight: 600;
    flex: 1;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.sbc-review-card__prod-arrow {
    font-size: 14px;
    color: var(--sbc-red);
    font-weight: 700;
    flex-shrink: 0;
}
.sbc-reviews-cta__action {
    text-align: center;
}
@media (max-width: 768px) {
    .sbc-reviews-grid { grid-template-columns: 1fr; }
}
@media (min-width: 769px) and (max-width: 1024px) {
    .sbc-reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════════════════════════════
   YENİ BLOKLAR — Countdown, Poster Slider, Featured Banner,
   Brand Showcase, Product Collection
   ═══════════════════════════════════════════════════════ */

/* ─── GERİ SAYIM KAMPANYASI ─── */
.sbc-countdown {
    padding: 48px 0;
    overflow: hidden;
}
.sbc-countdown__inner {
    display: -webkit-flex !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    gap: 40px;
}
.sbc-countdown__content {
    flex: 1;
    min-width: 0;
}
.sbc-countdown__title {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 800;
    margin: 0 0 8px;
    line-height: 1.2;
}
.sbc-countdown__desc {
    font-size: 15px;
    opacity: .8;
    margin: 0 0 20px;
}
.sbc-countdown__timer {
    display: -webkit-flex !important;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    gap: 8px !important;
    margin-bottom: 24px;
}
.sbc-cd-unit {
    display: -webkit-flex !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center;
    background: rgba(255,255,255,.12);
    border-radius: 10px;
    padding: 14px 16px;
    min-width: 70px;
    text-align: center;
}
.sbc-cd-num {
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
    font-variant-numeric: tabular-nums;
    display: block;
    margin-bottom: 4px;
}
.sbc-cd-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: .6;
    display: block;
}
.sbc-cd-sep {
    font-size: 28px;
    font-weight: 800;
    opacity: .3;
    line-height: 1;
    display: flex;
    align-items: center;
    padding-bottom: 14px;
}
.sbc-btn--countdown {
    display: inline-flex;
    padding: 14px 28px;
    background: var(--sbc-white);
    color: var(--sbc-black);
    font-weight: 800;
    font-size: 14px;
    border-radius: var(--sbc-r);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .8px;
    transition: all var(--sbc-ease);
}
.sbc-btn--countdown:hover {
    background: var(--sbc-red);
    color: var(--sbc-white);
    transform: translateY(-2px);
}
.sbc-countdown__img {
    max-width: 300px;
    flex-shrink: 0;
}
.sbc-countdown__img img {
    width: 100%;
    height: auto;
    border-radius: var(--sbc-r-lg);
}
@media (max-width: 768px) {
    .sbc-countdown__inner { flex-direction: column !important; text-align: center; }
    .sbc-countdown__timer { justify-content: center !important; }
    .sbc-countdown__img { display: none; }
    .sbc-cd-unit { min-width: 58px; padding: 10px 12px; }
    .sbc-cd-num { font-size: 26px; }
}

/* ─── POSTER SLIDER ─── */
.sbc-poster-slider {
    overflow: hidden;
}
.sbc-ps__viewport {
    position: relative;
    overflow: hidden;
    border-radius: var(--sbc-r-lg);
}
.sbc-ps__track {
    display: flex;
    transition: transform .5s ease;
}
.sbc-ps__slide {
    min-width: 100%;
    flex-shrink: 0;
}
.sbc-ps__slide img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 21/9;
    object-fit: cover;
}
.sbc-ps__slide a { display: block; }
/* Arrows */
.sbc-ps__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--sbc-white);
    background: rgba(0,0,0,.3);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: background var(--sbc-ease);
}
.sbc-ps__arrow:hover { background: rgba(0,0,0,.6); }
.sbc-ps__arrow--prev { left: 12px; }
.sbc-ps__arrow--next { right: 12px; }
/* Dots */
.sbc-ps__dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 6px;
}
.sbc-ps__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,.4);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all var(--sbc-ease);
}
.sbc-ps__dot.is-active {
    background: var(--sbc-white);
    transform: scale(1.3);
}
@media (max-width: 768px) {
    .sbc-ps__slide img { aspect-ratio: 16/9; }
    .sbc-ps__arrow { width: 36px; height: 36px; font-size: 22px; }
}

/* ─── ÖNE ÇIKAN BANNER ─── */
.sbc-fbanner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 0;
}
.sbc-fbanner__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.35);
}
.sbc-fbanner__content {
    position: relative;
    z-index: 2;
    padding: 48px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.sbc-fbanner__title {
    font-size: clamp(22px, 4vw, 38px);
    font-weight: 800;
    letter-spacing: -1px;
    margin: 0;
}
.sbc-fbanner__subtitle {
    font-size: clamp(14px, 2vw, 18px);
    opacity: .8;
    margin: 0;
}
.sbc-btn--banner {
    display: inline-flex;
    padding: 14px 32px;
    background: var(--sbc-white);
    color: var(--sbc-black);
    font-weight: 800;
    font-size: 14px;
    border-radius: var(--sbc-r);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-top: 8px;
    transition: all var(--sbc-ease);
}
.sbc-btn--banner:hover {
    background: var(--sbc-red);
    color: var(--sbc-white);
    transform: translateY(-2px);
}

/* ─── MARKA VİTRİNİ ─── */
.sbc-brand { padding: 48px 0; }
.sbc-brand__banner {
    margin-bottom: 24px;
    border-radius: var(--sbc-r-lg);
    overflow: hidden;
}
.sbc-brand__banner img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 200px;
    object-fit: cover;
}
.sbc-brand__banner a { display: block; }

/* ─── ÜRÜN KOLEKSİYONU ─── */
.sbc-collection .sbc-sec__desc {
    font-size: 15px;
    color: var(--sbc-500);
    margin: 4px 0 0;
}

/* ─── HERO MOBİL ─── */
@media (max-width: 768px) {
    .sbc-hero { aspect-ratio: 16/9; max-height: 300px; }
    .sbc-hero__arrow { width: 36px; height: 36px; font-size: 22px; }
    .sbc-hero__arrow--prev { left: 8px; }
    .sbc-hero__arrow--next { right: 8px; }
    .sbc-btn--hero { padding: 10px 20px; font-size: 12px; }
}

/* ═══════════════════════════════════════════════════════
   MARKA LOGO BARI — Kayan Carousel
   CSS-only infinite scroll, JS gerektirmez
   ═══════════════════════════════════════════════════════ */
.sbc-brand-bar {
    padding: 28px 0;
    background: #fff;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    overflow: hidden;
    position: relative;
}

/* Kenar fade efekti */
.sbc-brand-bar::before,
.sbc-brand-bar::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}
.sbc-brand-bar::before {
    left: 0;
    background: linear-gradient(to right, #fff 0%, transparent 100%);
}
.sbc-brand-bar::after {
    right: 0;
    background: linear-gradient(to left, #fff 0%, transparent 100%);
}

.sbc-brand-bar__inner {
    position: relative;
}

/* Kayan track — 2x logo seti, seamless loop */
.sbc-brand-bar__track {
    display: flex;
    align-items: center;
    gap: 48px;
    width: max-content;
    animation: sbc-brand-scroll var(--sbc-brand-speed, 35s) linear infinite;
}

/* Hover'da duraklat */
.sbc-brand-bar:hover .sbc-brand-bar__track {
    animation-play-state: paused;
}

/* Her logo item — sabit kutu, her logo aynı alana sığar */
.sbc-brand-bar__item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 120px;
    height: 48px;
    padding: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sbc-brand-bar__item img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.5);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.sbc-brand-bar__item:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

/* Sonsuz kaydırma animasyonu */
@keyframes sbc-brand-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ─── MARKA BARI MOBİL ─── */
@media (max-width: 768px) {
    .sbc-brand-bar {
        padding: 20px 0;
    }
    .sbc-brand-bar__track {
        gap: 32px;
    }
    .sbc-brand-bar__item img {
        height: 28px;
    }
    .sbc-brand-bar::before,
    .sbc-brand-bar::after {
        width: 40px;
    }
}

/* ═══════════════════════════════════════════════════════
   APP İNDİR BÖLÜMÜ
   ═══════════════════════════════════════════════════════ */
.sbc-app-dl {
    padding: 64px 0;
    background: linear-gradient(135deg, var(--sbc-black) 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
}
.sbc-app-dl::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,77,0,.12) 0%, transparent 70%);
    pointer-events: none;
}

.sbc-app-dl__inner {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 48px;
    align-items: center;
}

/* ─── Metin ─── */
.sbc-app-dl__text {
    position: relative;
    z-index: 1;
}
.sbc-app-dl .sbc-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--sbc-neon);
    background: rgba(190,255,0,.1);
    padding: 6px 14px;
    border-radius: var(--sbc-r-full);
    margin-bottom: 16px;
}
.sbc-app-dl__title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 900;
    color: var(--sbc-white);
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 16px;
}
.sbc-app-dl__desc {
    font-size: 16px;
    line-height: 1.7;
    color: var(--sbc-400);
    margin-bottom: 20px;
    max-width: 480px;
}

/* Feature list */
.sbc-app-dl__features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.sbc-app-dl__features li {
    font-size: 14px;
    font-weight: 600;
    color: var(--sbc-300);
    padding: 6px 0;
}

/* Store badges */
.sbc-app-dl__badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.sbc-app-dl__badge {
    display: inline-flex;
    transition: transform var(--sbc-ease), opacity var(--sbc-ease);
    border-radius: 8px;
    overflow: hidden;
}
.sbc-app-dl__badge:hover {
    transform: translateY(-3px);
    opacity: .9;
}
.sbc-app-dl__badge svg {
    display: block;
}

/* ─── Telefon Mockup ─── */
.sbc-app-dl__visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}
.sbc-app-dl__phone {
    width: 200px;
    height: 400px;
    background: var(--sbc-dark);
    border-radius: 28px;
    border: 3px solid rgba(255,255,255,.15);
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0,0,0,.4), 0 0 0 1px rgba(255,255,255,.05);
    position: relative;
}
.sbc-app-dl__phone::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 5px;
    background: rgba(255,255,255,.1);
    border-radius: 10px;
    z-index: 5;
}
.sbc-app-dl__phone-screen {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #111;
}
.sbc-app-dl__phone-header {
    padding: 22px 16px 10px;
    display: flex;
    align-items: center;
}
.sbc-app-dl__phone-logo {
    font-size: 16px;
    font-weight: 900;
    color: var(--sbc-white);
    letter-spacing: 2px;
}
.sbc-app-dl__phone-content {
    flex: 1;
    padding: 8px 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.sbc-app-dl__phone-card {
    height: 100px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(255,77,0,.2) 0%, rgba(255,77,0,.05) 100%);
    border: 1px solid rgba(255,255,255,.06);
}
.sbc-app-dl__phone-card--sm {
    height: 52px;
    background: linear-gradient(135deg, rgba(255,255,255,.06) 0%, rgba(255,255,255,.02) 100%);
}
.sbc-app-dl__phone-nav {
    display: flex;
    justify-content: space-around;
    padding: 10px 8px 14px;
    background: rgba(255,255,255,.04);
    border-top: 1px solid rgba(255,255,255,.06);
    font-size: 14px;
}

/* ─── App İndir Responsive ─── */
@media (max-width: 768px) {
    .sbc-app-dl { padding: 48px 0; }
    .sbc-app-dl__inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
    }
    .sbc-app-dl__desc { margin-left: auto; margin-right: auto; }
    .sbc-app-dl__features {
        grid-template-columns: 1fr;
        text-align: left;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }
    .sbc-app-dl__badges { justify-content: center; }
    .sbc-app-dl__phone { width: 160px; height: 320px; }
    .sbc-app-dl__phone-card { height: 72px; }
}
@media (min-width: 769px) and (max-width: 1024px) {
    .sbc-app-dl__inner {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .sbc-app-dl__phone { width: 180px; height: 360px; }
}
