/* ── Mobile swipe wrapper (clips overflow) ── */
.mobile-swipe-wrapper {
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgba(18,33,29,0.08);
    background: #fff;
    touch-action: pan-y;
    user-select: none;
    -webkit-user-select: none;
}

/* ── Track: all slides in one row, moved by translateX ── */
.mobile-swipe-track {
    display: flex;
    width: 100%;
    transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

/* ── Each slide takes exactly 100% of wrapper width ── */
.m-slide {
    flex: 0 0 100%;
    width: 100%;
    min-width: 0;
}

.mobile-card-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
}

.mobile-counter-pill {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(18,51,48,0.72);
    color: #c9f0a0;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 4px 10px;
    border-radius: 99px;
}

.m-slide-body {
    padding: 20px 18px 26px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.m-slide-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #12211d;
    line-height: 1.25;
    margin: 4px 0 0;
}

.m-slide-desc {
    color: #54655f;
    font-size: 14px;
    line-height: 1.65;
    margin: 0;
}

.m-slide-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 8px;
}

.m-price-label {
    font-size: 10px;
    font-weight: 700;
    color: #7c8b85;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 2px;
}

.m-price {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 28px;
    color: #123330;
    line-height: 1;
}

.m-cta-btn {
    background: #123330;
    color: #fff;
    border: none;
    padding: 13px 24px;
    border-radius: 99px;
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.18s;
}
.m-cta-btn:hover { background: #1a413b; }

/* ── Small nav button (mobile bottom bar) ── */
.nav-btn-sm {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid rgba(18,33,29,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.18s, border-color 0.18s, transform 0.15s;
    flex-shrink: 0;
}
.nav-btn-sm:hover { background: #123330; border-color: #123330; }
.nav-btn-sm:hover svg { stroke: #c9f0a0; }
.nav-btn-sm:active { transform: scale(0.91); }
.nav-btn-sm svg { stroke: #42544e; transition: stroke 0.18s; }

