/* ── Banner ─────────────────────────────────────────── */
.outlets-banner {
    position: relative;
    background: #000 url('<?= base_url("assets/images/almore-for-bg.webp") ?>') center/cover no-repeat;
    min-height: 320px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.outlets-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,.85) 50%, rgba(255,5,8,.15) 100%);
}
.outlets-banner .banner-inner {
    position: relative;
    z-index: 1;
    padding: 60px 0px 0px 0px;
}
.outlets-banner h1 {
    font-size: clamp(32px, 5vw, 62px);
    font-weight: 800;
    font-style: italic;
    color: #fff;
    text-transform: uppercase;
    line-height: 1.1;
    margin: 0;
}
.outlets-banner h1 span { color: #ff0508; }
.outlets-banner p {
    color: rgba(255,255,255,.7);
    font-size: 16px;
    margin-top: 12px;
    font-style: italic;
}
.banner-red-line {
    width: 70px;
    height: 4px;
    background: #ff0508;
    margin: 16px 0;
}

/* ── Zone Tabs ──────────────────────────────────────── */
.zone-tabs-wrap {
    background: #000;
    border-bottom: 2px solid #1a1a1a;
    position: sticky;
    top: 0;
    z-index: 100;
}
.zone-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}
.zone-tab {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 16px 28px;
    color: rgba(255,255,255,.5);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    border-bottom: 3px solid transparent;
    transition: all .3s ease;
    white-space: nowrap;
}
.zone-tab i { font-size: 14px; }
.zone-tab:hover {
    color: #fff;
    border-color: rgba(255,5,8,.5);
}
.zone-tab.active {
    color: #ff0508;
    border-color: #ff0508;
    background: rgba(255,5,8,.06);
}
@media(max-width:600px) {
    .zone-tab { padding: 12px 14px; font-size: 11px; letter-spacing: 1px; }
}

/* ── Outlets Section ────────────────────────────────── */
.outlets-section {
    background: #f5f5f5;
    padding: 60px 0px;
}
.outlets-count {
    font-size: 13px;
    color: #888;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
}
.outlets-count span { color: #ff0508; font-size: 18px; }

/* ── Outlet Card ────────────────────────────────────── */
.outlet-card {
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,.08);
    transition: transform .3s ease, box-shadow .3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border-top: 3px solid #ff0508;
}
.outlet-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(255,5,8,.15);
}
.outlet-card-img {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: #111;
}
.outlet-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}
.outlet-card:hover .outlet-card-img img { transform: scale(1.06); }
.outlet-zone-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #ff0508;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
}
.outlet-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.outlet-card-name {
    font-size: 17px;
    font-weight: 800;
    color: #111;
    text-transform: uppercase;
    margin-bottom: 8px;
    line-height: 1.3;
}
.outlet-card-city {
    font-size: 13px;
    color: #888;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.outlet-card-city i { color: #ff0508; }
.outlet-card-phone {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 16px;
}
.outlet-card-phone i { color: #ff0508; }
.outlet-card-footer {
    margin-top: auto;
    display: flex;
    gap: 8px;
}
.btn-view-outlet {
    flex: 1;
    background: #000;
    color: #fff;
    text-align: center;
    padding: 10px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: background .3s;
    border: 2px solid #000;
}
.btn-view-outlet:hover { background: #ff0508; border-color: #ff0508; color: #fff; }
.btn-whatsapp-outlet {
    background: #25d366;
    color: #fff;
    padding: 10px 14px;
    font-size: 16px;
    text-decoration: none;
    transition: background .3s;
    border: 2px solid #25d366;
}
.btn-whatsapp-outlet:hover { background: #1da851; border-color: #1da851; color: #fff; }

/* ── Empty State ────────────────────────────────────── */
.empty-outlets {
    text-align: center;
    padding: 80px 20px;
}
.empty-outlets i {
    font-size: 60px;
    color: #ddd;
    margin-bottom: 20px;
    display: block;
}
.empty-outlets h3 { color: #333; font-size: 22px; }
.empty-outlets p { color: #999; font-size: 15px; }

/* ── CTA Strip ──────────────────────────────────────── */
.outlets-cta {
    background: #000;
    padding: 50px 0;
    text-align: center;
    border-top: 3px solid #ff0508;
}
.outlets-cta h2 {
    color: #fff;
    font-size: clamp(22px, 3vw, 36px);
    font-weight: 800;
    font-style: italic;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.outlets-cta h2 span { color: #ff0508; }
.outlets-cta p { color: rgba(255,255,255,.6); font-size: 15px; margin-bottom: 24px; }
.btn-cta-red {
    background: #ff0508;
    color: #fff;
    padding: 14px 40px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    border: 2px solid #ff0508;
    transition: all .3s;
    display: inline-block;
}
.btn-cta-red:hover { background: transparent; color: #ff0508; }

/* ═══════════════════════════════════════════════════════
   OUTLET DETAIL PAGE
   ═══════════════════════════════════════════════════════ */

/* ── Detail Banner ──────────────────────────────────── */
.outlet-detail-banner {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: #111;
}
.outlet-detail-banner .banner-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(.45);
    transition: transform 8s ease;
}
.outlet-detail-banner:hover .banner-bg { transform: scale(1.04); }
.outlet-detail-banner .banner-content {
    position: relative;
    z-index: 1;
    padding: 40px 0 50px;
    width: 100%;
}
.outlet-detail-banner .outlet-badge {
    display: inline-block;
    background: #ff0508;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 5px 14px;
    margin-bottom: 14px;
}
.outlet-detail-banner h1 {
    font-size: clamp(28px, 4vw, 52px);
    font-weight: 800;
    font-style: italic;
    color: #fff;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 16px;
}
.outlet-detail-banner h1 span { color: #ff0508; }
.outlet-social-links { display: flex; gap: 12px; flex-wrap: wrap; }
.outlet-social-link {
    width: 44px;
    height: 44px;
    border: 2px solid rgba(255,255,255,.3);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    text-decoration: none;
    transition: all .3s;
}
.outlet-social-link:hover { border-color: #ff0508; background: #ff0508; color: #fff; }

/* ── Quick CTA Bar ──────────────────────────────────── */
.outlet-cta-bar {
    background: #ff0508;
    padding: 16px 0;
}
.outlet-cta-bar .cta-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.cta-bar-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 28px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all .3s;
    border: 2px solid transparent;
}
.cta-bar-btn.btn-dark-cta { background: #000; color: #fff; border-color: #000; }
.cta-bar-btn.btn-dark-cta:hover { background: transparent; color: #000; border-color: #000; }
.cta-bar-btn.btn-white-cta { background: #fff; color: #ff0508; border-color: #fff; }
.cta-bar-btn.btn-white-cta:hover { background: transparent; color: #fff; border-color: #fff; }

/* ── Detail Info Section ────────────────────────────── */
.outlet-info-section { background: #f5f5f5; padding: 60px 0; }

.info-card {
    background: #fff;
    border-top: 3px solid #ff0508;
    padding: 28px;
    height: 100%;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.info-card-icon {
    width: 48px;
    height: 48px;
    background: #ff0508;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 14px;
}
.info-card-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ff0508;
    margin-bottom: 6px;
}
.info-card-value {
    font-size: 15px;
    color: #222;
    font-weight: 600;
    line-height: 1.6;
}
.info-card-value a { color: #222; text-decoration: none; }
.info-card-value a:hover { color: #ff0508; }

/* ── Map + Details Row ──────────────────────────────── */
.outlet-map-section { background: #fff; padding: 0 0 30px; }
.map-wrap { position: relative; overflow: hidden; }
.map-wrap iframe { display: block; width: 100%; height: 480px; border: 0; }
.outlet-details-panel {
    background: #000;
    padding: 40px;
    height: 100%;
    min-height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.outlet-details-panel .panel-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ff0508;
    margin-bottom: 6px;
}
.outlet-details-panel h2 {
    font-size: clamp(22px, 2.5vw, 32px);
    font-weight: 800;
    font-style: italic;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 24px;
    line-height: 1.2;
}
.outlet-details-panel h2 span { color: #ff0508; }
.detail-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.detail-item:last-child { border-bottom: none; }
.detail-item-icon {
    width: 36px;
    height: 36px;
    background: rgba(255,5,8,.15);
    color: #ff0508;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 2px;
}
.detail-item-text .label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,.4);
    margin-bottom: 3px;
}
.detail-item-text .value {
    font-size: 14px;
    color: #fff;
    font-weight: 500;
    line-height: 1.5;
}
.detail-item-text .value a { color: #fff; text-decoration: none; }
.detail-item-text .value a:hover { color: #ff0508; }

/* ── Content Section ────────────────────────────────── */
.outlet-content-section {
    background: #fff;
    padding: 60px 0;
    border-top: 1px solid #eee;
}
.outlet-content-section .content-body { font-size: 15px; line-height: 1.8; color: #444; }

@media(max-width:991px) {
    .outlet-details-panel { min-height: auto; padding: 30px 20px; }
    .map-wrap iframe { height: 320px; }
}
@media(max-width:768px) {
    .outlet-detail-banner { min-height: 300px; }
    .outlet-cta-bar .cta-bar-inner { flex-direction: column; gap: 10px; }
    .cta-bar-btn { width: 100%; justify-content: center; }
    .info-card { margin-bottom: 16px; }
}
