/* SA Feature List — Sabbir Ahmed */
.sa-fl {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

/* ── Row ── */
.sa-fl__row {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 24px 20px 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 18px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-sizing: border-box;
    transition: border-color 0.25s ease;
    position: relative;
    overflow: hidden;
}

/* Highlight glow row */
.sa-fl__row--highlight {
    border-color: rgba(100,100,255,0.40);
    box-shadow: 0 0 40px rgba(80,80,255,0.35), inset 0 0 40px rgba(80,80,255,0.35);
}

/* ── Icon Badge ── */
.sa-fl__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(255,255,255,0.10);
    color: #ffffff;
}

.sa-fl__icon i, .sa-fl__icon svg {
    font-size: 20px;
    width: 20px;
    height: 20px;
    fill: currentColor;
    color: inherit;
    display: block;
}

/* ── Separator (between icon and body) ── */
.sa-fl__sep {
    width: 1px;
    align-self: stretch;
    background: rgba(255,255,255,0.12);
    flex-shrink: 0;
    border-radius: 1px;
}

/* ── Body ── */
.sa-fl__body {
    flex: 1;
    min-width: 0;
}

.sa-fl__title {
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 4px;
}

.sa-fl__desc {
    color: rgba(255,255,255,0.55);
    font-size: 13px;
    line-height: 1.5;
}

/* ── Price ── */
.sa-fl__price {
    flex-shrink: 0;
    color: rgba(255,255,255,0.45);
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    text-align: right;
}

/* Mobile */
@media (max-width: 600px) {
    .sa-fl__row { flex-wrap: wrap; gap: 12px; }
    .sa-fl__price { width: 100%; text-align: left; padding-left: 70px; }
    .sa-fl__title { font-size: 15px; }
}

@media (prefers-reduced-motion: reduce) {
    .sa-fl__row { transition: none; }
}
