/* ============================================
   LIVE FEED - TikTok Style
   ============================================ */

:root {
    --feed-accent: #ff3b5c;
    --feed-accent-hover: #e6334f;
    --feed-green: #00d26a;
    --feed-orange: #ff6600;
    --feed-blue: #3b7ddd;
    --feed-dark: #0d0d0d;
    --feed-overlay: rgba(0, 0, 0, 0.45);
    --feed-glass: rgba(255, 255, 255, 0.12);
    --feed-glass-strong: rgba(255, 255, 255, 0.2);
    --feed-text: #ffffff;
    --feed-text-muted: rgba(255, 255, 255, 0.7);
    --feed-radius: 12px;
    --feed-radius-sm: 8px;
    --feed-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Apply these only when the feed is active */
body.feed-open {
    height: 100%;
    height: 100dvh;
    overflow: hidden;
    background: #000;
}

body.feed-open .feed-container,
body.feed-open .feed-slide {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    -webkit-font-smoothing: antialiased;
}

/* ========================================
   FEED CONTAINER - Snap Scroll
   ======================================== */
.feed-container {
    height: 100vh;
    height: 100dvh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.feed-container::-webkit-scrollbar {
    display: none;
}

/* ========================================
   FEED SLIDE (each full-screen item)
   ======================================== */
.feed-slide {
    height: 100vh;
    height: 100dvh;
    width: 100%;
    scroll-snap-align: start;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.feed-slide__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.feed-slide__bg img,
.feed-slide__bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feed-slide__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(0, 0, 0, 0.3) 35%,
            transparent 60%,
            rgba(0, 0, 0, 0.25) 100%);
    z-index: 1;
}

/* ========================================
   TOP BAR
   ======================================== */
.feed-topbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 16px 12px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent);
}

.feed-topbar__back {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--feed-glass);
    backdrop-filter: blur(10px);
    border: none;
    color: #fff;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
}

.feed-topbar__back:hover {
    background: var(--feed-glass-strong);
    color: #fff;
}

.feed-topbar__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

/* Mağaza profil fotoğrafı + adı (topbar ortası) */
.feed-topbar__store {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    justify-content: center;
}

.feed-topbar__store-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.6);
    flex-shrink: 0;
}

.feed-topbar__store-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feed-topbar__store-name {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.feed-topbar__badge--live {
    background: var(--feed-accent);
    color: #fff;
    animation: livePulse 2s ease-in-out infinite;
}

.feed-topbar__badge--video {
    background: var(--feed-blue);
    color: #fff;
}

.feed-topbar__badge i {
    font-size: 10px;
}

@keyframes livePulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

.feed-topbar__actions {
    display: flex;
    gap: 10px;
}

.feed-topbar__actions button {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--feed-glass);
    backdrop-filter: blur(10px);
    border: none;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s;
}

.feed-topbar__actions button:hover {
    background: var(--feed-glass-strong);
}

/* ========================================
   LIVE VIEWER COUNT
   ======================================== */
.feed-live-viewers {
    position: absolute;
    top: 65px;
    left: 16px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    background: var(--feed-glass);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    color: var(--feed-text);
}

.feed-live-viewers i {
    color: var(--feed-accent);
    font-size: 8px;
    animation: blink 1.5s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

/* ========================================
   RIGHT SIDE ACTIONS (Like, Comment, Share)
   ======================================== */
.feed-actions {
    position: absolute;
    right: 12px;
    top: 300px;
    bottom: 320px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.feed-actions__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    transition: transform 0.2s;
}

.feed-actions__item:hover {
    transform: scale(1.1);
}

.feed-actions__icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--feed-glass);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    border: none;
    transition: all 0.3s;
}

.feed-actions__icon:hover {
    background: var(--feed-glass-strong);
}

.feed-actions__icon.liked {
    color: var(--feed-accent);
    background: rgba(255, 59, 92, 0.2);
}

.feed-actions__count {
    font-size: 11px;
    font-weight: 600;
    color: var(--feed-text);
}

.feed-actions__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--feed-accent);
    overflow: hidden;
    margin-bottom: 6px;
}

.feed-actions__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========================================
   BOTTOM INFO AREA
   ======================================== */
.feed-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 70px;
    z-index: 10;
    padding: 0 16px 16px;
}

/* --- Store/User Info --- */
.feed-info__store {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.feed-info__store-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--feed-accent);
}

.feed-info__store-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feed-info__store-name {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
}

.feed-info__store-follow {
    font-size: 11px;
    padding: 3px 12px;
    border-radius: 4px;
    background: var(--feed-accent);
    color: #fff;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.feed-info__store-follow:hover {
    background: var(--feed-accent-hover);
}

.feed-info__desc {
    font-size: 13px;
    color: var(--feed-text-muted);
    line-height: 1.5;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.feed-info__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.feed-info__tag {
    font-size: 12px;
    color: #8ecfff;
    font-weight: 500;
}

/* ========================================
   PRODUCT CARD (Bottom Bar)
   ======================================== */
.feed-product {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    padding: 0 12px 14px;
}

.feed-product__card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    background: var(--feed-glass);
    backdrop-filter: blur(20px);
    border-radius: var(--feed-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feed-product__img {
    width: 52px;
    height: 52px;
    border-radius: var(--feed-radius-sm);
    overflow: hidden;
    flex-shrink: 0;
    background: #fff;
}

.feed-product__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feed-product__details {
    flex: 1;
    min-width: 0;
}

.feed-product__name {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.feed-product__price {
    font-size: 14px;
    font-weight: 700;
    color: var(--feed-orange);
    margin-top: 2px;
}

.feed-product__price .old-price {
    font-size: 11px;
    color: var(--feed-text-muted);
    text-decoration: line-through;
    margin-left: 6px;
    font-weight: 400;
}

.feed-product__btn {
    padding: 10px 18px;
    background: var(--feed-orange);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    border: none;
    border-radius: var(--feed-radius-sm);
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
}

.feed-product__btn:hover {
    background: #e65c00;
    transform: scale(1.03);
}

/* Expanded card (video slides with beden + satis type) */
.feed-product__card--expanded {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 10px 12px 12px;
}

.feed-product__top-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feed-product__top-row .feed-product__details {
    flex: 1;
    min-width: 0;
}

.feed-product__top-row .feed-product__btn {
    padding: 10px 14px;
    font-size: 12px;
    flex-shrink: 0;
}

/* Satış Türü Toggle */
.feed-product__satis-row {
    display: flex;
    gap: 6px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 8px;
}

.feed-product__satis-btn {
    flex: 1;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.55);
    cursor: pointer;
    transition: all 0.2s;
}

.feed-product__satis-btn i {
    font-size: 13px;
}

.feed-product__satis-btn--active {
    background: rgba(255, 102, 0, 0.18);
    border-color: var(--feed-orange);
    color: var(--feed-orange);
}

/* Satış Türü Badge (Video cards) */
.feed-product__satis-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 6px;
    background: rgba(59, 125, 221, 0.15);
    border: 1px solid rgba(59, 125, 221, 0.3);
    color: #6eb3ff;
}

.feed-product__satis-badge i {
    font-size: 13px;
}

.feed-product__satis-badge--seri {
    background: rgba(255, 102, 0, 0.15);
    border-color: rgba(255, 102, 0, 0.3);
    color: var(--feed-orange);
}

/* Beden Seçimi */
.feed-product__beden-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.feed-product__beden-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--feed-text-muted);
    white-space: nowrap;
}

.feed-product__beden-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.feed-product__beden-chip {
    min-width: 30px;
    height: 26px;
    padding: 0 7px;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.18s;
}

.feed-product__beden-chip:hover {
    border-color: var(--feed-orange);
    color: var(--feed-orange);
    background: rgba(255, 102, 0, 0.1);
}

.feed-product__beden-chip--selected {
    background: var(--feed-orange);
    border-color: var(--feed-orange);
    color: #fff;
}

.feed-product__beden-chip--stoksuz {
    opacity: 0.3;
    cursor: not-allowed;
    text-decoration: line-through;
}

/* Beden Chip Wrap with Quantity (Video Cards) */
.feed-product__beden-chip-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.feed-product__beden-qty {
    font-size: 10px;
    font-weight: 600;
    color: var(--feed-orange);
    background: rgba(255, 102, 0, 0.15);
    padding: 1px 6px;
    border-radius: 8px;
    min-width: 18px;
    text-align: center;
}

/* Seri Bilgisi */
.feed-product__seri-info {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 8px;
}

.feed-product__seri-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 5px;
}

.feed-product__seri-kart {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 8px;
    border-radius: 5px;
    border: 1px solid var(--feed-green);
    background: rgba(0, 210, 106, 0.08);
    font-size: 11px;
    font-weight: 700;
    color: var(--feed-green);
}

.feed-product__seri-kart span {
    font-size: 10px;
    font-weight: 600;
    color: rgba(0, 210, 106, 0.75);
}

.feed-product__seri-kart--stoksuz {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.3);
    opacity: 0.5;
}

.feed-product__seri-kart--stoksuz span {
    color: rgba(255, 255, 255, 0.25);
}

.feed-product__seri-toplam {
    font-size: 10px;
    color: var(--feed-text-muted);
}

.feed-product__seri-toplam strong {
    color: #fff;
    font-weight: 700;
}

/* ========================================
   COMMENTS PANEL (Live & Video)
   ======================================== */
.feed-comments {
    position: absolute;
    bottom: 60px;
    left: 12px;
    right: 80px;
    z-index: 10;
    max-height: 160px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-right: 8px;
    mask-image: linear-gradient(to top, #000 60%, transparent 100%);
    -webkit-mask-image: linear-gradient(to top, #000 60%, transparent 100%);
    scrollbar-width: none;
}

.feed-comments::-webkit-scrollbar {
    display: none;
}

.feed-comment {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    animation: commentSlideIn 0.4s ease-out;
}

@keyframes commentSlideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feed-comment__avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.feed-comment__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feed-comment__body {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(6px);
    padding: 6px 10px;
    border-radius: 12px 12px 12px 4px;
    max-width: 260px;
}

.feed-comment__name {
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1px;
}

.feed-comment__text {
    font-size: 12px;
    color: var(--feed-text-muted);
    line-height: 1.4;
}

/* ========================================
   COMMENT INPUT BAR
   ======================================== */
.feed-comment-input {
    position: absolute;
    bottom: 14px;
    left: 12px;
    right: 80px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feed-comment-input input {
    flex: 1;
    height: 38px;
    padding: 0 14px;
    background: var(--feed-glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    color: #fff;
    font-size: 13px;
    outline: none;
    transition: border 0.2s;
}

.feed-comment-input input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.feed-comment-input input:focus {
    border-color: rgba(255, 255, 255, 0.4);
}

.feed-comment-input button {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--feed-blue);
    border: none;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    flex-shrink: 0;
}

.feed-comment-input button:hover {
    background: #2e6bc4;
}

/* ========================================
   AUCTION PANEL (Live Only)
   ======================================== */
.feed-auction {
    position: absolute;
    bottom: 0;
    bottom: env(safe-area-inset-bottom, 0);
    left: 0;
    right: 0;
    z-index: 20;
    padding: 0 12px 14px;
    padding-bottom: calc(14px + env(safe-area-inset-bottom, 0px));
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
}

/* Countdown Timer Bar */
.feed-auction__countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 14px;
    margin-bottom: 6px;
    background: rgba(255, 59, 92, 0.15);
    border: 1px solid rgba(255, 59, 92, 0.25);
    border-radius: var(--feed-radius);
    backdrop-filter: blur(20px);
}

.feed-auction__countdown i {
    font-size: 14px;
    color: var(--feed-accent);
}

.feed-auction__countdown span {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
}

.feed-auction__countdown strong {
    font-size: 14px;
    font-weight: 800;
    color: var(--feed-accent);
    font-variant-numeric: tabular-nums;
}

.feed-auction__card {
    background: var(--feed-glass);
    backdrop-filter: blur(20px);
    border-radius: var(--feed-radius);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 12px 14px;
}

.feed-auction__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
    cursor: pointer;
    user-select: none;
}

.feed-auction__header-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.feed-auction__toggle-icon {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    transition: transform 0.3s ease;
}

/* Collapsible Body */
.feed-auction__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.feed-auction__body--open {
    max-height: 600px;
    margin-top: 10px;
}

.feed-auction__title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.feed-auction__title i {
    color: var(--feed-orange);
    font-size: 18px;
}

.feed-auction__timer {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 600;
    color: var(--feed-accent);
    background: rgba(255, 59, 92, 0.15);
    padding: 4px 10px;
    border-radius: 16px;
}

.feed-auction__timer i {
    font-size: 13px;
}

.feed-auction__product {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 10px;
}

.feed-auction__product-img {
    width: 48px;
    height: 48px;
    border-radius: var(--feed-radius-sm);
    overflow: hidden;
    flex-shrink: 0;
    background: #fff;
}

.feed-auction__product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feed-auction__product-info {
    flex: 1;
}

.feed-auction__product-name {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}

.feed-auction__start-price {
    font-size: 11px;
    color: var(--feed-text-muted);
    margin-top: 2px;
}

/* Satış türü badge (Tekli / Seri) */
.feed-auction__satis-turu {
    margin-top: 5px;
    margin-bottom: 6px;
}

.feed-auction__satis-turu-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    letter-spacing: 0.3px;
}

.feed-auction__satis-turu-badge--tekli {
    background: rgba(59, 125, 221, 0.18);
    color: #6eb3ff;
    border: 1px solid rgba(59, 125, 221, 0.35);
}

.feed-auction__satis-turu-badge--seri {
    background: rgba(255, 102, 0, 0.15);
    color: var(--feed-orange);
    border: 1px solid rgba(255, 102, 0, 0.35);
}

/* Seri grid - beden + adet kartları */
.feed-auction__seri-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 4px;
}

.feed-auction__seri-kart {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    padding: 3px 5px;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
}

.feed-auction__seri-kart--mevcut {
    border-color: var(--feed-green);
    background: rgba(0, 210, 106, 0.08);
}

.feed-auction__seri-beden {
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.feed-auction__seri-kart--mevcut .feed-auction__seri-beden {
    color: var(--feed-green);
}

.feed-auction__seri-adet {
    font-size: 9px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.2;
}

.feed-auction__seri-kart--mevcut .feed-auction__seri-adet {
    color: rgba(0, 210, 106, 0.8);
}

/* Toplam adet satırı */
.feed-auction__seri-toplam {
    font-size: 10px;
    color: var(--feed-text-muted);
    margin-top: 2px;
}

.feed-auction__seri-toplam strong {
    color: #fff;
    font-weight: 700;
}

.feed-auction__highest {
    text-align: right;
}

.feed-auction__highest-label {
    font-size: 10px;
    color: var(--feed-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feed-auction__highest-price {
    font-size: 18px;
    font-weight: 800;
    color: var(--feed-green);
    line-height: 1.2;
}

.feed-auction__highest-user {
    font-size: 10px;
    color: var(--feed-text-muted);
}

/* Quantity Input Row */
.feed-auction__qty-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 8px;
}

.feed-auction__qty-label {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
}

.feed-auction__qty-input {
    width: 100%;
    height: 40px;
    padding: 0 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--feed-radius-sm);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    outline: none;
    transition: border-color 0.2s;
}

.feed-auction__qty-input::placeholder {
    color: rgba(255, 255, 255, 0.35);
    font-weight: 400;
}

.feed-auction__qty-input:focus {
    border-color: var(--feed-green);
}

/* Price Label */
.feed-auction__price-label {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4px;
}

.feed-auction__bid-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.feed-auction__bid-input {
    flex: 1;
    height: 40px;
    padding: 0 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--feed-radius-sm);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    outline: none;
    transition: border-color 0.2s;
}

.feed-auction__bid-input::placeholder {
    color: rgba(255, 255, 255, 0.35);
    font-weight: 400;
}

.feed-auction__bid-input:focus {
    border-color: var(--feed-green);
}

.feed-auction__bid-btn {
    height: 40px;
    padding: 0 20px;
    background: linear-gradient(135deg, var(--feed-green), #00b85d);
    border: none;
    border-radius: var(--feed-radius-sm);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.feed-auction__bid-btn:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 15px rgba(0, 210, 106, 0.3);
}

.feed-auction__bid-btn i {
    font-size: 16px;
}

/* Quick bid buttons */
.feed-auction__quick-bids {
    display: flex;
    gap: 6px;
    margin-top: 8px;
}

.feed-auction__quick-bid {
    flex: 1;
    height: 30px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: var(--feed-text-muted);
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.feed-auction__quick-bid:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border-color: var(--feed-green);
}

/* ========================================
   AUCTION PRODUCT CARD (New)
   ======================================== */
.feed-auction__product-card {
    padding: 10px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 10px;
}

.feed-auction__product-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.feed-auction__product-img {
    width: 48px;
    height: 48px;
    border-radius: var(--feed-radius-sm);
    overflow: hidden;
    flex-shrink: 0;
    background: #fff;
}

.feed-auction__product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feed-auction__product-details {
    flex: 1;
}

.feed-auction__product-name {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.feed-auction__product-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--feed-orange);
    margin-top: 2px;
}

.feed-auction__product-price .old-price {
    font-size: 11px;
    color: var(--feed-text-muted);
    text-decoration: line-through;
    margin-left: 6px;
    font-weight: 400;
}

.feed-auction__product-btn {
    padding: 10px 18px;
    background: var(--feed-orange);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    border: none;
    border-radius: var(--feed-radius-sm);
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.feed-auction__product-btn:hover {
    background: #e65c00;
    transform: scale(1.03);
}

/* Satış Türü Toggle (Auction) */
.feed-auction__satis-row {
    display: flex;
    gap: 6px;
    margin-bottom: 8px;
}

.feed-auction__satis-btn {
    flex: 1;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.55);
    cursor: pointer;
    transition: all 0.2s;
}

.feed-auction__satis-btn i {
    font-size: 13px;
}

.feed-auction__satis-btn--active {
    background: rgba(255, 102, 0, 0.18);
    border-color: var(--feed-orange);
    color: var(--feed-orange);
}

/* Satış Türü Badge (Tekli / Seri) - New Style */
.feed-auction__satis-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 6px;
    background: rgba(59, 125, 221, 0.15);
    border: 1px solid rgba(59, 125, 221, 0.3);
    color: #6eb3ff;
}

.feed-auction__satis-badge i {
    font-size: 13px;
}

.feed-auction__satis-badge--seri {
    background: rgba(255, 102, 0, 0.15);
    border-color: rgba(255, 102, 0, 0.3);
    color: var(--feed-orange);
}

/* Beden Seçimi (Auction) */
.feed-auction__beden-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.feed-auction__beden-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--feed-text-muted);
    white-space: nowrap;
}

.feed-auction__beden-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.feed-auction__beden-chip {
    min-width: 30px;
    height: 26px;
    padding: 0 7px;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.18s;
}

.feed-auction__beden-chip:hover {
    border-color: var(--feed-orange);
    color: var(--feed-orange);
    background: rgba(255, 102, 0, 0.1);
}

/* Beden Chip Wrap with Quantity */
.feed-auction__beden-chip-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.feed-auction__beden-qty {
    font-size: 10px;
    font-weight: 600;
    color: var(--feed-orange);
    background: rgba(255, 102, 0, 0.15);
    padding: 1px 6px;
    border-radius: 8px;
    min-width: 18px;
    text-align: center;
}

/* ========================================
   CANLI MEZAT YAYINI
   ======================================== */

/* Topbar Store Info */
.feed-topbar__store-info {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    margin-left: 8px;
}

.feed-topbar__store-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}

.feed-topbar__store-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feed-topbar__store-name {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
}

/* Mezat Info Section */
.feed-mezat__info {
    padding: 10px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 8px;
}

.feed-mezat__info-title {
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
}

.feed-mezat__info-current {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.feed-mezat__info-current strong {
    color: var(--feed-green);
    font-weight: 700;
}

/* Mezata Katıl Button */
.feed-mezat__join-btn {
    width: 100%;
    height: 46px;
    background: linear-gradient(135deg, #3b7ddd, #6c5ce7, #a855f7);
    border: none;
    border-radius: var(--feed-radius-sm);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
    margin-top: 8px;
}

.feed-mezat__join-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 20px rgba(108, 92, 231, 0.4);
}

.feed-mezat__join-btn i {
    font-size: 18px;
    color: #ffd700;
}

/* Compact Bid Button (for mezat product card) */
.feed-auction__bid-btn--compact {
    height: 36px;
    padding: 0 14px;
    font-size: 12px;
    flex-shrink: 0;
}

/* Readonly Input */
.feed-auction__qty-input--readonly {
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.5);
    cursor: default;
}

/* ========================================
   LIVE SLIDE - Position above auction panel (taller now with seri info)
   ======================================== */
.feed-slide--live .feed-comments {
    bottom: 320px;
}

.feed-slide--live .feed-actions {
    bottom: 320px;
}

.feed-slide--live .feed-comment-input {
    bottom: 260px;
    left: 12px;
    right: 100px;
}

/* ========================================
   VIDEO SLIDE - PRODUCT INFO BAR
   ======================================== */
.feed-slide--video .feed-info {
    bottom: 185px;
}

.feed-slide--video .feed-actions {
    bottom: 160px;
}

/* ========================================
   SCROLL INDICATOR
   ======================================== */
.feed-scroll-hint {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    opacity: 0.5;
    animation: scrollHintBounce 2s ease-in-out infinite;
}

.feed-scroll-hint i {
    font-size: 16px;
    color: #fff;
}

@keyframes scrollHintBounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-6px);
    }
}

/* ========================================
   PROGRESS BAR (Video slide)
   ======================================== */
.feed-progress {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 12;
    height: 3px;
    background: rgba(255, 255, 255, 0.15);
}

.feed-progress__bar {
    height: 100%;
    background: #fff;
    border-radius: 0 2px 2px 0;
    transition: width 0.3s linear;
}

/* ========================================
   RESPONSIVE ADJUSTMENTS
   ======================================== */

/* Desktop max-width constraint for phone-like experience */
@media (min-width: 768px) {
    .feed-container {
        max-width: 430px;
        margin: 0 auto;
        border-left: 1px solid #1a1a1a;
        border-right: 1px solid #1a1a1a;
    }
}

@media (max-width: 380px) {
    .feed-auction__bid-btn {
        padding: 0 12px;
        font-size: 12px;
    }

    .feed-actions__icon {
        width: 42px;
        height: 42px;
        font-size: 20px;
    }

    .feed-comments {
        max-height: 150px;
    }
}

/* ========================================
   ANIMATIONS & UTILITIES
   ======================================== */
.feed-hidden {
    display: none !important;
}

/* Heart animation on double tap */
.feed-heart-anim {
    position: absolute;
    z-index: 20;
    pointer-events: none;
    animation: heartBurst 0.8s ease-out forwards;
}

.feed-heart-anim i {
    font-size: 80px;
    color: var(--feed-accent);
    filter: drop-shadow(0 0 10px rgba(255, 59, 92, 0.5));
}

@keyframes heartBurst {
    0% {
        opacity: 1;
        transform: scale(0);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }

    100% {
        opacity: 0;
        transform: scale(1.4) translateY(-40px);
    }
}

/* Bid flash animation */
.feed-auction__highest-price.bid-flash {
    animation: bidFlash 0.5s ease-out;
}

@keyframes bidFlash {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
        color: #fff;
    }

    100% {
        transform: scale(1);
    }
}

/* Notification toast */
.feed-toast {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%) translateY(-20px);
    z-index: 100;
    padding: 10px 24px;
    background: var(--feed-glass-strong);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.feed-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ========================================
   AKIŞTAN AYRILMA ONAY MODALİ
   ======================================== */
.leave-modal {
    position: fixed;
    inset: 0;
    z-index: 70;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s;
}

.leave-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.leave-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);
}

.leave-modal__box {
    position: relative;
    background: #1c1c1e;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 28px 24px 24px;
    width: 100%;
    max-width: 320px;
    text-align: center;
    transform: scale(0.88);
    transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.leave-modal.active .leave-modal__box {
    transform: scale(1);
}

.leave-modal__icon {
    font-size: 40px;
    color: var(--feed-orange);
    margin-bottom: 14px;
    line-height: 1;
}

.leave-modal__title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.4;
}

.leave-modal__desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 22px;
    line-height: 1.5;
}

.leave-modal__actions {
    display: flex;
    gap: 10px;
}

.leave-modal__btn {
    flex: 1;
    height: 44px;
    border-radius: 12px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.15s;
}

.leave-modal__btn:hover {
    opacity: 0.85;
    transform: scale(0.97);
}

.leave-modal__btn--cancel {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.leave-modal__btn--confirm {
    background: var(--feed-accent);
    color: #fff;
}

/* ========================================
   YORUM MODALİ (TikTok Style)
   ======================================== */
.comment-modal {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
}

.comment-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.comment-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.comment-modal__sheet {
    position: relative;
    width: 100%;
    max-width: 430px;
    height: 70vh;
    background: #1c1c1e;
    border-radius: 16px 16px 0 0;
    display: flex;
    flex-direction: column;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
    overflow: hidden;
}

.comment-modal.active .comment-modal__sheet {
    transform: translateY(0);
}

.comment-modal__handle {
    width: 36px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    margin: 10px auto 0;
    flex-shrink: 0;
}

.comment-modal__header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
    position: relative;
}

.comment-modal__title {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
}

.comment-modal__close {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.comment-modal__close:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

/* Yorum Listesi */
.comment-modal__list {
    flex: 1;
    overflow-y: auto;
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    scrollbar-width: none;
}

.comment-modal__list::-webkit-scrollbar {
    display: none;
}

.comment-modal__item {
    align-items: flex-start;
    gap: 10px;
    animation: commentSlideIn 0.3s ease-out;
}

.comment-modal__avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    flex-shrink: 0;
    object-fit: cover;
}

.comment-modal__body {
    flex: 1;
}

.comment-modal__name {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 3px;
}

.comment-modal__time {
    font-size: 11px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.4);
    margin-left: 6px;
}

.comment-modal__text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    margin-bottom: 6px;
}

.comment-modal__actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.comment-modal__actions button {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.45);
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0;
    transition: color 0.2s;
}

.comment-modal__actions button:hover {
    color: rgba(255, 255, 255, 0.8);
}

.comment-modal__actions button.liked {
    color: var(--feed-accent);
}

.comment-modal__actions button i {
    font-size: 13px;
}

/* Yanıt Kutusu */
.comment-modal__reply-box {
    margin-top: 10px;
    padding-left: 4px;
    border-left: 2px solid rgba(255, 255, 255, 0.12);
    animation: commentSlideIn 0.25s ease-out;
}

.comment-modal__reply-input-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 4px 6px 4px 10px;
    transition: border-color 0.2s;
}

.comment-modal__reply-input-wrap:focus-within {
    border-color: rgba(255, 255, 255, 0.3);
}

.comment-modal__reply-avatar {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    flex-shrink: 0;
    object-fit: cover;
}

.comment-modal__reply-input-wrap input {
    flex: 1;
    height: 32px;
    background: none;
    border: none;
    outline: none;
    color: #fff;
    font-size: 13px;
}

.comment-modal__reply-input-wrap input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.comment-modal__reply-input-wrap>button {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--feed-blue);
    border: none;
    color: #fff;
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s, transform 0.15s;
}

.comment-modal__reply-input-wrap>button:hover {
    background: #2e6bc4;
    transform: scale(1.08);
}

/* Yanıt listesi */
.comment-modal__replies {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.comment-modal__reply-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    animation: commentSlideIn 0.25s ease-out;
}

.comment-modal__reply-item img {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    flex-shrink: 0;
    object-fit: cover;
}

.comment-modal__reply-item-body {
    flex: 1;
}

.comment-modal__reply-item-name {
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
}

.comment-modal__reply-item-name .comment-modal__time {
    font-size: 10px;
}

.comment-modal__reply-item-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

/* Yanıtla butonu aktif durumu */
.reply-btn.active {
    color: var(--feed-blue) !important;
}

/* Input Bar */
.comment-modal__input-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #1c1c1e;
    flex-shrink: 0;
}

.comment-modal__input-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    flex-shrink: 0;
    object-fit: cover;
}

.comment-modal__input-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    padding: 0 6px 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: border-color 0.2s;
}

.comment-modal__input-wrap:focus-within {
    border-color: rgba(255, 255, 255, 0.3);
}

.comment-modal__input-wrap input {
    flex: 1;
    height: 40px;
    background: none;
    border: none;
    outline: none;
    color: #fff;
    font-size: 14px;
}

.comment-modal__input-wrap input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.comment-modal__send {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--feed-blue);
    border: none;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s, transform 0.15s;
}

.comment-modal__send:hover {
    background: #2e6bc4;
    transform: scale(1.05);
}

/* Share modal */
.feed-share-modal {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.feed-share-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.feed-share-modal__content {
    width: 100%;
    max-width: 430px;
    background: #1a1a1a;
    border-radius: 16px 16px 0 0;
    padding: 24px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.feed-share-modal.active .feed-share-modal__content {
    transform: translateY(0);
}

.feed-share-modal__title {
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #fff;
}

.feed-share-modal__options {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 16px;
}

.feed-share-modal__option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    border: none;
    background: none;
    color: #fff;
}

.feed-share-modal__option-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.feed-share-modal__option span {
    font-size: 11px;
    color: var(--feed-text-muted);
}

.feed-share-modal__close {
    width: 100%;
    height: 44px;
    background: rgba(255, 255, 255, 0.08);
    border: none;
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 8px;
}

/* ============================================
   SCROLL HINT - Kaydırma Göstergesi
   ============================================ */
.scroll-hint {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9998;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    animation: scrollHintFade 2s ease-out forwards;
    pointer-events: none;
}

.scroll-hint__arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: -8px;
}

.scroll-hint__arrow i {
    font-size: 32px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    animation: scrollArrowBounce 0.8s ease-in-out infinite;
    opacity: 0.3;
}

.scroll-hint__arrow i:nth-child(1) {
    animation-delay: 0s;
    opacity: 0.9;
}

.scroll-hint__arrow i:nth-child(2) {
    animation-delay: 0.15s;
    margin-top: -18px;
    opacity: 0.6;
}

.scroll-hint__arrow i:nth-child(3) {
    animation-delay: 0.3s;
    margin-top: -18px;
    opacity: 0.3;
}

.scroll-hint__text {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    background: rgba(0, 0, 0, 0.4);
    padding: 10px 18px;
    border-radius: 24px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    white-space: nowrap;
}

@keyframes scrollArrowBounce {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0.3;
    }

    50% {
        transform: translateY(-8px);
        opacity: 1;
    }
}

@keyframes scrollHintFade {
    0% {
        opacity: 0;
        transform: translate(-50%, -45%);
    }

    10% {
        opacity: 1;
        transform: translate(-50%, -50%);
    }

    70% {
        opacity: 1;
        transform: translate(-50%, -50%);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, -55%);
        visibility: hidden;
    }
}

/* Scroll hint gizli durumu (JS ile eklenebilir) */
.scroll-hint.hidden {
    display: none !important;
}