/* ======================================================================
   SECTION — CATEGORY STRIP CRUISE
   Prefix: .csc-
   Marevia Cruise mutfak kategori vitrini. Emoji-only premium horizontal strip.
   ====================================================================== */

.csc {
    position: relative;
    padding: clamp(58px, 7vw, 92px) 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 16% 14%, rgba(201,168,76,.13), transparent 28%),
        radial-gradient(circle at 86% 74%, rgba(51,112,168,.18), transparent 32%),
        linear-gradient(180deg, var(--bg-page, #F8F6F0), #fff 78%);
}

.csc::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: repeating-linear-gradient(-55deg, transparent 0, transparent 68px, rgba(9,23,39,.035) 69px);
    opacity: .55;
}

.csc-inner {
    position: relative;
    z-index: 1;
    max-width: var(--container, 1180px);
    margin-inline: auto;
    padding: 0 var(--sp-4, 20px);
}

@media (min-width: 768px) {
    .csc-inner { padding: 0 var(--sp-6, 32px); }
}

.csc-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 30px;
}

.csc-head-copy { max-width: 720px; }

.csc-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--primary, #C9A84C);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .22em;
    text-transform: uppercase;
}

.csc-eyebrow::before {
    content: "";
    width: 30px;
    height: 1px;
    background: currentColor;
    opacity: .55;
}

.csc-title {
    margin: 0;
    color: var(--text, #102943);
    font-family: var(--font-display, Georgia, serif);
    font-size: clamp(2.1rem, 4.2vw, 3.45rem);
    line-height: .98;
    letter-spacing: -.035em;
    font-weight: 700;
}

.csc-subtitle {
    max-width: 610px;
    margin: 14px 0 0;
    color: var(--text-muted, #60748D);
    font-size: 16px;
    line-height: 1.75;
}

.csc-all-link {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid rgba(201,168,76,.34);
    background: rgba(255,255,255,.72);
    color: var(--text, #102943);
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    box-shadow: 0 12px 32px rgba(9,23,39,.07);
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.csc-all-link:hover {
    transform: translateY(-2px);
    border-color: var(--primary, #C9A84C);
    background: #fff;
}

.csc-all-link svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.csc-scroller-wrap {
    position: relative;
    margin-inline: calc(var(--sp-4, 20px) * -1);
    padding: 8px 0 2px;
}

@media (min-width: 768px) {
    .csc-scroller-wrap { margin-inline: calc(var(--sp-6, 32px) * -1); }
}

.csc-scroller {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 10px var(--sp-4, 20px) 18px;
    scrollbar-width: none;
}
.csc-scroller::-webkit-scrollbar { display: none; }

@media (min-width: 768px) {
    .csc-scroller {
        gap: 18px;
        padding-inline: var(--sp-6, 32px);
    }
}

.csc-card {
    flex: 0 0 168px;
    scroll-snap-align: start;
    min-height: 208px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 22px 16px 18px;
    border-radius: 24px;
    border: 1px solid rgba(215,225,236,.9);
    background: rgba(255,255,255,.78);
    color: var(--text, #102943);
    text-decoration: none;
    box-shadow: 0 10px 28px rgba(9,23,39,.055);
    backdrop-filter: blur(10px);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}

.csc-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201,168,76,.58);
    background: #fff;
    box-shadow: 0 22px 54px rgba(9,23,39,.12);
}

.csc-orb {
    position: relative;
    width: 82px;
    height: 82px;
    border-radius: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at 35% 24%, rgba(255,255,255,.95), transparent 28%),
        linear-gradient(145deg, rgba(247,237,208,.96), rgba(220,235,246,.92));
    border: 1px solid rgba(201,168,76,.34);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.42), 0 14px 30px rgba(9,23,39,.08);
    transition: transform .22s ease, box-shadow .22s ease;
}

.csc-card:hover .csc-orb {
    transform: scale(1.04) rotate(-2deg);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.5), 0 18px 38px rgba(201,168,76,.20);
}

.csc-emoji {
    font-size: 40px;
    line-height: 1;
    filter: drop-shadow(0 5px 8px rgba(9,23,39,.12));
}

.csc-fallback {
    font-family: var(--font-display, Georgia, serif);
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-dk, #8A6E2C);
}

.csc-name {
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text, #102943);
    font-family: var(--font-display, Georgia, serif);
    font-size: 21px;
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -.015em;
}

.csc-desc {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--text-muted, #60748D);
    font-size: 12px;
    line-height: 1.45;
}

.csc-nav-btn { display: none; }

@media (min-width: 1024px) {
    .csc-nav-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 42px;
        height: 42px;
        border-radius: 16px;
        border: 1px solid rgba(201,168,76,.30);
        background: rgba(255,255,255,.92);
        color: var(--text-muted, #60748D);
        cursor: pointer;
        box-shadow: 0 14px 34px rgba(9,23,39,.10);
        z-index: 2;
        transition: all .18s ease;
    }
    .csc-nav-btn:hover {
        background: var(--primary, #C9A84C);
        color: var(--primary-on, #091727);
        border-color: var(--primary, #C9A84C);
        transform: translateY(-50%) scale(1.04);
    }
    .csc-nav-prev { inset-inline-start: 8px; }
    .csc-nav-next { inset-inline-end: 8px; }
    .csc-nav-btn[hidden] { display: none; }
    .csc-nav-btn svg {
        width: 17px;
        height: 17px;
        fill: none;
        stroke: currentColor;
        stroke-width: 2.6;
    }
}

@media (max-width: 760px) {
    .csc { padding: 52px 0; }
    .csc-header {
        display: block;
        margin-bottom: 20px;
    }
    .csc-all-link { margin-top: 18px; }
    .csc-subtitle { font-size: 14.5px; }
    .csc-card {
        flex-basis: 142px;
        min-height: 188px;
        padding: 18px 13px 16px;
        border-radius: 21px;
    }
    .csc-orb {
        width: 72px;
        height: 72px;
        border-radius: 24px;
    }
    .csc-emoji { font-size: 35px; }
    .csc-name { font-size: 19px; }
    .csc-desc { font-size: 11.5px; }
}
