/* ═══════════════════════════════════════════
   SATIŞ NOKTALARI — GENEL
═══════════════════════════════════════════ */
.sn-bg {
    background: #f9f6f1;
}

/* ─── Bölüm başlık bloğu ─────────────────── */
.sn-section-pre {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #e20032;
    margin: 0 0 10px;
}
.sn-section-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.18;
    margin: 0 0 6px;
}
@media (min-width: 960px) { .sn-section-title { font-size: 34px; } }

.sn-divider {
    width: 48px;
    height: 3px;
    background: #e20032;
    border-radius: 2px;
    margin: 16px 0;
}

/* ═══════════════════════════════════════════
   BÖLÜM 1 — FABRİKA SATIŞ YERİ
═══════════════════════════════════════════ */
.sn-fabrika {
    padding: 72px 0 64px;
}

.sn-fabrika__inner {
    display: grid;
    gap: 40px;
    align-items: start;
}
@media (min-width: 960px) {
    .sn-fabrika__inner {
        grid-template-columns: 1fr 1fr;
        gap: 56px;
        align-items: start;
    }
}

/* İletişim satırları — ic-strip stilini devralan ama kart görünümünde */
.sn-contact-row {
    background: #fff;
    border-radius: 12px;
    padding: 22px 22px !important;
    box-shadow: 0 2px 12px rgba(26,26,26,.07);
    margin: 0 !important;
    text-decoration: none;
    color: inherit;
    transition: box-shadow .2s ease;
}
.sn-contact-row:hover {
    box-shadow: 0 4px 18px rgba(26,26,26,.12);
    color: inherit;
    text-decoration: none;
}

.sn-fabrika__info {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Harita — daha kısa */
.sn-fabrika__map {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(26,26,26,.12);
    height: 320px;
}
.sn-fabrika__map iframe,
.sn-fabrika__map > * {
    width: 100% !important;
    height: 100% !important;
    display: block;
    border: none;
}

/* ═══════════════════════════════════════════
   BÖLÜM 2 — MAĞAZALAR
═══════════════════════════════════════════ */
.sn-magazalar {
    padding: 64px 0;
    background: #fff;
}

.sn-magazalar__head {
    margin-bottom: 40px;
}

.sn-magaza-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: 1fr;
}
@media (min-width: 640px) {
    .sn-magaza-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
    .sn-magaza-grid { grid-template-columns: repeat(3, 1fr); }
}

.sn-magaza-card {
    background: #f9f6f1;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 14px rgba(26,26,26,.06);
    display: flex;
    flex-direction: column;
    transition: transform .25s ease, box-shadow .25s ease;
}
.sn-magaza-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(26,26,26,.13);
}

/* Logo alanı: sabit yükseklik, contain */
.sn-magaza-card__img-wrap {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 16px;
}
.sn-magaza-card__img-wrap img {
    max-width: 150px;
    max-height: 108px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    margin: auto;
}

.sn-magaza-card__body {
    padding: 14px 20px 18px;
    flex: 1;
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(26,26,26,.06);
}
.sn-magaza-card__name {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.3;
    text-align: center;
    width: 100%;
}

/* Resim yokken placeholder */
.sn-magaza-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bbb;
}

/* ═══════════════════════════════════════════
   BÖLÜM 3 — ONLİNE SİPARİŞ
═══════════════════════════════════════════ */
.sn-online {
    padding: 64px 0 80px;
    background: #f9f6f1;
}

.sn-online-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 40px;
}

.sn-online-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #e20032;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    transition: background .2s ease, transform .2s ease;
}
.sn-online-btn:hover {
    background: #c4002b;
    transform: translateX(4px);
    color: #fff;
    text-decoration: none;
}
