/* /public_html/css/urunler.css */
/* FAFUER — Ürünler sayfası */

.products-page {
    background: var(--black);
    color: var(--text-light);
    overflow-x: clip;
}

.products-page .main-nav a[aria-current="page"] {
    color: #fff;
    background: rgba(255, 255, 255, .08);
    border-radius: 999px;
}

/* HERO */
.store-hero-video {
    position: relative;
    padding-top: calc(var(--header-h) + env(safe-area-inset-top));
    background: #000;
    overflow: hidden;
}

.store-hero-video-media {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 7;
    min-height: 420px;
    max-height: 760px;
    overflow: hidden;
    background: #000;
}

.store-hero-video-media video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    background: #000;
    display: block;
}

.store-hero-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .08) 0%, rgba(0, 0, 0, .03) 24%, rgba(0, 0, 0, .32) 100%);
    z-index: 1;
    pointer-events: none;
}

/* MINI CATEGORIES */
.store-mini-cats {
    padding: 18px 0 28px;
    background: var(--black);
    position: relative;
    z-index: 2;
}

.store-mini-wrap {
    position: relative;
}

.store-mini-row {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    scroll-behavior: auto;
    padding: 2px 2px 8px;
    cursor: grab;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
    user-select: none;
    overscroll-behavior-x: contain;
    will-change: scroll-position;
}

.store-mini-row::-webkit-scrollbar {
    display: none;
}

.store-mini-row.is-dragging {
    cursor: grabbing;
    user-select: none;
}

.store-mini-item {
    min-width: 92px;
    flex: 0 0 auto;
    display: grid;
    gap: 10px;
    justify-items: center;
    text-align: center;
    color: var(--text-light-soft);
    text-decoration: none;
    transition: transform var(--speed), color var(--speed), opacity var(--speed);
    will-change: transform;
    -webkit-tap-highlight-color: transparent;
}

.store-mini-item:hover {
    transform: translateY(-2px);
    color: #fff;
}

.store-mini-icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    font-size: 20px;
    font-weight: 800;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    flex-shrink: 0;
}

.store-mini-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.store-mini-label {
    font-size: 13px;
    line-height: 1.35;
    font-weight: 700;
    max-width: 84px;
}

/* SECTIONS */
.store-block {
    padding: 34px 0 26px;
    position: relative;
}

.store-head {
    margin-bottom: 22px;
}

.store-head h2 {
    margin: 0;
    font-size: clamp(30px, 4.4vw, 50px);
    line-height: 1.03;
    letter-spacing: -.05em;
    font-weight: 700;
    text-wrap: balance;
}

.store-head p {
    margin: 10px 0 0;
    max-width: 760px;
    font-size: 17px;
    line-height: 1.72;
}

.store-dark {
    background: var(--black);
    color: var(--text-light);
}

.store-dark .store-head h2 {
    color: #fff;
}

.store-dark .store-head p {
    color: var(--text-light-soft);
}

.store-light {
    background: var(--white-soft);
    color: var(--text-dark);
}

.store-light .store-head h2 {
    color: var(--text-dark);
}

.store-light .store-head p {
    color: var(--text-dark-soft);
}

.store-tag {
    margin: 0 0 8px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .72);
}

.store-light .store-tag {
    color: var(--text-dark-faint);
}

/* FEATURED */
.store-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.store-feature-card {
    position: relative;
    min-height: 560px;
    border-radius: 34px;
    overflow: hidden;
    background: #111;
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow: var(--shadow-mid);
    isolation: isolate;
}

.store-feature-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.001);
}

.store-feature-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .42) 0%, rgba(0, 0, 0, .10) 32%, rgba(0, 0, 0, .20) 100%);
    z-index: 1;
}

.store-feature-copy {
    position: absolute;
    inset: 22px;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

.store-feature-copy h3 {
    margin: 0;
    color: #fff;
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.04;
    letter-spacing: -.04em;
    max-width: 10ch;
    text-wrap: balance;
}

.store-feature-copy p {
    display: none;
}

.store-feature-copy .store-actions {
    margin-top: auto;
}

/* ACTIONS */
.store-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 16px;
    align-items: center;
}

.store-actions .btn,
.store-bottom-actions .btn {
    width: auto;
    flex: 0 0 auto;
    min-height: 48px;
    padding: 0 20px;
}

/* SHELF */
.store-shelf-wrap {
    position: relative;
}

.store-shelf-nav {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-bottom: 14px;
    position: relative;
    z-index: 3;
}

.store-shelf-btn {
    width: 46px;
    height: 46px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .08);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 14px 28px rgba(0, 0, 0, .20),
        inset 0 1px 0 rgba(255, 255, 255, .06);
    transition: transform var(--speed), background var(--speed), border-color var(--speed), opacity var(--speed);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    touch-action: manipulation;
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    -webkit-tap-highlight-color: transparent;
}

.store-shelf-btn:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, .12);
}

.store-shelf-btn:active {
    transform: scale(.97);
}

.store-shelf-btn:focus-visible {
    outline: 2px solid rgba(255, 255, 255, .55);
    outline-offset: 2px;
}

.store-light .store-shelf-btn {
    color: var(--text-dark);
    background: rgba(17, 17, 17, .04);
    border-color: rgba(17, 17, 17, .08);
    box-shadow:
        0 14px 24px rgba(0, 0, 0, .08),
        inset 0 1px 0 rgba(255, 255, 255, .65);
}

.store-light .store-shelf-btn:hover {
    background: rgba(17, 17, 17, .08);
}

.store-light .store-shelf-btn:focus-visible {
    outline: 2px solid rgba(17, 17, 17, .35);
}

.store-shelf-frame {
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
    cursor: grab;
    scrollbar-width: none;
    scroll-behavior: auto;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
    user-select: none;
    padding-bottom: 4px;
    overscroll-behavior-x: contain;
    will-change: scroll-position;
}

.store-shelf-frame::-webkit-scrollbar {
    display: none;
}

.store-shelf-frame.is-dragging {
    cursor: grabbing;
    user-select: none;
}

.store-shelf {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - (18px * 3)) / 4);
    gap: 18px;
    padding-bottom: 6px;
}

/* PRODUCT CARD */
.store-card {
    min-height: 490px;
    border-radius: 30px;
    overflow: hidden;
    background: #111;
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow: var(--shadow-mid);
    transition: transform var(--speed), border-color var(--speed), box-shadow var(--speed);
    display: flex;
    flex-direction: column;
    isolation: isolate;
}

.store-card:hover {
    transform: translateY(-3px);
}

.store-light .store-card {
    background: #fff;
    border-color: rgba(17, 17, 17, .08);
    box-shadow: var(--shadow-soft);
}

.store-card-media {
    position: relative;
    aspect-ratio: 4 / 5.8;
    overflow: hidden;
    background: #111;
    flex: 0 0 auto;
}

.store-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.store-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .00) 0%, rgba(0, 0, 0, .02) 44%, rgba(0, 0, 0, .08) 100%);
    pointer-events: none;
}

.store-card-top {
    position: absolute;
    inset: 18px 18px auto 18px;
    z-index: 2;
}

.store-card-body {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    padding: 12px 14px 14px;
    min-height: 92px;
}

.store-card-copy {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}

.store-card-copy h3 {
    margin: 0;
    font-size: clamp(20px, 2vw, 25px);
    line-height: 1.06;
    letter-spacing: -.04em;
    min-height: 2.1em;
    text-wrap: balance;
}

.store-dark .store-card-copy h3 {
    color: #fff;
}

.store-light .store-card-copy h3 {
    color: var(--text-dark);
}

.store-card-copy p {
    margin: 4px 0 0;
    font-size: 12px;
    line-height: 1.38;
    min-height: calc(1.38em * 2);
    max-height: calc(1.38em * 2);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.store-dark .store-card-copy p {
    color: rgba(255, 255, 255, .78);
}

.store-light .store-card-copy p {
    color: var(--text-dark-soft);
}

.store-card-copy .store-actions {
    display: none !important;
}

/* BOTTOM CTA */
.store-bottom {
    padding: 84px 0 42px;
    background: var(--white-soft);
    color: var(--text-dark);
}

.store-bottom-box {
    max-width: 1040px;
    margin: 0 auto;
    padding: 46px 38px;
    border-radius: 38px;
    text-align: center;
    background: #fff;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(17, 17, 17, .06);
}

.store-bottom-box h2 {
    margin: 0;
    font-size: clamp(34px, 5vw, 62px);
    line-height: 1.02;
    letter-spacing: -.05em;
    color: var(--text-dark);
    text-wrap: balance;
}

.store-bottom-box p {
    margin: 16px auto 0;
    max-width: 740px;
    color: var(--text-dark-soft);
    font-size: 18px;
    line-height: 1.74;
}

.store-bottom-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px;
    align-items: center;
}

.store-bottom-actions .btn-secondary {
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    align-items: center;
    justify-content: center;
}

.store-bottom-actions a[href*="wa.me"] {
    background: #25D366 !important;
    border-color: #25D366 !important;
    color: #fff !important;
    box-shadow: 0 14px 28px rgba(37, 211, 102, .22);
}

.store-bottom-actions a[href*="wa.me"]:hover {
    background: #1fbd5a !important;
    border-color: #1fbd5a !important;
    color: #fff !important;
}

/* FLOAT CONTACT */
.store-wa-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 999;
    width: 70px;
    height: 70px;
    border-radius: 999px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, .32);
    box-shadow:
        0 22px 50px rgba(0, 0, 0, .38),
        0 0 0 1px rgba(255, 255, 255, .10) inset;
    background: #111;
    transition: transform var(--speed), box-shadow var(--speed);
}

.store-wa-float:hover {
    transform: translateY(-2px);
    box-shadow:
        0 26px 54px rgba(0, 0, 0, .42),
        0 0 0 1px rgba(255, 255, 255, .10) inset;
}

.store-wa-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.store-wa-float::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, .10) 0%, rgba(255, 255, 255, 0) 42%);
    pointer-events: none;
}

/* RESPONSIVE */
@media (max-width: 1280px) {
    .store-feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .store-shelf {
        grid-auto-columns: calc((100% - (18px * 2)) / 3);
    }
}

@media (max-width: 980px) {
    .store-hero-video {
        padding-top: calc(76px + env(safe-area-inset-top));
    }

    .store-hero-video-media {
        aspect-ratio: 16 / 9;
        min-height: 0;
        max-height: none;
    }

    .store-hero-video-media video {
        object-fit: cover;
        object-position: center center;
        transform: none !important;
    }

    .store-feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .store-shelf {
        grid-auto-columns: calc((100% - 18px) / 2);
    }

    .store-card,
    .store-feature-card {
        min-height: 450px;
    }

    .store-bottom-box h2 {
        font-size: clamp(30px, 8vw, 46px);
    }

    .store-bottom-box p {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .store-block {
        padding: 28px 0 22px;
    }

    .store-head {
        margin-bottom: 18px;
    }

    .store-head h2 {
        font-size: clamp(28px, 7vw, 40px);
        line-height: 1.04;
    }

    .store-head p {
        font-size: 15px;
        line-height: 1.65;
    }

    .store-feature-card {
        min-height: 420px;
    }

    .store-feature-copy h3 {
        font-size: clamp(24px, 6.2vw, 34px);
        max-width: 12ch;
    }

    .store-shelf-btn {
        width: 44px;
        height: 44px;
        font-size: 21px;
    }

    .store-card {
        min-height: 430px;
    }

    .store-card-copy h3 {
        font-size: 20px;
        min-height: auto;
    }

    .store-card-copy p {
        font-size: 11.5px;
        line-height: 1.36;
        min-height: calc(1.36em * 2);
        max-height: calc(1.36em * 2);
    }

    .store-bottom-box {
        padding: 34px 22px;
    }

    .store-bottom-actions .btn {
        min-height: 46px;
    }
}

@media (max-width: 640px) {

    .store-feature-card,
    .store-card,
    .store-bottom-box {
        border-radius: 24px;
    }

    .store-feature-copy {
        inset: 18px;
    }

    .store-card-top {
        inset: 16px 16px auto 16px;
    }

    .store-card-body {
        padding: 10px 12px 12px;
        min-height: 82px;
    }

    .store-card-copy h3 {
        font-size: 19px;
    }

    .store-card-copy p {
        font-size: 11px;
        line-height: 1.34;
        min-height: calc(1.34em * 2);
        max-height: calc(1.34em * 2);
    }

    .store-hero-video-media {
        aspect-ratio: 16 / 10;
    }

    .store-mini-item {
        min-width: 84px;
    }

    .store-mini-icon {
        width: 54px;
        height: 54px;
        border-radius: 16px;
        font-size: 17px;
    }

    .store-mini-label {
        font-size: 12px;
        max-width: 76px;
    }

    .store-feature-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .store-feature-card {
        min-height: 360px;
    }

    .store-feature-copy h3 {
        font-size: 22px;
        max-width: 8ch;
    }

    .store-shelf-nav {
        gap: 8px;
        margin-bottom: 12px;
    }

    .store-shelf-btn {
        width: 42px;
        height: 42px;
        font-size: 20px;
    }

    .store-bottom {
        padding: 64px 0 28px;
    }

    .store-bottom-box p {
        font-size: 15px;
        line-height: 1.62;
    }

    .store-bottom-actions .btn {
        width: 100%;
    }

    .store-wa-float {
        width: 60px;
        height: 60px;
        right: 12px;
        bottom: 12px;
    }
}

@media (max-width: 480px) {
    .store-feature-grid {
        grid-template-columns: 1fr;
    }

    .store-feature-card {
        min-height: 380px;
    }

    .store-shelf {
        grid-auto-columns: 78%;
        gap: 14px;
    }

    .store-card {
        min-height: 408px;
    }

    .store-card-media {
        aspect-ratio: 4 / 5.35;
    }

    .store-mini-cats {
        padding: 14px 0 22px;
    }

    .store-mini-row {
        gap: 14px;
    }

    .store-mini-item {
        min-width: 78px;
    }

    .store-mini-icon {
        width: 50px;
        height: 50px;
        border-radius: 14px;
    }

    .store-mini-label {
        font-size: 11.5px;
        max-width: 72px;
    }

    .store-head h2 {
        font-size: clamp(26px, 8.5vw, 34px);
    }

    .store-bottom-box {
        padding: 28px 18px;
    }

    .store-bottom-box h2 {
        font-size: clamp(28px, 9vw, 36px);
    }
}