/**
 * NECOX — Ilan Detay Sayfasi (single-advert.css)
 *
 * v3.69.0 — Tasarim HTML'leriyle (preset1.html, preset3.html) birebir CSS uyumu.
 * 2 preset destekler: Preset 1 (Klasik 3 Kolon) + Preset 3 (Hero Premium).
 *
 * Tum K2 ayarlari korundu — defaultlar tasarim degerleriyle esit.
 * Tasarim dili: Fraunces serif basliklar + Inter govde + lacivert/sari.
 *
 * Selector mimarisi:
 *   .necox-sad-p1__*       Preset 1 ozel
 *   .necox-sad-p3__*       Preset 3 ozel
 *   .necox-sad-gallery__*  Galeri (her iki preset)
 *   .necox-sad-features__* Donanim chip grid
 *   .necox-seller-premium__* Satici karti (her iki preset)
 *   .necox-lightbox__*     Tam ekran lightbox
 *   .necox-sad-sticky-*    Sticky mini bar
 */

/* ═══════════════════════════════════════════════════════════
   ORTAK CSS DEGISKENLER
   ═══════════════════════════════════════════════════════════ */
.necox-page-single-advert {
    --sad-primary: var(--necox-sad-primary, #2A3254);
    --sad-primary-hover: var(--necox-sad-primary-hover, #3A4470);
    --sad-secondary: var(--necox-sad-secondary, #FFCC04);
    --sad-secondary-hover: var(--necox-sad-secondary-hover, #ffd633);
    --sad-bg: var(--necox-sad-page-bg, #fafafa);
    --sad-card: var(--necox-sad-card-bg, #ffffff);
    --sad-text: var(--necox-sad-text, #2A3254);
    --sad-muted: var(--necox-sad-muted, #6A6A6A);
    --sad-border: var(--necox-sad-border, #EAEAEA);
    --sad-green: var(--necox-sad-green, #25D366);
    --sad-green-dark: var(--necox-sad-green-dark, #16a34a);
    --sad-soft-bg: var(--necox-sad-soft-bg, #f8f9fb);

    --sad-shadow-sm: var(--necox-sad-shadow-sm, 0 2px 8px rgba(42, 50, 84, 0.05));
    --sad-shadow-md: var(--necox-sad-shadow-md, 0 8px 24px rgba(42, 50, 84, 0.08));
    --sad-shadow-lg: var(--necox-sad-shadow-lg, 0 20px 60px rgba(42, 50, 84, 0.15));

    /* Tipografi */
    --sad-font-serif: var(--necox-title-font, 'Fraunces', serif);
    --sad-font-sans: var(--necox-text-font, 'Inter', sans-serif);

    background: var(--sad-bg);
    color: var(--sad-text);
    line-height: 1.5;
    min-height: 60vh;
}

/* ═══════════════════════════════════════════════════════════
   PRESET 1 — KLASIK 3 KOLON PREMIUM
   ═══════════════════════════════════════════════════════════ */
.necox-sad-p1 {
    max-width: var(--necox-sad-max-width, 1400px);
    margin: 24px auto;
    padding: 0 24px;
}

.necox-sad-p1__layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr 320px;
    gap: 24px;
    align-items: start;
}

@media (max-width: 1100px) {
    /* v3.75.1: Satici karti JS ile col-detail icine tasinir.
       Sag kolon bos kalmasin diye grid tek kolon yapilir (eski 768px alti
       yerine 1100px alti tek kolon - tasima breakpoint'iyle uyumlu). */
    .necox-sad-p1__layout {
        grid-template-columns: 1fr;
    }
    .necox-sad-p1__col-gallery {
        grid-column: 1 / -1;
        position: static;
        top: auto;
    }
    .necox-sad-p1__col-sidebar {
        position: static;
        top: auto;
    }
}

@media (max-width: 768px) {
    .necox-sad-p1__layout {
        grid-template-columns: 1fr;
    }
}

/* Sol: Galeri kolon (sticky) */
.necox-sad-p1__col-gallery {
    position: sticky;
    top: 20px;
    min-width: 0; /* v3.70.2: grid item icerik tasmasini engelle */
}

/* Orta: Detay kolon */
.necox-sad-p1__col-detail {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 0; /* v3.70.2: grid item icerik tasmasini engelle */
}

/* Sag: Satici kart (sticky) */
.necox-sad-p1__col-sidebar {
    position: sticky;
    top: 20px;
    min-width: 0; /* v3.70.2: grid item icerik tasmasini engelle */
}

/* Genel kart yapisi */
.necox-sad-p1__card {
    background: var(--sad-card);
    border-radius: 14px;
    padding: 24px;
    box-shadow: var(--sad-shadow-sm);
}

/* Header card (basliik + fiyat + aksiyon barr) — padding sifirla */
.necox-sad-p1__card--header {
    padding: 0;
    overflow: hidden;
}

/* Detay header iceriini (baslik + fiyat) */
.necox-sad-p1__header-body {
    padding: 24px 24px 20px;
}

.necox-sad-p1__meta {
    display: flex;
    gap: 14px;
    font-size: 12px;
    color: var(--sad-muted);
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.necox-sad-p1__meta-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: var(--necox-sad-meta-font, var(--sad-font-sans));
    font-size: var(--necox-sad-meta-size, 12px);
    font-weight: var(--necox-sad-meta-weight, 400);
    color: var(--necox-sad-meta-color, var(--sad-muted));
}
.necox-sad-p1__meta-item svg {
    opacity: 0.6;
}

.necox-sad-p1__title {
    font-family: var(--necox-sad-title-font, var(--sad-font-serif));
    font-size: var(--necox-sad-title-size, 26px);
    font-weight: var(--necox-sad-title-weight, 600);
    line-height: 1.2;
    margin: 0 0 16px;
    color: var(--necox-sad-title-color, var(--sad-text));
}

.necox-sad-p1__price-row {
    display: flex;
    align-items: baseline;
    gap: 14px;
    flex-wrap: wrap;
    padding: 16px 0;
    border-top: 1px solid var(--sad-border);
    border-bottom: 1px solid var(--sad-border);
}
.necox-sad-p1__price-old {
    font-size: 17px;
    text-decoration: line-through;
    color: var(--sad-muted);
}
.necox-sad-p1__price-new {
    font-family: var(--necox-sad-price-font, var(--sad-font-serif));
    font-size: var(--necox-sad-price-size, 36px);
    font-weight: var(--necox-sad-price-weight, 700);
    color: var(--necox-sad-price-color, var(--sad-primary));
    line-height: 1;
}

/* Aksiyon barr (alt soft zemin) */
.necox-sad-p1__action-bar {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    padding: 14px 24px;
    background: var(--sad-soft-bg);
    border-top: 1px solid var(--sad-border);
}

.necox-sad-p1__action-btn {
    background: var(--sad-card);
    border: 1px solid var(--sad-border);
    color: var(--sad-text);
    padding: 8px 14px;
    border-radius: 8px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.15s;
}
.necox-sad-p1__action-btn:hover {
    border-color: var(--sad-primary);
    color: var(--sad-primary);
}
.necox-sad-p1__action-btn.is-active {
    color: var(--sad-secondary);
    border-color: var(--sad-secondary);
    background: rgba(255, 204, 4, 0.08);
}

/* Section title */
.necox-sad-p1__section-title {
    font-family: var(--necox-sad-section-font, var(--sad-font-serif));
    font-size: var(--necox-sad-section-size, 20px);
    font-weight: var(--necox-sad-section-weight, 600);
    margin: 0 0 16px;
    color: var(--necox-sad-section-color, var(--sad-text));
    display: flex;
    align-items: center;
    gap: 10px;
}
.necox-sad-p1__section-title::before {
    content: '';
    width: 4px;
    height: 20px;
    background: var(--sad-secondary);
    border-radius: 2px;
}

/* Description */
.necox-sad-p1__description {
    font-family: var(--necox-sad-content-font, var(--sad-font-sans));
    font-size: var(--necox-sad-content-size, 14.5px);
    line-height: 1.7;
    color: var(--necox-sad-content-color, var(--sad-text));
}
.necox-sad-p1__description p {
    margin: 0 0 10px;
}
.necox-sad-p1__description strong {
    color: var(--sad-primary);
}

/* P1 + related grid wrapper */
.necox-sad-p1__layout + .necox-sad__related,
.necox-sad-p1 + .necox-sad__related {
    max-width: var(--necox-sad-max-width, 1400px);
    margin: 40px auto;
    padding: 0 24px;
}

/* ═══════════════════════════════════════════════════════════
   PRESET 3 — HERO PREMIUM (overlay / normal mode)
   ═══════════════════════════════════════════════════════════ */
.necox-sad-p3 {
    /* tum genislik */
}

/* OVERLAY MODE: Hero tam genislik + sag tarafa seller card paralel */
.necox-sad-p3__hero-wrap {
    padding: 24px 40px 0;
}

.necox-sad-p3--overlay .necox-sad-p3__hero-row {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 32px;
    align-items: stretch;
}

@media (max-width: 1100px) {
    .necox-sad-p3--overlay .necox-sad-p3__hero-row {
        grid-template-columns: 1fr;
    }
}

/* Overlay hero gorsel + ust ustte baslik */
.necox-sad-p3--overlay .necox-sad-p3__hero {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 520px;
    background: var(--sad-primary);
    box-shadow: var(--sad-shadow-lg);
}

.necox-sad-p3__hero-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    cursor: zoom-in;
}

.necox-sad-p3--overlay .necox-sad-p3__hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.55) 70%, rgba(0,0,0,0.85) 100%);
    z-index: 1;
    pointer-events: none;
}

.necox-sad-p3--overlay .necox-sad-p3__hero-content {
    position: absolute;
    bottom: 36px;
    left: 36px;
    right: 36px;
    z-index: 2;
    color: #ffffff;
}

.necox-sad-p3--overlay .necox-sad-p3__hero-meta {
    display: flex;
    gap: 18px;
    font-family: var(--necox-sad-meta-font, var(--sad-font-sans));
    font-size: var(--necox-sad-meta-size, 13px);
    font-weight: var(--necox-sad-meta-weight, 400);
    opacity: 0.85;
    margin-bottom: 12px;
    flex-wrap: wrap;
}
.necox-sad-p3--overlay .necox-sad-p3__hero-meta span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.necox-sad-p3--overlay .necox-sad-p3__hero-title {
    font-family: var(--necox-sad-title-font, var(--sad-font-serif));
    font-size: 42px;
    font-weight: 600;
    line-height: 1.1;
    margin: 0 0 14px;
    letter-spacing: -0.5px;
    color: #ffffff;
}

.necox-sad-p3--overlay .necox-sad-p3__hero-price {
    display: flex;
    align-items: baseline;
    gap: 14px;
    flex-wrap: wrap;
}
.necox-sad-p3--overlay .necox-sad-p3__hero-price-old {
    font-size: 18px;
    text-decoration: line-through;
    opacity: 0.6;
}
.necox-sad-p3--overlay .necox-sad-p3__hero-price-new {
    font-family: var(--necox-sad-price-font, var(--sad-font-serif));
    font-size: 36px;
    font-weight: 700;
    color: var(--sad-secondary);
    line-height: 1;
}

/* Hero ribbon + video badge (sag-ust kose) */
.necox-sad-p3__hero-ribbon {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--sad-secondary);
    color: var(--sad-primary);
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 3;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.necox-sad-p3__hero-video-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(0,0,0,0.7);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.necox-sad-p3__hero-video-chip {
    background: rgba(255, 204, 4, 0.18);
    border: 1px solid rgba(255, 204, 4, 0.5);
    color: var(--sad-secondary) !important;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px !important;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    opacity: 1 !important;
}
.necox-sad-p3__hero-expand {
    position: absolute;
    top: 16px;
    right: 60px; /* video badge varsa karismasin */
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(0,0,0,0.6);
    color: #ffffff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
    z-index: 3;
}
.necox-sad-p3__hero-expand:hover {
    background: rgba(0,0,0,0.85);
}

/* NORMAL MODE: Hero galeri solda + detail karti sagda */
.necox-sad-p3__normal-wrap {
    padding: 24px 40px 0;
}

.necox-sad-p3--normal .necox-sad-p3__hero-row {
    display: grid;
    /* v3.73.4 — Galeri biraz daha geniş, sag panel rahat (64/36) */
    grid-template-columns: 64fr 36fr;
    gap: 24px;
    align-items: stretch;
}

@media (max-width: 1100px) {
    .necox-sad-p3--normal .necox-sad-p3__hero-row {
        grid-template-columns: 1fr;
    }
}

.necox-sad-p3__gallery-side {
    border-radius: 16px;
    overflow: hidden;
    min-height: 520px;
    box-shadow: var(--sad-shadow-lg);
}

/* Normal modda baslik karti */
.necox-sad-p3__title-card {
    background: var(--sad-card);
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--sad-shadow-md);
    margin-top: 24px;
}
.necox-sad-p3__title-meta {
    display: flex;
    gap: 14px;
    font-family: var(--necox-sad-meta-font, var(--sad-font-sans));
    font-size: var(--necox-sad-meta-size, 13px);
    font-weight: var(--necox-sad-meta-weight, 400);
    color: var(--necox-sad-meta-color, var(--sad-muted));
    margin-bottom: 14px;
    flex-wrap: wrap;
}
.necox-sad-p3__title {
    font-family: var(--necox-sad-title-font, var(--sad-font-serif));
    font-size: 30px;
    font-weight: 600;
    line-height: 1.15;
    margin: 0 0 16px;
    color: var(--sad-text);
}
.necox-sad-p3__title-price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
.necox-sad-p3__title-price-old {
    font-size: 16px;
    text-decoration: line-through;
    color: var(--sad-muted);
}
.necox-sad-p3__title-price-new {
    font-family: var(--necox-sad-price-font, var(--sad-font-serif));
    font-size: 38px;
    font-weight: 700;
    color: var(--sad-primary);
    line-height: 1;
}

/* Hero altinda thumbnail strip */
.necox-sad-p3__thumbs-wrap {
    margin-top: 16px;
}
.necox-sad-p3__thumbs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
}
.necox-sad-p3__thumb {
    flex-shrink: 0;
    width: 110px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s;
    background: var(--sad-soft-bg);
    padding: 0;
    position: relative;
}
.necox-sad-p3__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.necox-sad-p3__thumb.is-active,
.necox-sad-p3__thumb:hover {
    border-color: var(--sad-primary);
}
.necox-sad-p3__thumb-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.4);
    color: #ffffff;
}
.necox-sad-p3__thumb--video img {
    opacity: 0.7;
}
.necox-sad-p3__thumb--more {
    background: rgba(42, 50, 84, 0.85);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
    border-color: transparent;
}

/* Ana icerik wrap (hero altinda) */
/* v3.73.4 — Detail-wrap: ic 2 kolon detail-grid + altinda full detail-full */
.necox-sad-p3__detail-wrap {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 32px 40px 60px;
}
@media (max-width: 1100px) {
    .necox-sad-p3__detail-wrap {
        padding: 24px 24px 40px;
    }
    .necox-sad-p3--overlay .necox-sad-p3__seller-aside-bottom,
    .necox-sad-p3__seller-aside-bottom {
        display: block;
    }
}

/* v3.73.4 — Ust 2 kolon: sol kartlar + sag sticky satici ilanlari */
.necox-sad-p3__detail-grid {
    display: grid;
    /* Galeriden ayri: detay alaninda biraz daha dengeli (66/34) */
    grid-template-columns: minmax(0, 66fr) minmax(0, 34fr);
    gap: 24px;
    align-items: start;
}
@media (max-width: 1100px) {
    .necox-sad-p3__detail-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* Sol detay kartlari */
.necox-sad-p3__detail-main {
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-width: 0;
}

/* Sag sticky panel (Detail-grid icinde - Konum'a kadar scroll'la beraber gider) */
.necox-sad-p3__detail-sticky {
    position: sticky;
    top: 80px;
    align-self: start;
    min-width: 0;
    /* Cok uzun listeler icin ic scroll - ekrandan tasmasin */
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    /* Scrollbar zariflestir */
    scrollbar-width: thin;
}
.necox-sad-p3__detail-sticky::-webkit-scrollbar {
    width: 6px;
}
.necox-sad-p3__detail-sticky::-webkit-scrollbar-thumb {
    background: rgba(42, 50, 84, 0.18);
    border-radius: 3px;
}
.necox-sad-p3__detail-sticky::-webkit-scrollbar-thumb:hover {
    background: rgba(42, 50, 84, 0.32);
}
@media (max-width: 1100px) {
    .necox-sad-p3__detail-sticky {
        position: static;
        max-height: none;
        overflow: visible;
        /* Mobilde sag panel gizlenir - mobil icin alt yatay scroll var */
        display: none;
    }
}

/* Tam genislik alt bolum: Konum + Paylas */
.necox-sad-p3__detail-full {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Sol detay icerik (eski - geriye uyumluluk) */
.necox-sad-p3__detail-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-width: 0; /* v3.70.2: grid item icerik tasmasini engelle */
}
.necox-sad-p3__card {
    background: var(--sad-card);
    border-radius: 16px;
    padding: 28px;
    box-shadow: var(--sad-shadow-md);
}
.necox-sad-p3__card--actions {
    padding: 16px 20px;
}

.necox-sad-p3__action-bar {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.necox-sad-p3__action-btn {
    background: var(--sad-card);
    border: 1px solid var(--sad-border);
    color: var(--sad-text);
    padding: 10px 18px;
    border-radius: 10px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.15s;
}
.necox-sad-p3__action-btn:hover {
    border-color: var(--sad-primary);
    color: var(--sad-primary);
    background: var(--sad-soft-bg);
}
.necox-sad-p3__action-btn.is-active {
    color: var(--sad-secondary);
    border-color: var(--sad-secondary);
    background: rgba(255, 204, 4, 0.08);
}

.necox-sad-p3__section-title,
.necox-sad-p3__detail-section-title {
    font-family: var(--necox-sad-section-font, var(--sad-font-serif));
    font-size: var(--necox-sad-section-size, 22px);
    font-weight: var(--necox-sad-section-weight, 600);
    margin: 0 0 18px;
    color: var(--necox-sad-section-color, var(--sad-text));
    display: flex;
    align-items: center;
    gap: 10px;
}
.necox-sad-p3__section-title::before,
.necox-sad-p3__detail-section-title::before {
    content: '';
    width: 4px;
    height: 22px;
    background: var(--sad-secondary);
    border-radius: 2px;
}

.necox-sad-p3__description {
    font-family: var(--necox-sad-content-font, var(--sad-font-sans));
    font-size: var(--necox-sad-content-size, 15px);
    line-height: 1.7;
    color: var(--necox-sad-content-color, var(--sad-text));
}
.necox-sad-p3__description p {
    margin: 0 0 12px;
}
.necox-sad-p3__description p:last-child {
    margin-bottom: 0;
}
.necox-sad-p3__description strong {
    color: var(--sad-primary);
}

/* Sag aside seller card hero ile paralel — overlay/normal mode */
.necox-sad-p3__seller-aside {
    align-self: stretch;
    min-width: 0; /* v3.70.2: grid item icerik tasmasini engelle */
}
.necox-sad-p3__seller-aside-bottom {
    display: none; /* Mobilde gosterilir */
}

/* Related grid alt */
.necox-sad-p3 .necox-sad__related,
.necox-sad-p3__related {
    grid-column: 1 / -1;
    margin-top: 16px;
}

/* ═══════════════════════════════════════════════════════════
   GALERI (.necox-sad-gallery — preset 1 + preset 3 normal mode)
   ═══════════════════════════════════════════════════════════ */
.necox-sad-gallery {
    width: 100%;
    height: auto; /* v3.70.2: 100% olunca parent height'ina dependency olmasin */
    display: flex;
    flex-direction: column;
}
.necox-sad-gallery__main {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: var(--necox-sad-gallery-radius, 14px);
    overflow: hidden;
    background: var(--sad-primary);
    box-shadow: var(--sad-shadow-md);
    position: relative;
    cursor: zoom-in;
}
.necox-sad-gallery__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Ribbon */
.necox-sad-gallery__ribbon {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--sad-secondary);
    color: var(--sad-primary);
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Video badge (sag-ust) */
.necox-sad-gallery__video-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(0,0,0,0.7);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Galeri nav butonlari (sol-sag) */
.necox-sad-gallery__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.92);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--sad-shadow-sm);
    color: var(--sad-text);
    border: none;
    transition: all 0.15s;
    z-index: 2;
}
.necox-sad-gallery__nav:hover {
    background: #ffffff;
    transform: translateY(-50%) scale(1.05);
}
.necox-sad-gallery__nav--prev {
    left: 16px;
}
.necox-sad-gallery__nav--next {
    right: 16px;
}

/* Counter (alt-sag) */
.necox-sad-gallery__counter {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(0,0,0,0.7);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
    z-index: 2;
    pointer-events: none;
}

/* Expand butonu (alt-sol) */
.necox-sad-gallery__expand {
    position: absolute;
    bottom: 16px;
    left: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0,0,0,0.6);
    color: #ffffff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
    z-index: 2;
}
.necox-sad-gallery__expand:hover {
    background: rgba(0,0,0,0.85);
}

/* Thumbnail strip */
.necox-sad-gallery__thumbs {
    margin-top: 12px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
}
.necox-sad-gallery__thumb {
    aspect-ratio: 4/3;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid var(--necox-sad-gallery-thumb-border, transparent);
    transition: all 0.2s;
    padding: 0;
    background: var(--sad-soft-bg);
    position: relative;
}
.necox-sad-gallery__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.necox-sad-gallery__thumb.is-active,
.necox-sad-gallery__thumb:hover {
    border-color: var(--sad-primary);
}
.necox-sad-gallery__thumb--video img {
    opacity: 0.7;
}
.necox-sad-gallery__thumb-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: rgba(0,0,0,0.4);
}
.necox-sad-gallery__thumb-placeholder {
    width: 100%;
    height: 100%;
    background: var(--sad-primary);
}
.necox-sad-gallery__thumb.has-overflow {
    position: relative;
}
.necox-sad-gallery__thumb-overflow {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(42, 50, 84, 0.85);
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
}

/* Bos galeri */
.necox-sad__no-image {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 14px;
    background: var(--sad-soft-bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--sad-muted);
    border: 1px dashed var(--sad-border);
}

/* ═══════════════════════════════════════════════════════════
   FEATURES CHIPS (donanim sekmeli grid)
   ═══════════════════════════════════════════════════════════ */
.necox-sad-features__tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 18px;
    border-bottom: 1px solid var(--sad-border);
    overflow-x: auto;
}
.necox-sad-features__tab {
    padding: 10px 16px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    color: var(--sad-muted);
    cursor: pointer;
    border: none;
    background: transparent;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: all 0.15s;
    white-space: nowrap;
}
.necox-sad-features__tab.is-active,
.necox-sad-features__tab:hover {
    color: var(--sad-primary);
    border-bottom-color: var(--sad-primary);
}

.necox-sad-features__panel {
    display: none;
}
.necox-sad-features__panel.is-active {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 6px;
}

/* Preset 3 daha buyuk chip + farkli grid sutun */
.necox-sad-p3 .necox-sad-features__panel.is-active {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 8px;
}

/* Eski class korumasi (geriye donuk uyumluluk) */
.necox-sad-features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 6px;
}
.necox-sad-features__chip {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    background: var(--sad-soft-bg);
    border-radius: 8px;
    font-family: var(--necox-sad-content-font, var(--sad-font-sans));
    font-size: var(--necox-sad-content-size, 12.5px);
    color: var(--necox-sad-content-color, var(--sad-text));
}
.necox-sad-features__chip::before {
    content: '✓';
    color: var(--sad-green-dark);
    font-weight: 700;
    font-size: 13px;
}

/* Preset 3 buyuk chip */
.necox-sad-p3 .necox-sad-features__grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 8px;
}
.necox-sad-p3 .necox-sad-features__chip {
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 13px;
}
.necox-sad-p3 .necox-sad-features__chip::before {
    font-size: 14px;
}

/* ═══════════════════════════════════════════════════════════
   CF / SPEC GRID (Temel Bilgiler tablosu)
   v3.70.1: Helper'in (cf-frontend.php:necox_cf_get_advert_detail_html)
            urettigi gercek class isimleriyle uyumlu — wrapper'li yapi:
            .necox-sad__cf > .necox-sad__cf-grid > .necox-sad__cf-item > __label + __value
            Tasarim 'spec-grid' gorunumu (border'li 2-kolon, son satir hariç border-bottom)
            __cf-item her satir bir grid sutunu (label sol soft-bg, value sag bold).
   ═══════════════════════════════════════════════════════════ */
.necox-sad__cf-grid {
    display: flex;
    flex-direction: column;
    border-radius: var(--necox-sad-cf-radius, 10px);
    overflow: hidden;
    border: 1px solid var(--necox-sad-cf-border, var(--sad-border));
    background: var(--necox-sad-cf-bg, transparent);
}

.necox-sad__cf-item {
    /* v3.73.3 — Etiket sabit 220px, deger hemen yaninda 1fr — arada bosluk yok */
    display: grid;
    grid-template-columns: 220px 1fr;
    border-bottom: 1px solid var(--necox-sad-cf-border, var(--sad-border));
}
.necox-sad__cf-item:last-child {
    border-bottom: none;
}

.necox-sad__cf-label {
    padding: 12px 16px;
    background: var(--sad-soft-bg);
    color: var(--necox-sad-cf-label-color, var(--sad-muted));
    font-family: var(--necox-sad-content-font, var(--sad-font-sans));
    font-size: var(--necox-sad-content-size, 13.5px);
    font-weight: 500;
    border-right: 1px solid var(--necox-sad-cf-border, var(--sad-border));
}

.necox-sad__cf-value {
    /* v3.73.3 — Sola hizali, kompakt — etiket ile deger arasinda devasa bosluk olmasin */
    padding: 12px 16px;
    color: var(--necox-sad-cf-value-color, var(--sad-text));
    font-family: var(--necox-sad-content-font, var(--sad-font-sans));
    font-size: var(--necox-sad-content-size, 13.5px);
    font-weight: 500;
    text-align: left;
}

/* Mobil/dar ekranlarda etiket genisligini kucult */
@media (max-width: 600px) {
    .necox-sad__cf-item {
        grid-template-columns: 140px 1fr;
    }
    .necox-sad__cf-label,
    .necox-sad__cf-value {
        padding: 10px 12px !important;
        font-size: 12.5px !important;
    }
}

/* Preset 3 — biraz daha buyuk padding + radius */
.necox-sad-p3 .necox-sad__cf-grid {
    border-radius: 12px;
}
.necox-sad-p3 .necox-sad__cf-label,
.necox-sad-p3 .necox-sad__cf-value {
    padding: 14px 18px;
    font-size: 14px;
}

/* CF section dis kapsayici (helper'in <div class="necox-sad__cf"> yapisi) */
.necox-sad__cf {
    /* Card icinde gosterilir (P1 .necox-sad-p1__card icinde) */
}
.necox-sad__cf > .necox-sad__section-title {
    /* mevcut section-title stilinden geliyor */
    margin-bottom: 16px;
}

/* ═══════════════════════════════════════════════════════════
   KONUM
   v3.70.3: helper'in gercek HTML class isimleriyle uyumlu —
            .necox-sad__location > .necox-sad__location-text + .necox-sad__map
            (Onceki .__location-address / .__location-map selector'lari hic
             helper tarafindan uretilmiyordu — olu kod, simdi temizlendi.)
   ═══════════════════════════════════════════════════════════ */
.necox-sad__location {
    /* outer wrapper - kart icinde */
}

.necox-sad__location-text {
    font-family: var(--necox-sad-meta-font, var(--sad-font-sans));
    font-size: var(--necox-sad-meta-size, 13.5px);
    color: var(--necox-sad-meta-color, var(--sad-muted));
    margin: 0 0 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Harita konteyneri (lat/lng varsa Leaflet/Google buraya monte olur) */
.necox-sad__map {
    height: var(--necox-sad-map-height, 240px);
    border-radius: 10px;
    background: linear-gradient(135deg, #d1e2e8 0%, #b8d4dc 100%);
    position: relative;
    overflow: hidden;
}

/* v3.70.3: Lat/lng yokken gosterilen statik placeholder (📍 emoji ortali) */
.necox-sad__map--placeholder::after {
    content: '📍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 36px;
    opacity: 0.7;
}

/* Preset 3 — daha buyuk harita yuksekligi + radius */
.necox-sad-p3 .necox-sad__map {
    height: 280px;
    border-radius: 12px;
}

/* Geriye uyumluluk: eski location-address/location-map selector'lari hala var
   olmasin diye (eger 3rd party kodda kullanildiysa) silmiyoruz, ama default
   degerlerini necox-sad__map ile esitliyoruz */
.necox-sad__location-address,
.necox-sad-p1__location-address,
.necox-sad-p3__location-address {
    font-size: 13.5px;
    color: var(--sad-muted);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.necox-sad__location-map,
.necox-sad-p1__location-map,
.necox-sad-p3__location-map {
    height: var(--necox-sad-map-height, 240px);
    border-radius: 10px;
    background: linear-gradient(135deg, #d1e2e8 0%, #b8d4dc 100%);
    position: relative;
    overflow: hidden;
}
.necox-sad__location-map::after,
.necox-sad-p1__location-map::after,
.necox-sad-p3__location-map::after {
    content: '📍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 28px;
}
.necox-sad-p3__location-map {
    height: 280px;
    border-radius: 12px;
}

/* ═══════════════════════════════════════════════════════════
   TAGS / KATEGORI ETIKETLERI
   ═══════════════════════════════════════════════════════════ */
.necox-sad__tags,
.necox-sad-p1__tags,
.necox-sad-p3__tags {
    display: flex;
    gap: 8px;
    margin-top: 16px;
    flex-wrap: wrap;
}
.necox-sad__tag,
.necox-sad-p1__tag,
.necox-sad-p3__tag {
    padding: 6px 14px;
    background: var(--necox-sad-cat-badge-bg, #f0f1f5);
    color: var(--necox-sad-cat-badge-color, var(--sad-primary));
    border-radius: var(--necox-sad-cat-badge-radius, 999px);
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
}
.necox-sad__tag:hover,
.necox-sad-p1__tag:hover,
.necox-sad-p3__tag:hover {
    background: #e4e6ec;
}

/* Discount badge (yesil chip) */
.necox-sad__discount-badge,
.necox-sad-p1__discount-badge,
.necox-sad-p3__discount-badge {
    background: rgba(34, 197, 94, 0.1);
    color: var(--sad-green-dark);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    margin-left: auto;
}

/* ═══════════════════════════════════════════════════════════
   PREMIUM SATICI KARTI (.necox-seller-premium)
   Hem Preset 1 sag sidebar, hem Preset 3 hero sag tarafi.
   ═══════════════════════════════════════════════════════════ */
.necox-seller-premium {
    width: 100%; /* v3.70.2: sidebar kolonunu doldur (320px / aside) */
    background: linear-gradient(145deg, var(--sad-primary) 0%, var(--sad-primary-hover) 100%);
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(42, 50, 84, 0.18);
    overflow: hidden;
    color: #ffffff;
    position: relative;
}
.necox-seller-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--sad-secondary) 0%, #ffd633 50%, var(--sad-secondary) 100%);
    z-index: 1;
}

/* Preset 3 daha buyuk + buyuk shadow */
.necox-sad-p3 .necox-seller-premium {
    border-radius: 20px;
    box-shadow: 0 24px 60px rgba(42, 50, 84, 0.25);
    height: 100%;
}
.necox-sad-p3 .necox-seller-premium::before {
    height: 4px;
}

/* Header (avatar + isim + rating) */
.necox-seller-premium__header {
    padding: 24px 20px 18px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.necox-sad-p3 .necox-seller-premium__header {
    padding: 28px 24px 20px;
}

.necox-seller-premium__avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--sad-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-family: var(--necox-sad-section-font, var(--sad-font-serif));
    font-size: 26px;
    font-weight: 700;
    color: var(--sad-primary);
    box-shadow: 0 6px 16px rgba(255, 204, 4, 0.3);
    overflow: hidden;
}
.necox-seller-premium__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.necox-sad-p3 .necox-seller-premium__avatar {
    width: 80px;
    height: 80px;
    font-size: 32px;
    margin-bottom: 14px;
    box-shadow: 0 8px 20px rgba(255, 204, 4, 0.3);
}

/* v3.74.1 — HTML __avatar-wrap / __avatar-img / __avatar-fallback class'lari icin
   CSS kurallari (eski __avatar sinifi ile uyumsuzluk fix)
   v3.74.3 — Avatar boyutu admin panel ayarli (--necox-sad-avatar-size, fallback 120px)
   Hem Preset 1 hem Preset 3'te gecerli, hover scale(1.05). */
.necox-seller-premium__avatar-wrap {
    width: var(--necox-sad-avatar-size, 120px);
    height: var(--necox-sad-avatar-size, 120px);
    border-radius: 50%;
    background: var(--sad-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    box-shadow: 0 8px 20px rgba(255, 204, 4, 0.3);
    overflow: hidden;
    position: relative;
    text-decoration: none;
    flex-shrink: 0;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.necox-seller-premium__avatar-wrap:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 28px rgba(255, 204, 4, 0.45);
}
.necox-seller-premium__avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 2;
}
.necox-seller-premium__avatar-fallback {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--necox-sad-section-font, var(--sad-font-serif));
    font-size: calc(var(--necox-sad-avatar-size, 120px) * 0.36);
    font-weight: 700;
    color: var(--sad-primary);
    z-index: 1;
}

.necox-seller-premium__name {
    font-family: var(--necox-sad-title-font, var(--sad-font-serif));
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 4px;
}
.necox-sad-p3 .necox-seller-premium__name {
    font-size: 22px;
    margin-bottom: 6px;
}

.necox-seller-premium__rating {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
}
.necox-sad-p3 .necox-seller-premium__rating {
    font-size: 13px;
}
.necox-seller-premium__stars {
    color: var(--sad-secondary);
    letter-spacing: 1px;
}

/* Stats row (3 kolon) */
.necox-seller-premium__stats {
    display: flex;
    margin-top: 14px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 12px;
}
.necox-sad-p3 .necox-seller-premium__stats {
    margin-top: 16px;
    padding-top: 14px;
}
.necox-seller-premium__stat {
    flex: 1;
    text-align: center;
}
.necox-seller-premium__stat-num {
    font-family: var(--necox-sad-section-font, var(--sad-font-serif));
    font-size: 18px;
    font-weight: 700;
    color: var(--sad-secondary);
}
.necox-sad-p3 .necox-seller-premium__stat-num {
    font-size: 22px;
}
.necox-seller-premium__stat-label {
    font-size: 10px;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}
.necox-sad-p3 .necox-seller-premium__stat-label {
    font-size: 11px;
}

/* WhatsApp ana CTA (yesil) */
.necox-seller-premium__cta-primary {
    margin: 16px 18px 10px;
    width: calc(100% - 36px);
    background: var(--sad-green);
    color: #ffffff;
    border: none;
    padding: 13px 16px;
    border-radius: 10px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
    transition: all 0.2s;
    text-decoration: none;
}
.necox-seller-premium__cta-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(37, 211, 102, 0.5);
}
.necox-seller-premium__cta-primary svg {
    width: 18px;
    height: 18px;
}
.necox-sad-p3 .necox-seller-premium__cta-primary {
    margin: 20px 24px 12px;
    width: calc(100% - 48px);
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 16px;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    gap: 10px;
}
.necox-sad-p3 .necox-seller-premium__cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.5);
}
.necox-sad-p3 .necox-seller-premium__cta-primary svg {
    width: 22px;
    height: 22px;
}

/* Secondary butonlar (Mesaj + Ara — 2 kolon) */
.necox-seller-premium__cta-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    padding: 0 18px;
}
.necox-sad-p3 .necox-seller-premium__cta-row {
    gap: 8px;
    padding: 0 24px;
}
.necox-seller-premium__cta-secondary {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #ffffff;
    padding: 10px;
    border-radius: 8px;
    font-family: inherit;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: all 0.15s;
    text-decoration: none;
}
.necox-seller-premium__cta-secondary:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.35);
}
.necox-sad-p3 .necox-seller-premium__cta-secondary {
    padding: 12px;
    border-radius: 10px;
    font-size: 13px;
    gap: 6px;
}

/* Teklif Iste (sari) */
.necox-seller-premium__cta-offer {
    margin: 10px 18px 18px;
    width: calc(100% - 36px);
    background: var(--sad-secondary);
    color: var(--sad-primary);
    border: none;
    padding: 12px 16px;
    border-radius: 10px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: block;
    text-align: center;
}
.necox-seller-premium__cta-offer:hover {
    background: var(--sad-secondary-hover);
    transform: translateY(-1px);
}
.necox-sad-p3 .necox-seller-premium__cta-offer {
    margin: 12px 24px 24px;
    width: calc(100% - 48px);
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 14px;
}

/* Profil link */
.necox-seller-premium__profile-link {
    display: block;
    padding: 10px;
    text-align: center;
    color: rgba(255,255,255,0.7);
    font-size: 12px;
    text-decoration: none;
    border-top: 1px solid rgba(255,255,255,0.1);
    transition: color 0.15s;
}
.necox-seller-premium__profile-link:hover {
    color: var(--sad-secondary);
}

/* ═══════════════════════════════════════════════════════════
   BENZER ILANLAR (.necox-sad__related)
   ═══════════════════════════════════════════════════════════ */
.necox-sad__related {
    margin-top: 40px;
}
.necox-sad__related-title {
    font-family: var(--necox-sad-section-font, var(--sad-font-serif));
    font-size: var(--necox-sad-section-size, 24px);
    font-weight: var(--necox-sad-section-weight, 600);
    margin: 0 0 16px;
    color: var(--necox-sad-section-color, var(--sad-text));
    display: flex;
    align-items: center;
    gap: 10px;
}
.necox-sad__related-title::before {
    content: '';
    width: 4px;
    height: 22px;
    background: var(--sad-secondary);
    border-radius: 2px;
}
.necox-sad__related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 16px;
}
@media (max-width: 1100px) {
    .necox-sad__related-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 768px) {
    .necox-sad__related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .necox-sad__related-grid {
        grid-template-columns: 1fr;
    }
}

.necox-sad__related-card {
    background: var(--sad-card);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--sad-shadow-sm);
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    color: inherit;
    display: block;
}
.necox-sad__related-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sad-shadow-md);
}
.necox-sad__related-thumb {
    height: 180px;
    background-size: cover;
    background-position: center;
    background-color: var(--sad-soft-bg);
}
.necox-sad__related-info {
    padding: 14px;
}
.necox-sad__related-card-title {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 8px;
    color: var(--sad-text);
    line-height: 1.3;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: 36px;
}
.necox-sad__related-price {
    font-family: var(--necox-sad-price-font, var(--sad-font-serif));
    font-size: 19px;
    font-weight: 700;
    color: var(--sad-primary);
}
.necox-sad__related-meta {
    font-size: 11.5px;
    color: var(--sad-muted);
    margin-top: 6px;
}

/* Preset 3 related */
.necox-sad-p3 .necox-sad__related-thumb {
    height: 160px;
}
.necox-sad-p3 .necox-sad__related-price {
    font-size: 20px;
}

/* ═══════════════════════════════════════════════════════════
   STICKY MINI BAR (her iki preset)
   ═══════════════════════════════════════════════════════════ */
.necox-sad-sticky-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--necox-sad-sticky-bg, rgba(255,255,255,0.96));
    backdrop-filter: blur(var(--necox-sad-sticky-blur, 10px));
    -webkit-backdrop-filter: blur(var(--necox-sad-sticky-blur, 10px));
    border-bottom: 1px solid var(--necox-sad-sticky-border, var(--sad-border));
    z-index: 100;
    padding: 12px 24px;
    display: none;
    align-items: center;
    gap: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.necox-sad-sticky-bar.is-visible {
    display: flex;
    animation: necox-sad-slide-down 0.2s ease-out;
}
@keyframes necox-sad-slide-down {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}
.necox-sad-sticky-bar__title {
    flex: 1;
    font-size: 14px;
    font-weight: 600;
    color: var(--sad-text);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.necox-sad-sticky-bar__price {
    font-family: var(--necox-sad-price-font, var(--sad-font-serif));
    font-size: 18px;
    font-weight: 700;
    color: var(--sad-primary);
}
.necox-sad-sticky-bar__cta {
    background: var(--sad-green);
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.necox-sad-sticky-bar__cta:hover {
    background: #20bd5a;
}

/* ═══════════════════════════════════════════════════════════
   RIBBONS (Acil, One Cikan, Pazarlik, Satildi)
   ═══════════════════════════════════════════════════════════ */
.necox-sad__ribbons {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin: 0 0 12px;
}
.necox-sad__ribbon {
    padding: var(--necox-sad-ribbon-padding-v, 4px) var(--necox-sad-ribbon-padding-h, 10px);
    border-radius: var(--necox-sad-ribbon-radius, 4px);
    font-size: var(--necox-sad-ribbon-font-size, 11px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #ffffff;
}
.necox-sad__ribbon--urgent {
    background: var(--necox-sad-ribbon-urgent-bg, #dc2626);
}
.necox-sad__ribbon--featured {
    background: var(--necox-sad-ribbon-featured-bg, var(--sad-secondary));
    color: var(--sad-primary);
}
.necox-sad__ribbon--negotiable {
    background: var(--necox-sad-ribbon-negotiable-bg, #3b82f6);
}
.necox-sad__ribbon--sold {
    background: var(--necox-sad-ribbon-sold-bg, #16a34a);
}

/* ═══════════════════════════════════════════════════════════
   LIGHTBOX (tam ekran galeri)
   ═══════════════════════════════════════════════════════════ */
.necox-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.necox-lightbox.is-open {
    display: flex;
}
.necox-lightbox__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: #ffffff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: background 0.15s;
    z-index: 10001;
}
.necox-lightbox__close:hover {
    background: rgba(255,255,255,0.25);
}
.necox-lightbox__counter {
    position: absolute;
    top: 28px;
    left: 50%;
    transform: translateX(-50%);
    color: #ffffff;
    font-size: 14px;
    background: rgba(0,0,0,0.5);
    padding: 6px 14px;
    border-radius: 999px;
    z-index: 10001;
}
.necox-lightbox__zoom {
    position: absolute;
    top: 20px;
    right: 80px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: #ffffff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
    z-index: 10001;
}
.necox-lightbox__zoom:hover {
    background: rgba(255,255,255,0.25);
}
.necox-lightbox__viewport {
    flex: 1;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: zoom-in;
    position: relative;
}
.necox-lightbox.is-zoomed .necox-lightbox__viewport {
    cursor: grab;
}
.necox-lightbox.is-zoomed .necox-lightbox__viewport:active {
    cursor: grabbing;
}
.necox-lightbox__img {
    max-width: 90vw;
    max-height: calc(100vh - 200px);
    object-fit: contain;
    display: block;
    transition: transform 0.2s;
}
.necox-lightbox.is-zoomed .necox-lightbox__img {
    transform: scale(2);
    cursor: grab;
}
.necox-lightbox__video-wrap {
    width: 90vw;
    max-width: 1280px;
    aspect-ratio: 16/9;
    background: #000000;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.necox-lightbox__video-wrap iframe,
.necox-lightbox__video-wrap video {
    width: 100%;
    height: 100%;
    border: none;
}
.necox-lightbox__video-poster {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.necox-lightbox__video-play {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 204, 4, 0.95);
    color: var(--sad-primary);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s;
    z-index: 2;
    box-shadow: 0 12px 30px rgba(0,0,0,0.5);
}
.necox-lightbox__video-play:hover {
    transform: scale(1.1);
}
.necox-lightbox__video-play svg {
    width: 36px;
    height: 36px;
    margin-left: 4px;
}

/* Lightbox nav */
.necox-lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    color: #ffffff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
    z-index: 10000;
}
.necox-lightbox__nav:hover {
    background: rgba(255,255,255,0.3);
}
.necox-lightbox__nav--prev {
    left: 24px;
}
.necox-lightbox__nav--next {
    right: 24px;
}
.necox-lightbox__nav svg {
    width: 28px;
    height: 28px;
}

/* Lightbox alt thumbnail strip */
.necox-lightbox__thumbs {
    height: 90px;
    padding: 12px 24px;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    background: rgba(0,0,0,0.4);
    width: 100%;
    align-items: center;
    justify-content: center;
}
.necox-lightbox__thumb {
    flex-shrink: 0;
    width: 90px;
    height: 64px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s;
    padding: 0;
    background: #333;
    position: relative;
}
.necox-lightbox__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.necox-lightbox__thumb.is-active {
    border-color: var(--sad-secondary);
}
.necox-lightbox__thumb:hover {
    border-color: rgba(255,255,255,0.5);
}
.necox-lightbox__thumb--video::after {
    content: '▶';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    background: rgba(0,0,0,0.4);
}

/* Lightbox video active state — viewport zoom devre disi */
.necox-lightbox.is-video-active .necox-lightbox__viewport {
    cursor: default;
}
.necox-lightbox.is-video-active .necox-lightbox__zoom {
    opacity: 0.3;
    pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════
   FIYAT DUSUSU KUTUSU (price drop box helper)
   ═══════════════════════════════════════════════════════════ */
.necox-sad__price-drop {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 12px;
    color: var(--sad-green-dark);
    font-size: 13px;
    font-weight: 600;
}
.necox-sad__price-drop-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--sad-green-dark);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .necox-sad-p1 {
        margin: 12px auto;
        padding: 0 16px;
    }
    .necox-sad-p1__col-gallery,
    .necox-sad-p1__col-sidebar {
        position: static;
    }
    .necox-sad-p3__hero-wrap,
    .necox-sad-p3__normal-wrap {
        padding: 16px 16px 0;
    }
    .necox-sad-p3--overlay .necox-sad-p3__hero {
        height: 360px;
    }
    .necox-sad-p3--overlay .necox-sad-p3__hero-title {
        font-size: 26px;
    }
    .necox-sad-p3--overlay .necox-sad-p3__hero-price-new {
        font-size: 26px;
    }
    .necox-sad-p3--overlay .necox-sad-p3__hero-content {
        bottom: 20px;
        left: 20px;
        right: 20px;
    }
    .necox-sad-p3 .necox-seller-premium {
        height: auto;
    }
    .necox-sad-p3__detail-wrap {
        padding: 16px;
    }
    .necox-sad-p3__title-card {
        padding: 20px;
    }
    .necox-sad-p3__title {
        font-size: 22px;
    }
    .necox-sad-p3__title-price-new {
        font-size: 28px;
    }
    .necox-sad-gallery__thumbs {
        grid-template-columns: repeat(4, 1fr);
        gap: 6px;
    }
    .necox-sad-p1__title {
        font-size: 22px;
    }
    .necox-sad-p1__price-new {
        font-size: 28px;
    }
    .necox-sad-sticky-bar__price {
        display: none; /* Mobile'da yer yok */
    }
}

/* Print */
@media print {
    .necox-sad-sticky-bar,
    .necox-sad-p1__action-bar,
    .necox-sad-p3__action-bar,
    .necox-seller-premium__cta-row,
    .necox-seller-premium__cta-primary,
    .necox-seller-premium__cta-offer,
    .necox-sad-gallery__nav,
    .necox-sad-gallery__expand,
    .necox-sad-gallery__counter,
    .necox-sad-p3__hero-expand,
    .necox-lightbox {
        display: none !important;
    }
}

/* ═══════════════════════════════════════════════════════════
   HELPER CLASS ALIASLARI (helpers.php uyumu)
   v3.69.0 — helpers.php yeni CSS isimlendirmesi ile uyumlu olacak sekilde
   alias selector'lar (eski kodu kirmamak icin korunur).
   ═══════════════════════════════════════════════════════════ */

/* Sticky bar — helpers.php necox-sad__sticky-* kullaniyor, CSS necox-sad-sticky-bar */
.necox-sad__sticky-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--necox-sad-sticky-bg, rgba(255,255,255,0.96));
    backdrop-filter: blur(var(--necox-sad-sticky-blur, 10px));
    -webkit-backdrop-filter: blur(var(--necox-sad-sticky-blur, 10px));
    border-bottom: 1px solid var(--necox-sad-sticky-border, var(--sad-border));
    z-index: 100;
    padding: 12px 24px;
    display: none;
    align-items: center;
    gap: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.necox-sad__sticky-bar.is-visible {
    display: flex;
    animation: necox-sad-slide-down 0.2s ease-out;
}
.necox-sad__sticky-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}
.necox-sad__sticky-info {
    flex: 1;
    min-width: 0;
}
.necox-sad__sticky-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--sad-text);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.necox-sad__sticky-price {
    font-family: var(--necox-sad-price-font, var(--sad-font-serif));
    font-size: 16px;
    font-weight: 700;
    color: var(--sad-primary);
    margin-top: 2px;
}
.necox-sad__sticky-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

/* Slider/old gallery aliases (helpers.php necox-sad__gallery + slide vs.) */
.necox-sad__gallery {
    width: 100%;
    border-radius: var(--necox-sad-gallery-radius, 14px);
    overflow: hidden;
    background: var(--sad-soft-bg);
}
.necox-sad__gallery-main {
    width: 100%;
    aspect-ratio: 4/3;
    position: relative;
    overflow: hidden;
}
.necox-sad__slider-track {
    display: flex;
    transition: transform 0.3s ease;
}
.necox-sad__slide {
    flex-shrink: 0;
    width: 100%;
}
.necox-sad__slider-prev,
.necox-sad__slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.92);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    transition: all 0.15s;
    z-index: 2;
}
.necox-sad__slider-prev { left: 16px; }
.necox-sad__slider-next { right: 16px; }
.necox-sad__slider-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 2;
}
.necox-sad__slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.15s;
}
.necox-sad__slider-dot.is-active {
    background: var(--necox-sad-gallery-dot-color, var(--sad-secondary));
    width: 24px;
    border-radius: 999px;
}
.necox-sad__thumbs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    margin-top: 12px;
}
.necox-sad__thumb {
    aspect-ratio: 4/3;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s;
    background: var(--sad-soft-bg);
    padding: 0;
}
.necox-sad__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.necox-sad__thumb.is-active,
.necox-sad__thumb:hover {
    border-color: var(--sad-primary);
}

/* Action buttons (helpers.php necox-sad__actions + action-btn) */
.necox-sad__actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.necox-sad__action-btn {
    background: var(--sad-card);
    border: 1px solid var(--sad-border);
    color: var(--sad-text);
    padding: 8px 14px;
    border-radius: 8px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.15s;
    text-decoration: none;
}
.necox-sad__action-btn:hover {
    border-color: var(--sad-primary);
    color: var(--sad-primary);
}

/* Section title (helpers ortak) */
.necox-sad__section-title {
    font-family: var(--necox-sad-section-font, var(--sad-font-serif));
    font-size: var(--necox-sad-section-size, 20px);
    font-weight: var(--necox-sad-section-weight, 600);
    margin: 0 0 16px;
    color: var(--necox-sad-section-color, var(--sad-text));
    display: flex;
    align-items: center;
    gap: 10px;
}
.necox-sad__section-title::before {
    content: '';
    width: 4px;
    height: 20px;
    background: var(--sad-secondary);
    border-radius: 2px;
}

/* v3.74.4 — Eski avatar override kurallari kaldirildi (1295. satirdaki tek kural calisir).
   Onceden 2260-2294 arasi eski 64px/80px sabit boyutlar v3.74.3 admin ayarini override ediyordu. */
.necox-seller-premium__rating-text {
    /* sadece text icin */
}
.necox-seller-premium__cta-offer-icon {
    margin-right: 4px;
}
.necox-seller-premium__strip {
    /* hero stripe alias */
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* ILAN NUMARASI — v3.73.0'da ad-number.css'e tasindi */
/* (K2 admin paneli ile ozellestirilebilir)            */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* SATICININ DIGER ILANLARI — v3.73.3            */
/* (sag sticky kolonda kompakt liste + mobil    */
/*  yatay scroll-snap satir)                    */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* v3.73.4 — seller-aside artik sticky degil; sticky sag panel detail-sticky'de */
/* (Eski sticky kurali kaldirildi: hero ile paralel zaten yeterli yer kapliyor) */

/* Saticinin diger ilanlari - desktop kompakt liste (eski - hero altinda kullanilmiyor artik) */
.necox-sad-p3__seller-other {
    margin-top: 16px;
    background: var(--sad-card, #fff);
    border: 1px solid var(--sad-border, #e4e6ec);
    border-radius: 12px;
    padding: 14px;
}
.necox-sad-p3__seller-other-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--sad-text, #2A3254);
    margin: 0 0 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--sad-border, #e4e6ec);
}
.necox-sad-p3__seller-other-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.necox-sad-p3__seller-other-item {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 6px;
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    transition: background 0.15s;
}
.necox-sad-p3__seller-other-item:hover {
    background: rgba(42, 50, 84, 0.04);
}
.necox-sad-p3__seller-other-thumb {
    width: 56px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 6px;
    background-color: #f0f1f5;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.necox-sad-p3__seller-other-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.necox-sad-p3__seller-other-name {
    font-size: 12px;
    font-weight: 500;
    color: var(--sad-text, #2A3254);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
}
.necox-sad-p3__seller-other-price {
    font-size: 11px;
    color: var(--sad-muted, #6b7280);
    font-weight: 500;
}
.necox-sad-p3__seller-other-price .necox-price {
    font-size: 11px;
    color: var(--sad-muted, #6b7280);
}

/* Mobil yatay scroll-snap satir - varsayilan gizli, mobil/tablette gorunur */
.necox-sad-p3__seller-other-h {
    display: none;
}

/* DESKTOP/Tablet >1100px: sticky kolondaki kompakt liste aktif */
/* MOBIL/TABLET <=1100px: sticky kolondaki listeyi gizle, yatay listeyi goster */
@media (max-width: 1100px) {
    /* Sticky kolondaki liste mobilde gizlensin (yatay versiyon sayfa sonunda gosterilir) */
    .necox-sad-p3__seller-aside .necox-sad-p3__seller-other {
        display: none;
    }

    /* Sticky kolon mobilde sticky olmasin */
    .necox-sad-p3__seller-aside {
        position: static;
    }

    /* Yatay scroll-snap satir aktif */
    .necox-sad-p3__seller-other-h {
        display: block;
        padding: 24px 24px 8px;
    }
    .necox-sad-p3__seller-other-h .necox-sad-p3__section-title {
        margin: 0 0 12px;
    }
    .necox-sad-p3__seller-other-h-track {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 8px;
        scrollbar-width: thin;
    }
    .necox-sad-p3__seller-other-h-track::-webkit-scrollbar {
        height: 6px;
    }
    .necox-sad-p3__seller-other-h-track::-webkit-scrollbar-thumb {
        background: rgba(42, 50, 84, 0.2);
        border-radius: 3px;
    }
    .necox-sad-p3__seller-other-h-card {
        flex: 0 0 auto;
        width: 180px;
        scroll-snap-align: start;
        background: var(--sad-card, #fff);
        border: 1px solid var(--sad-border, #e4e6ec);
        border-radius: 10px;
        padding: 8px;
        text-decoration: none;
        color: inherit;
        display: flex;
        flex-direction: column;
        gap: 6px;
        transition: transform 0.15s, box-shadow 0.15s;
    }
    .necox-sad-p3__seller-other-h-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }
    .necox-sad-p3__seller-other-h-thumb {
        width: 100%;
        aspect-ratio: 4/3;
        border-radius: 6px;
        background-color: #f0f1f5;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
    .necox-sad-p3__seller-other-h-name {
        font-size: 12px;
        font-weight: 500;
        color: var(--sad-text, #2A3254);
        line-height: 1.3;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .necox-sad-p3__seller-other-h-price {
        font-size: 12px;
        font-weight: 600;
        color: var(--sad-text, #2A3254);
        margin-top: auto;
    }
    .necox-sad-p3__seller-other-h-price .necox-price {
        font-size: 12px;
        font-weight: 600;
    }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* SATICININ DIGER ILANLARI - BUYUK KART (v3.73.4) */
/* (Detail-grid sag sticky panelinde kullanilir)   */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.necox-sad-p3__seller-other-card {
    background: var(--sad-card, #fff);
    border: 1px solid var(--sad-border, #e4e6ec);
    border-radius: 14px;
    padding: 18px;
    box-shadow: var(--sad-shadow-sm, 0 1px 3px rgba(0,0,0,0.04));
}

.necox-sad-p3__seller-other-card-title {
    font-family: var(--necox-sad-section-font, var(--sad-font-serif));
    font-size: 16px;
    font-weight: 600;
    color: var(--sad-text, #2A3254);
    margin: 0 0 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--sad-border, #e4e6ec);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Sari sol stripe accent */
.necox-sad-p3__seller-other-card-title::before {
    content: "";
    display: inline-block;
    width: 4px;
    height: 18px;
    background: var(--sad-secondary, #FFCC04);
    border-radius: 2px;
}

.necox-sad-p3__seller-other-card-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.necox-sad-p3__seller-other-card-item {
    display: flex;
    gap: 12px;
    align-items: stretch;
    padding: 10px;
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
    border: 1px solid transparent;
}

.necox-sad-p3__seller-other-card-item:hover {
    background: rgba(42, 50, 84, 0.04);
    border-color: var(--sad-border, #e4e6ec);
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(42, 50, 84, 0.06);
}

.necox-sad-p3__seller-other-card-thumb {
    width: 84px;
    height: 64px;
    flex-shrink: 0;
    border-radius: 8px;
    background-color: #f0f1f5;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.necox-sad-p3__seller-other-card-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    justify-content: space-between;
}

.necox-sad-p3__seller-other-card-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--sad-text, #2A3254);
    line-height: 1.35;
    /* 2-satir line-clamp */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
}

.necox-sad-p3__seller-other-card-price,
.necox-sad-p3__seller-other-card-price .necox-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--sad-primary, #2A3254);
    line-height: 1.3;
}

/* necox_get_ad_price zaten kendi icinde eski fiyat (was) ve indirim rozetini barindirir */
.necox-sad-p3__seller-other-card-price .necox-price__was {
    font-size: 11px;
    color: var(--sad-muted, #6b7280);
    text-decoration: line-through;
    font-weight: 500;
    margin-right: 6px;
}
.necox-sad-p3__seller-other-card-price .necox-price-drop-badge {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    background: rgba(34, 197, 94, 0.12);
    color: #16a34a;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    margin-left: 6px;
}
.necox-sad-p3__seller-other-card-price .necox-price-drop-badge .dashicons {
    font-size: 10px;
    width: 10px;
    height: 10px;
    line-height: 1;
}

/* Mobilde detail-sticky gizli oldugu icin bu kart liste zaten gorunmez,
   yatay scroll versiyonu (seller-other-h) Konum'dan sonra cikar */
