/* =============================================
   Sky Fragrance Cards – style.css
   Matches the reference design exactly
   ============================================= */

.sfc-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
    box-sizing: border-box;
}

/* ── Single Card ── */
.sfc-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #ffffff;
    border-radius: 16px;
    padding: 22px 28px;
    box-sizing: border-box;
    width: 100%;
    gap: 16px;
}

/* ── Left side: dot + text ── */
.sfc-left {
    display: flex;
    align-items: center;
    gap: 18px;
    flex: 1;
    min-width: 0; /* allow text to shrink */
}

.sfc-dot {
    display: inline-block;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    flex-shrink: 0;
    background-color: #4a6741;
}

.sfc-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.sfc-title {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 22px;
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sfc-descriptors {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #9a9a9a;
    letter-spacing: 0.01em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ── Right side: badge ── */
.sfc-right {
    flex-shrink: 0;
}

.sfc-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 50px;
    padding: 10px 20px;
    border: 1.5px solid transparent;
    white-space: nowrap;
}

/* Outline variant – Mild / Balanced */
.sfc-badge--outline {
    background-color: transparent;
    border-color: #d0ccc8;
}

.sfc-badge--outline .sfc-perf-label {
    color: #8a8a8a;
}

.sfc-badge--outline .sfc-perf-value {
    color: #1a1a1a;
}

/* Filled variant – Strong */
.sfc-badge--filled {
    background-color: #3a5238;
    border-color: #3a5238;
}

.sfc-badge--filled .sfc-perf-label {
    color: rgba(255,255,255,0.72);
}

.sfc-badge--filled .sfc-perf-value {
    color: #ffffff;
}

/* Shared badge text */
.sfc-perf-label {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.sfc-perf-value {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.01em;
}

/* =============================================
   RESPONSIVE – Tablet (≤ 768px)
   ============================================= */
@media (max-width: 768px) {
    .sfc-card {
        padding: 18px 20px;
        gap: 12px;
    }

    .sfc-title {
        font-size: 18px;
    }

    .sfc-descriptors {
        font-size: 13px;
    }

    .sfc-badge {
        padding: 8px 14px;
        gap: 5px;
    }

    .sfc-perf-label {
        font-size: 10px;
        letter-spacing: 0.09em;
    }

    .sfc-perf-value {
        font-size: 13px;
    }

    .sfc-dot {
        width: 18px;
        height: 18px;
    }
}

/* =============================================
   RESPONSIVE – Mobile (≤ 480px)
   ============================================= */
@media (max-width: 480px) {
    .sfc-card {
        padding: 14px 16px;
        gap: 10px;
        flex-wrap: nowrap;
    }

    .sfc-left {
        gap: 12px;
    }

    .sfc-title {
        font-size: 15px;
    }

    .sfc-descriptors {
        font-size: 11px;
    }

    .sfc-badge {
        padding: 7px 11px;
        gap: 4px;
    }

    .sfc-perf-label {
        font-size: 9px;
        letter-spacing: 0.07em;
    }

    .sfc-perf-value {
        font-size: 12px;
    }

    .sfc-dot {
        width: 14px;
        height: 14px;
    }
}
