/* TFC Subscription Frontend Styles */

/* ════════════════════════════════════════════════════════════════
   PORTAL DESIGN SYSTEM — glassmorphism subscription pages
   ════════════════════════════════════════════════════════════════ */

:root {
    --fc-navy:       #1E2D40;
    --fc-heading:    #233D63;
    --fc-blue:       #2E4D7B;
    --fc-blue-light: #4F86D6;
    --fc-green:      #3FA978;
    --fc-orange:     #C9852F;
    --fc-red:        #C9572F;
    --fc-gray:       #94A1B2;
    --fc-gray-text:  #6A7A8C;
    --fc-gray-text2: #7C8A9A;
    --fc-slate:      #475569;
    --fc-border:     rgba(255,255,255,0.55);
    --fc-glass:      rgba(255,255,255,0.68);
    --fc-glass-deep: rgba(255,255,255,0.82);
    --fc-shadow:     0 20px 50px -28px rgba(46,77,123,0.38), inset 0 1px 0 rgba(255,255,255,0.7);
    --fc-radius:     26px;
    --fc-radius-sm:  14px;
    --fc-font:       'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

/* ── Portal wrapper ────────────────────────────────────────────── */
.tfc-portal {
    position: relative;
    font-family: var(--fc-font);
    color: var(--fc-navy);
    padding: 8px 0 48px;
    overflow: visible;
}

@keyframes fc-rise {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fc-grow {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fc-draw {
    from { stroke-dashoffset: 1100; }
    to   { stroke-dashoffset: 0; }
}

/* ── Portal header ─────────────────────────────────────────────── */
.tfc-portal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}
.tfc-portal-title {
    font-size: 26px;
    font-weight: 800;
    color: var(--fc-heading);
    margin: 0 0 4px;
    letter-spacing: -0.4px;
}
.tfc-portal-sub {
    font-size: 14px;
    color: var(--fc-gray-text2);
    margin: 0;
}
.tfc-points-pill {
    display: none !important;
    flex: none;
    display: flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #f9f2e3 0%, #fdedc7 100%);
    color: #7a5c00;
    font-size: 13px;
    font-weight: 700;
    padding: 7px 14px;
    border-radius: 99px;
    border: 1px solid #f5d98a;
    white-space: nowrap;
}

/* ── Notices ───────────────────────────────────────────────────── */
.tfc-notice {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 18px;
    border-radius: var(--fc-radius-sm);
    font-size: 14px;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}
.tfc-notice strong { margin-right: 4px; }
.tfc-notice small  { display: block; margin-top: 4px; font-size: 12px; opacity: 0.8; }
.tfc-notice--success { background: #e9f8f0; color: #1a6b40; border: 1px solid #a8e5c4; }
.tfc-notice--warning { background: #fff7e6; color: #7a4400; border: 1px solid #f5cc88; }

/* ── Buttons ───────────────────────────────────────────────────── */
.tfc-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 20px;
    border-radius: var(--fc-radius-sm);
    font-size: 13px;
    font-weight: 700;
    font-family: var(--fc-font);
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: all 0.18s ease;
    white-space: nowrap;
    line-height: 1;
}
.tfc-btn:hover { text-decoration: none; }
.tfc-btn-primary {
    background: #2B5993;
    color: #fff;
    box-shadow: 0 12px 24px -10px rgba(46,77,123,0.6);
}
.tfc-btn-primary:hover { filter: brightness(1.06); color: #fff; }
.tfc-btn-outline {
    background: rgba(255,255,255,0.7);
    border: 1px solid rgba(46,77,123,0.18);
    color: var(--fc-blue);
}
.tfc-btn-outline:hover { background: #fff; }
.tfc-btn-cancel {
    background: rgba(201,87,47,0.08);
    border: 1px solid rgba(201,87,47,0.3);
    color: var(--fc-red);
}
.tfc-btn-cancel:hover { background: rgba(201,87,47,0.14); }
.tfc-btn-ghost {
    background: transparent;
    border: 1.5px solid rgba(30,45,64,0.15);
    color: var(--fc-gray-text);
}
.tfc-btn-ghost:hover { border-color: var(--fc-blue-light); color: var(--fc-blue); }
.tfc-btn-full { width: 100%; justify-content: center; margin-top: 12px; }

/* ── Badge ─────────────────────────────────────────────────────── */
.tfc-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 11px;
    border-radius: 99px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    white-space: nowrap;
}
.tfc-badge--active    { background: #e2f7ed; color: #1a6b40; }
.tfc-badge--halted    { background: #fff3e3; color: #7a4400; }
.tfc-badge--cancelled { background: #fdecea; color: #9a2020; }
.tfc-badge--pending   { background: #eef2ff; color: #3c4dd6; }
.tfc-badge--default   { background: #f0f2f5; color: #6A7A8C; }

/* ── Empty state ───────────────────────────────────────────────── */
.tfc-empty-state {
    background: var(--fc-glass-deep);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border: 1px solid var(--fc-border);
    border-radius: var(--fc-radius);
    box-shadow: var(--fc-shadow);
    text-align: center;
    padding: 64px 24px;
    position: relative;
    z-index: 1;
    color: var(--fc-gray-text);
}
.tfc-empty-state h2 { margin: 16px 0 8px; font-size: 20px; color: var(--fc-navy); }
.tfc-empty-state p  { margin: 0 0 24px; }
.tfc-empty-state .fa-pills { color: var(--fc-blue-light); opacity: 0.5; }

/* ────────────────────────────────────────────────────────────────
   SUBSCRIPTION LIST PAGE
   ──────────────────────────────────────────────────────────────── */

.tfc-sub-card {
    background: rgba(255,255,255,0.58);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border: 1px solid rgba(255,255,255,0.75);
    border-radius: 26px;
    box-shadow: 0 22px 54px -28px rgba(46,77,123,0.4), inset 0 1px 0 rgba(255,255,255,0.7);
    margin-bottom: 22px;
    padding: 26px 28px;
    position: relative;
    z-index: 1;
    animation: fc-rise 0.6s ease both;
}
.tfc-sub-card--has-action { border-color: rgba(201,133,47,0.4); }

.tfc-action-strip {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(90deg, #fff8ec 0%, #fff3e0 100%);
    color: #7a4400;
    font-size: 12.5px;
    font-weight: 600;
    padding: 9px 16px;
    text-decoration: none;
    border-radius: 14px;
    margin: -6px -8px 18px;
    transition: background 0.15s;
}
.tfc-action-strip .fa-arrow-right { margin-left: auto; }
.tfc-action-strip:hover { background: linear-gradient(90deg, #fff2d8 0%, #ffebb5 100%); color: #5a3000; }

.tfc-sub-card-main {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.tfc-sub-icon-wrap {
    width: 100px; height: 100px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #fff;
    font-size: 22px;
    flex: none;
    box-shadow: 0 8px 20px -8px rgba(46,77,123,0.6);
}
.tfc-sub-icon-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.tfc-sub-icon-wrap--split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(255,255,255,0.6);
}
.tfc-sub-icon-tile {
    display: block;
    overflow: hidden;
    line-height: 0;
}
.tfc-sub-icon-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.tfc-sub-info { flex: 1; min-width: 180px; }
.tfc-sub-name-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: space-between;
}
.tfc-sub-name {
    margin: 0;
    font-size: 19px;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: var(--fc-navy);
    line-height: 1.2;
}
.tfc-sub-plan-label {
    margin: 2px 0 0;
    font-size: 13px;
    font-weight: 500;
    color: var(--fc-gray-text2);
}

.tfc-sub-stats {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    margin: 22px 0;
    padding: 20px 0;
    border-top: 1px solid rgba(46,77,123,0.1);
    border-bottom: 1px solid rgba(46,77,123,0.1);
}
.tfc-stat {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.tfc-stat-label {
    font-size: 11px;
    color: var(--fc-gray);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}
.tfc-stat strong { font-size: 15px; font-weight: 700; color: var(--fc-navy); }
.tfc-stat--points{ display: none !important; }
.tfc-stat--points strong { color: var(--fc-blue-light); }

.tfc-sub-card-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* Quick actions toggle */
.tfc-qa-toggle {
    margin-left: auto;
    background: rgba(74,123,192,0.1);
    border: 1px solid rgba(74,123,192,0.28) !important;
    color: #2F66C0 !important;
}
.tfc-qa-toggle:hover { background: rgba(74,123,192,0.16); }
.tfc-qa-toggle .fa-chevron-up, .tfc-qa-toggle .fa-chevron-down {
    transition: transform 0.25s ease;
}
.tfc-qa-toggle[aria-expanded="true"] .fa-chevron-down { transform: rotate(180deg); }

.tfc-qa-panel {
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px dashed rgba(46,77,123,0.2);
    animation: fc-grow 0.35s ease both;
}
.tfc-qa-panel-label {
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--fc-gray);
    font-weight: 700;
    margin-bottom: 14px;
}
.tfc-qa-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
    gap: 12px;
}
.tfc-qa-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 9px;
    padding: 16px 8px;
    background: rgba(255,255,255,0.6);
    border: 1px solid rgba(255,255,255,0.8);
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
    color: var(--fc-slate);
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    text-align: center;
    font-family: var(--fc-font);
}
.tfc-qa-card:hover { transform: translateY(-3px); box-shadow: 0 12px 24px -14px rgba(46,77,123,0.45); color: var(--fc-slate); text-decoration: none; }
.tfc-qa-card-icon {
    width: 40px; height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(46,77,123,0.1);
    color: var(--fc-blue);
    font-size: 17px;
}
.tfc-qa-card-icon--red   { background: rgba(201,87,47,0.12); color: var(--fc-red); }
.tfc-qa-card-icon--light { background: rgba(74,123,192,0.12); color: #2F66C0; }

.tfc-qa-msg {
    margin-top: 14px;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
}
.tfc-qa-msg--error { background: #fdecea; color: #c0392b; }

/* ────────────────────────────────────────────────────────────────
   SUBSCRIPTION DETAIL PAGE
   ──────────────────────────────────────────────────────────────── */

/* Navigation */
.tfc-detail-nav {
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}
.tfc-back-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 14px;
    font-weight: 600;
    color: var(--fc-gray-text);
    text-decoration: none;
    transition: color 0.15s;
}
.tfc-back-link:hover { color: var(--fc-blue); text-decoration: none; }

/* Hero card */
.tfc-hero-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.8);
    border-radius: 30px;
    box-shadow: 0 30px 70px -32px rgba(46,77,123,0.45), inset 0 1px 0 rgba(255,255,255,0.8);
    padding: 26px;
    display: flex;
    gap: 28px;
    margin-bottom: 22px;
    z-index: 1;
    animation: fc-rise 0.7s ease both;
}
.tfc-hero-card::before {
    /* content: "";
    position: absolute;
    top: -60px; right: -40px;
    width: 320px; height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(74,123,192,0.16), transparent 70%);
    pointer-events: none; */
}
.tfc-hero-visual {
    position: relative;
    flex-shrink: 0;
    width: 220px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}
.tfc-hero-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.tfc-hero-icon-wrap { position: relative; color: rgba(255,255,255,0.85); font-size: 40px; }
.tfc-hero-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.tfc-hero-eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--fc-blue-light);
}
.tfc-hero-title-row {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}
.tfc-hero-title {
    margin: 0;
    font-size: 30px;
    font-weight: 800;
    color: var(--fc-navy);
    letter-spacing: -0.025em;
}
.tfc-hero-plan {
    font-size: 13px;
    color: var(--fc-gray-text);
    margin: -12px 0 0;
}
.tfc-hero-details-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px 22px;
}
.tfc-hero-detail {
    display: flex;
    gap: 11px;
    align-items: flex-start;
}
.tfc-hero-detail-icon {
    width: 36px; height: 36px;
    flex: none;
    border-radius: 11px;
    background: rgba(46,77,123,0.09);
    color: var(--fc-blue);
    display: flex; align-items: center; justify-content: center;
}
.tfc-detail-lbl { display: block; font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--fc-gray); font-weight: 700; }
.tfc-hero-detail strong { display: block; font-size: 15px; font-weight: 700; color: var(--fc-navy); }
.tfc-hero-mini-stats {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: stretch;
    padding-top: 16px;
    border-top: 1px solid rgba(46,77,123,0.1);
}
.tfc-mini-stat {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 10px 16px;
    border-radius: 14px;
    background: rgba(46,77,123,0.06);
}
.tfc-mini-stat-icon {
    width: 34px; height: 34px;
    flex: none;
    border-radius: 10px;
    background: #fff;
    color: var(--fc-blue);
    display: flex; align-items: center; justify-content: center;
}
.tfc-mini-stat-body { display: flex; flex-direction: column; }
.tfc-mini-stat-body span { font-size: 11px; color: var(--fc-gray-text); font-weight: 600; }
.tfc-mini-stat-body strong { font-size: 17px; font-weight: 800; color: var(--fc-navy); }
.tfc-mini-stat-body strong small { font-size: 12px; font-weight: 600; color: var(--fc-gray); }
.tfc-mini-stat--green { background: linear-gradient(135deg, rgba(74,123,192,0.12), rgba(46,77,123,0.08)); }
.tfc-mini-stat--green .tfc-mini-stat-icon { color: #2F66C0; }
.tfc-mini-stat--green strong { color: #2F66C0; }
.tfc-mini-stat--gold { display: none !important; }
.tfc-mini-stat--gold .tfc-mini-stat-icon { color: var(--fc-orange); }

/* Hero right actions */
.tfc-hero-actions {
    position: relative;
    flex-shrink: 0;
    width: 250px;
    display: flex;
    flex-direction: column;
    gap: 11px;
}
.tfc-action-link {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 13px 18px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--fc-blue);
    cursor: pointer;
    border: 1px solid rgba(46,77,123,0.16);
    background: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: background 0.15s;
    font-family: var(--fc-font);
    line-height: 1.2;
    width: 100%;
    text-align: left;
}
.tfc-action-link:hover { background: #fff; color: var(--fc-blue); text-decoration: none; }
.tfc-action-link > i:first-child { color: var(--fc-blue-light); width: 16px; text-align: center; }
.tfc-action-link > span { flex: 1; }
.tfc-action-link > .fa-arrow-right { color: var(--fc-gray); font-size: 11px; }
.tfc-action-link--primary {
    justify-content: space-between;
    background: #2B5993;
    border: none;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 14px 30px -10px rgba(46,77,123,0.65);
}
.tfc-action-link--primary:hover { filter: brightness(1.07); color: #fff; }
.tfc-action-link--primary > i:first-child { color: #fff; }
.tfc-action-link--alert { background: #fff8ec; border: 1px solid rgba(201,133,47,0.3); color: #7a4400; }
.tfc-action-link--alert:hover { background: #fff2d8; color: #5a3000; }
.tfc-action-link--alert > i:first-child { color: #C9852F; }
.tfc-action-link--muted > i:first-child { color: var(--fc-gray); }
.tfc-action-link--danger { background: rgba(201,87,47,0.07); border: 1px solid rgba(201,87,47,0.28); color: var(--fc-red); }
.tfc-action-link--danger > i:first-child { color: var(--fc-red); }
.tfc-action-link--danger:hover { background: rgba(201,87,47,0.13); color: var(--fc-red); }
.tfc-action-count {
    background: var(--fc-orange);
    color: #fff;
    border-radius: 99px;
    font-size: 10px;
    font-weight: 800;
    padding: 2px 6px;
    min-width: 18px;
    text-align: center;
}

/* Bento grids */
.tfc-bento-3 {
    display: grid;
    grid-template-columns: 1.15fr 0.95fr 1.1fr;
    gap: 22px;
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
}
.tfc-bento-2 {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 22px;
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
}

/* Bento card */
.tfc-bento-card {
    background: rgba(255,255,255,0.55);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border: 1px solid rgba(255,255,255,0.72);
    border-radius: var(--fc-radius);
    box-shadow: var(--fc-shadow);
    padding: 24px;
    position: relative;
    z-index: 1;
    animation: fc-rise 0.7s ease both;
}
.tfc-bento-3 .tfc-bento-card:nth-child(2) { animation-delay: 0.05s; }
.tfc-bento-3 .tfc-bento-card:nth-child(3) { animation-delay: 0.1s; }
.tfc-bento-2 .tfc-bento-card:nth-child(2) { animation-delay: 0.05s; }
.tfc-bento-card-header {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 18px;
}
.tfc-bento-card-header-icon {
    width: 34px; height: 34px;
    flex: none;
    border-radius: 11px;
    background: rgba(46,77,123,0.1);
    color: var(--fc-blue);
    display: flex; align-items: center; justify-content: center;
    font-size: 15px;
}
.tfc-bento-card-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 800;
    color: var(--fc-navy);
    flex: 1;
    letter-spacing: -0.1px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.tfc-badge-count {
    background: rgba(201,87,47,0.13);
    color: var(--fc-red);
    border-radius: 99px;
    font-size: 12px;
    font-weight: 800;
    padding: 4px 10px;
}
.tfc-close-btn {
    background: transparent;
    border: none;
    color: var(--fc-gray);
    cursor: pointer;
    padding: 4px;
    font-size: 16px;
    transition: color 0.15s;
}
.tfc-close-btn:hover { color: var(--fc-navy); }

.tfc-empty-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 24px;
    color: var(--fc-gray);
    text-align: center;
}
.tfc-empty-section i { opacity: 0.4; }
.tfc-empty-section p { margin: 0; font-size: 13px; }

/* ── Delivery tracker (horizontal) ─────────────────────────────── */
.tfc-tracker {
    position: relative;
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}
.tfc-tracker-rail {
    position: absolute;
    top: 22px; left: 22px; right: 22px;
    height: 3px;
    background: rgba(46,77,123,0.12);
    border-radius: 2px;
}
.tfc-tracker-fill {
    position: absolute;
    top: 22px; left: 22px;
    height: 3px;
    background: linear-gradient(90deg, #2E4D7B, #4F86D6);
    border-radius: 2px;
    transition: width 0.4s ease;
}
.tfc-step {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 9px;
    width: 25%;
    text-align: center;
}
.tfc-step-icon {
    width: 44px; height: 44px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex: none;
    transition: all 0.2s;
}
.tfc-step--pending .tfc-step-icon { background: #fff; border: 2px solid rgba(46,77,123,0.16); color: var(--fc-gray); }
.tfc-step--active  .tfc-step-icon { background: #2B5993; color: #fff; box-shadow: 0 8px 18px -6px rgba(46,77,123,0.6); }
.tfc-step--done    .tfc-step-icon { background: linear-gradient(135deg, #2F8A5C, #3FA978); color: #fff; }
.tfc-step-body strong { display: block; font-size: 12px; color: var(--fc-navy); font-weight: 700; }
.tfc-step-body span   { font-size: 11px; font-weight: 700; color: var(--fc-gray); }
.tfc-step--active .tfc-step-body span { color: var(--fc-blue-light); }
.tfc-step--done   .tfc-step-body span { color: var(--fc-green); }
.tfc-step-cta {
    font-size: 11px;
    font-weight: 700;
    color: var(--fc-blue);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}
.tfc-step-cta:hover { color: var(--fc-blue-light); text-decoration: none; }
.tfc-delivery-address {
    margin-top: 20px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(74,123,192,0.08);
    display: flex;
    align-items: center;
    gap: 12px;
}
.tfc-delivery-address-icon {
    width: 36px; height: 36px;
    flex: none;
    border-radius: 11px;
    background: #fff;
    color: #2F66C0;
    display: flex; align-items: center; justify-content: center;
}
.tfc-delivery-address-body { flex: 1; min-width: 0; }
.tfc-delivery-address-body span { display: block; font-size: 12px; color: var(--fc-gray-text); font-weight: 600; }
.tfc-delivery-address-body strong { font-size: 14px; font-weight: 700; color: var(--fc-navy); }
.tfc-delivery-address-date { font-size: 13px; font-weight: 700; color: #2F66C0; white-space: nowrap; }

/* ── Required actions list ─────────────────────────────────────── */
.tfc-actions-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 4px; flex: 1; }
.tfc-action-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: rgba(255,255,255,0.6);
    border-radius: 16px;
    border: 1px solid rgba(46,77,123,0.1);
}
.tfc-action-item--featured {
    background: linear-gradient(135deg, rgba(46,77,123,0.1), rgba(74,123,192,0.08));
    border-color: rgba(46,77,123,0.12);
}
.tfc-action-item-icon {
    width: 36px; height: 36px;
    border-radius: 11px;
    background: rgba(46,77,123,0.08);
    color: var(--fc-blue);
    display: flex; align-items: center; justify-content: center;
    font-size: 15px;
    flex: none;
}
.tfc-action-item--featured .tfc-action-item-icon { background: #fff; }
.tfc-action-item-icon--alert { background: rgba(201,133,47,0.12); color: var(--fc-orange); }
.tfc-action-item-body { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.tfc-action-item-body strong { font-size: 14px; color: var(--fc-navy); font-weight: 700; }
.tfc-action-item-body span  { font-size: 12px; color: var(--fc-gray-text); }
.tfc-action-item--featured .tfc-action-item-body span { color: var(--fc-red); font-weight: 700; }
.tfc-action-item-pill {
    flex: none;
    padding: 4px 10px;
    border-radius: 99px;
    background: rgba(201,133,47,0.14);
    color: #B57A1E;
    font-size: 11px;
    font-weight: 800;
}

/* ── Savings chart ─────────────────────────────────────────────── */
.tfc-savings-stats {
    display: flex;
    gap: 22px;
    margin-bottom: 6px;
}
.tfc-savings-stats > div { display: flex; flex-direction: column; gap: 3px; }
.tfc-savings-lbl { font-size: 11px; color: var(--fc-gray); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.tfc-savings-val { font-size: 22px; font-weight: 800; color: var(--fc-navy); }
.tfc-savings-val--green { color: var(--fc-blue-light); }
.tfc-savings-val--gold  { color: var(--fc-orange); }
.tfc-savings-chart { border-radius: 10px; overflow: hidden; margin-top: 4px; }
.tfc-savings-chart svg { display: block; width: 100%; height: auto; }
.tfc-savings-chart svg path[stroke] { stroke-dasharray: 1100; animation: fc-draw 1.6s ease 0.3s both; }
.tfc-savings-note {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    color: var(--fc-gray);
    font-weight: 600;
    margin: 4px 0 0;
}

/* ── Previous orders ───────────────────────────────────────────── */
.tfc-orders-table { display: flex; flex-direction: column; }
.tfc-orders-head {
    display: grid;
    grid-template-columns: 1.1fr 1fr 0.7fr 0.9fr;
    gap: 4px 8px;
    font-size: 11px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--fc-gray);
    font-weight: 700;
    padding: 0 6px 10px;
    border-bottom: 1px solid rgba(46,77,123,0.1);
}
.tfc-order-row {
    display: grid;
    grid-template-columns: 1.1fr 1fr 0.7fr 0.9fr;
    align-items: center;
    gap: 12px 8px;
    padding: 14px 6px;
    border-bottom: 1px solid rgba(46,77,123,0.06);
    font-size: 14px;
    color: var(--fc-navy);
    font-weight: 600;
}
.tfc-order-row:last-child { border-bottom: none; }
.tfc-order-ref strong { display: block; font-size: 14px; color: var(--fc-navy); font-weight: 700; }
.tfc-order-ref span   { font-size: 11.5px; color: var(--fc-gray-text); font-weight: 500; }
.tfc-order-status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 99px;
    width: fit-content;
}
.tfc-order-status--done    { background: rgba(63,169,120,0.13); color: #2F8A5C; }
.tfc-order-status--active  { background: rgba(46,77,123,0.1); color: var(--fc-blue); }
.tfc-order-status--hold    { background: rgba(201,133,47,0.14); color: #B57A1E; }
.tfc-order-status--default { background: #f0f2f5; color: var(--fc-gray-text); }
.tfc-order-total { font-size: 14px; font-weight: 800; color: var(--fc-navy); }
.tfc-order-link {
    color: var(--fc-blue);
    font-size: 14px;
    font-weight: 700;
    transition: color 0.15s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.tfc-order-link:hover { color: var(--fc-blue-light); text-decoration: none; }

/* ── Manage my plan tiles ──────────────────────────────────────── */
.tfc-manage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.tfc-manage-tile {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 16px;
    background: rgba(255,255,255,0.6);
    border: 1px solid rgba(255,255,255,0.8);
    border-radius: 18px;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    text-decoration: none;
    color: inherit;
}
.tfc-manage-tile:hover { transform: translateY(-4px); box-shadow: 0 16px 30px -16px rgba(46,77,123,0.5); text-decoration: none; }
.tfc-manage-tile-icon {
    width: 40px; height: 40px;
    border-radius: 12px;
    background: rgba(46,77,123,0.1);
    color: var(--fc-blue);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
}
.tfc-manage-tile-icon--light { background: rgba(74,123,192,0.12); color: #2F66C0; }
.tfc-manage-tile > span:not(.tfc-manage-tile-icon) { font-size: 13px; font-weight: 700; color: var(--fc-navy); flex: 1; line-height: 1.35; }
.tfc-tile-btn {
    align-self: flex-end;
    background: none;
    color: var(--fc-blue);
    border: none;
    border-radius: 50%;
    width: 26px; height: 26px;
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}
.tfc-manage-plan-actions { display: flex; gap: 12px; margin-top: 14px; }
.tfc-manage-plan-actions .tfc-btn { flex: 1; justify-content: center; padding: 13px; border-radius: 15px; }
.tfc-form-status-msg {
    margin-top: 10px;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
}

/* ── Inline forms ──────────────────────────────────────────────── */
.tfc-form-card {
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}
.tfc-form-notice {
    font-size: 13px;
    color: var(--fc-gray-text);
    background: #fff8ec;
    border-radius: 10px;
    padding: 10px 14px;
    margin-bottom: 16px;
    border-left: 3px solid var(--fc-orange);
}
.req { color: var(--fc-red); }
.tfc-form-field { margin-bottom: 12px; }
.tfc-form-field label { display: block; font-size: 12px; color: var(--fc-gray-text); font-weight: 600; margin-bottom: 5px; }
.tfc-form-field input,
.tfc-form-field select,
.tfc-form-field textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1.5px solid rgba(30,45,64,0.15);
    border-radius: 10px;
    font-size: 13.5px;
    background: rgba(255,255,255,0.85);
    color: var(--fc-navy);
    box-sizing: border-box;
    font-family: var(--fc-font);
    transition: border-color 0.15s;
}
.tfc-form-field input:focus,
.tfc-form-field select:focus,
.tfc-form-field textarea:focus { border-color: var(--fc-blue-light); outline: none; }
.tfc-form-field textarea { resize: vertical; }
.tfc-form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.tfc-form-actions { display: flex; align-items: center; gap: 10px; margin-top: 8px; }
.tfc-form-status { font-size: 12.5px; font-weight: 700; }
.tfc-status--ok  { color: var(--fc-green); }
.tfc-status--err { color: var(--fc-red); }
.tfc-current-product-lbl { display: block; font-size: 12px; color: var(--fc-gray); font-weight: 600; margin-bottom: 4px; }
.tfc-current-product-val { margin: 0 0 14px; font-size: 14px; font-weight: 700; color: var(--fc-navy); }

/* ── Dose picker tiles ─────────────────────────────────────────── */
.tfc-dose-tiles {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.tfc-dose-tile {
    padding: 9px 16px;
    border-radius: 12px;
    border: 1.5px solid rgba(30,45,64,0.15);
    background: rgba(255,255,255,0.7);
    color: var(--fc-navy);
    font-family: var(--fc-font);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.15s ease;
}
.tfc-dose-tile:hover { border-color: var(--fc-blue-light); background: #eef5ff; }
.tfc-dose-tile.is-selected {
    background: #2b5993;
    border-color: transparent;
    color: #fff;
    box-shadow: 0 8px 18px -8px rgba(46,77,123,0.6);
}

/* ── Activity & reviews (unified, 2-col) ───────────────────────── */
.tfc-activity-card { margin-bottom: 0; padding: 24px 28px; }
.tfc-activity-latest { margin-left: auto; font-size: 12px; color: var(--fc-gray); font-weight: 600; }
.tfc-activity-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 40px; }

.tfc-history-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(46,77,123,0.07);
}
.tfc-history-item:last-child,
.tfc-history-item:nth-last-child(2) { border-bottom: none; }
.tfc-history-icon {
    width: 30px; height: 30px;
    border-radius: 9px;
    background: rgba(148, 161, 178, 0.12); /* fallback; real color via inline style */
    color: var(--icon-color);
    display: flex; align-items: center; justify-content: center;
    font-size: 13px;
    flex: none;
}
.tfc-history-item > strong { flex: 1; min-width: 0; font-size: 13px; font-weight: 700; color: var(--fc-navy); }
.tfc-history-time { font-size: 12px; color: var(--fc-gray); font-weight: 600; white-space: nowrap; }
.tfc-history-item--done > strong { opacity: 0.65; }

/* ── Check-in / Actions page ───────────────────────────────────── */
.tfc-checkin-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}
.tfc-tab-bar {
    display: flex;
    gap: 4px;
    background: rgba(255,255,255,0.55);
    border: 1px solid var(--fc-border);
    border-radius: 12px;
    padding: 4px;
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}
.tfc-tab {
    padding: 9px 20px;
    border-radius: 9px;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--fc-gray-text);
    cursor: pointer;
    border: none;
    background: transparent;
    font-family: var(--fc-font);
    transition: all 0.15s;
    position: relative;
}
.tfc-tab .tfc-tab-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--fc-orange);
    color: #fff;
    border-radius: 99px;
    font-size: 10px;
    padding: 1px 6px;
    margin-left: 5px;
    font-weight: 800;
}
.tfc-tab.tfc-tab--active {
    background: var(--fc-glass-deep);
    color: var(--fc-navy);
    box-shadow: 0 2px 8px rgba(30,45,64,0.10);
}
.tfc-checkin-list { display: flex; flex-direction: column; gap: 12px; }
.tfc-checkin-item {
    background: var(--fc-glass);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border: 1px solid var(--fc-border);
    border-radius: var(--fc-radius);
    box-shadow: var(--fc-shadow);
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.tfc-checkin-item--done {
    opacity: 0.6;
    filter: grayscale(0.3);
}
.tfc-checkin-item-inner {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 20px;
}
.tfc-checkin-icon {
    width: 46px; height: 46px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    flex: none;
}
.tfc-checkin-icon--review   { background: #eef4ff; color: var(--fc-blue-light); }
.tfc-checkin-icon--email    { background: #f0f0f8; color: var(--fc-gray); }
.tfc-checkin-icon--alert    { background: #fff4e6; color: var(--fc-orange); }
.tfc-checkin-icon--done     { background: #e9f8f0; color: var(--fc-green); }
.tfc-checkin-body { flex: 1; }
.tfc-checkin-body h4 { margin: 0 0 4px; font-size: 15px; font-weight: 800; color: var(--fc-navy); }
.tfc-checkin-body p  { margin: 0 0 6px; font-size: 13px; color: var(--fc-gray-text); line-height: 1.5; }
.tfc-checkin-meta { font-size: 12px; color: var(--fc-gray); }
.tfc-checkin-actions { display: flex; gap: 8px; flex-wrap: wrap; padding: 0 20px 16px 82px; }
.tfc-checkin-email-body {
    background: rgba(255,255,255,0.8);
    border-top: 1px solid rgba(30,45,64,0.08);
    padding: 20px;
    font-size: 13.5px;
    line-height: 1.6;
    color: #2a2a2a;
    display: none;
}
.tfc-checkin-email-body.is-open { display: block; }
.tfc-toggle-email {
    font-size: 12px;
    font-weight: 700;
    color: var(--fc-blue-light);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    font-family: var(--fc-font);
}
.tfc-toggle-email:hover { color: var(--fc-blue); }

/* ── Responsive ────────────────────────────────────────────────── */
@media (max-width: 900px) {
    .tfc-hero-card { flex-direction: column; }
    .tfc-hero-visual { width: 100%; height: 140px; }
    .tfc-hero-actions { width: 100%; flex-direction: row; flex-wrap: wrap; }
    .tfc-hero-actions .tfc-action-link { width: auto; flex: 1 1 200px; }
    .tfc-bento-3 { grid-template-columns: 1fr; }
    .tfc-bento-2 { grid-template-columns: 1fr; }
    .tfc-activity-grid { grid-template-columns: 1fr; gap: 4px; }
    .tfc-history-item:nth-last-child(2) { border-bottom: 1px solid rgba(46,77,123,0.07); }
    .tfc-history-item:last-child { border-bottom: none; }
    .tfc-manage-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
    .tfc-portal-title { font-size: 20px; }
    .tfc-sub-stats { grid-template-columns: repeat(2, 1fr); row-gap: 16px; }
    .tfc-sub-card-actions { flex-wrap: wrap; }
    .tfc-qa-toggle { margin-left: 0; }
    .tfc-form-row-2 { grid-template-columns: 1fr; }
    .tfc-manage-grid { grid-template-columns: 1fr; }
    .tfc-hero-details-grid { grid-template-columns: 1fr; }
    .tfc-hero-mini-stats { flex-direction: column; }
    .tfc-tracker { flex-wrap: wrap; row-gap: 20px; }
    .tfc-step { width: 50%; }
    .tfc-tracker-rail, .tfc-tracker-fill { display: none; }
    .tfc-orders-head { display: none; }
    .tfc-order-row { grid-template-columns: 1fr; row-gap: 6px; }
}

/* ════════════════════════════════════════════════════════════════
   LEGACY — Manage My Plan cards (kept for back-compat, may be removed)
   ════════════════════════════════════════════════════════════════ */

/* ── Manage My Plan cards ── */
.tfc-manage-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
    margin-bottom: 4px;
}
.tfc-manage-card {
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: #fafafa;
    transition: border-color .15s, box-shadow .15s;
}
.tfc-manage-card:hover { border-color: #2b5993; box-shadow: 0 2px 8px rgba(43,89,147,.08); }
.tfc-manage-card-icon { color: #2b5993; line-height: 1; }
.tfc-manage-card-label {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
    flex: 1;
}
.tfc-manage-card-arrow {
    align-self: flex-end;
    background: #2b5993;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .15s;
    padding: 0;
}
.tfc-manage-card-arrow:hover { background: #1e3f6e; }
.tfc-manage-card-arrow:disabled { background: #aaa; cursor: default; }

/* ── Manage plan inline forms ── */
.tfc-form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 10px;
}
.tfc-form-field {
    margin-bottom: 10px;
}
.tfc-form-field label {
    display: block;
    font-size: 12px;
    color: #666;
    margin-bottom: 4px;
}
.tfc-form-field input,
.tfc-form-field textarea {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    font-size: 13px;
    box-sizing: border-box;
    font-family: inherit;
    transition: border-color .15s;
}
.tfc-form-field input:focus,
.tfc-form-field textarea:focus {
    border-color: #2b5993;
    outline: none;
}
.tfc-form-field textarea { resize: vertical; }
.tfc-form-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 4px;
}
.tfc-form-cancel {
    background: transparent;
    border: none;
    color: #888;
    font-size: 13px;
    cursor: pointer;
    padding: 0;
}
.tfc-form-cancel:hover { color: #333; }
.tfc-form-status { font-size: 12px; font-weight: 600; }

@media (max-width: 480px) {
    .tfc-form-row-2 { grid-template-columns: 1fr; }
    .tfc-manage-cards { grid-template-columns: 1fr 1fr; }
}

/* ── Product Page Options ── */
.tfc-sub-options {
    margin: 16px 0;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}
.tfc-sub-options-header {
    background: #f8f9fc;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid #e0e0e0;
    font-size: 14px;
    color: #2b5993;
}
.tfc-sub-toggle-help {
    font-size: 12px;
    color: #888;
    font-weight: 400;
}
.tfc-sub-choice { padding: 12px; display: flex; flex-direction: column; gap: 8px; }

/* ── Option labels ── */
.tfc-sub-option {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: border-color .2s, background .2s;
}
.tfc-sub-option:hover { border-color: #2b5993; background: #f8f9ff; }
.tfc-sub-option.selected { border-color: var(--plan-color, #2b5993); background: #f8f9ff; }
.tfc-sub-option input[type="radio"] { margin-top: 3px; accent-color: #2b5993; }
.tfc-sub-option-label { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.tfc-sub-option-header { display: flex; align-items: center; gap: 8px; }
.tfc-sub-option-title { font-weight: 700; font-size: 14px; color: #333; }
.tfc-sub-option-price { font-size: 18px; font-weight: 700; color: #2b5993; }
.tfc-sub-period { font-size: 13px; font-weight: 400; color: #888; }
.tfc-sub-discount-badge { background: #27ae60; color: #fff; font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 20px; }
.tfc-sub-meta { display: flex; flex-direction: column; gap: 2px; font-size: 12px; color: #666; }
.tfc-sub-review { color: #3498db; }
.tfc-sub-points { color: #e67e22; }
.tfc-sub-features { display: flex; flex-direction: column; gap: 2px; font-size: 12px; color: #555; margin-top: 4px; }

.tfc-sub-info {
    border-radius: 6px;
    font-size: 12px;
}

/* ── Checkout summary ── */
.tfc-checkout-sub-summary a { color: #2b5993; font-size: 12px; text-decoration: none; }
.tfc-checkout-sub-summary a:hover { text-decoration: underline; }

/* ── Cart/checkout "Subscribe & Save" savings widget ──
   Compact card shown on a line item only when it's been added as a
   subscription (never for one-time items) — palette matches the
   product-page Subscribe & Save widget (inc/widgets/tfc-subscription-plan.php). */
.tfc-cs-widget { margin-top: 8px; max-width: 280px; }
.tfc-cs-toggle {
    position: relative;
    display: inline-flex;
    background: #f1efe8;
    border-radius: 999px;
    padding: 3px;
    gap: 2px;
}
.tfc-cs-toggle-btn {
    border: none;
    background: transparent;
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 700;
    color: #8f9182;
    cursor: pointer;
    transition: background .15s, color .15s;
}
.tfc-cs-toggle-btn.active { background: #fff; color: #3a3f22; box-shadow: 0 1px 3px rgba(58,63,34,.14); }
.tfc-cs-toggle-btn:disabled { opacity: .6; cursor: default; }
.tfc-cs-body {
    margin-top: 8px;
    padding: 10px 12px;
    background: #f7f6ef;
    border: 1px solid #ecebe1;
    border-radius: 12px;
}
.tfc-cs-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 8px;
}
.tfc-cs-badge {
    font-size: 11px;
    font-weight: 700;
    color: #3a3f22;
    text-transform: uppercase;
    letter-spacing: .02em;
}
.tfc-cs-save {
    flex: none;
    background: #6b7659;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 999px;
}
.tfc-cs-bars { display: flex; flex-direction: column; gap: 5px; }
.tfc-cs-bar-row { display: flex; align-items: center; gap: 8px; }
.tfc-cs-bar-lbl { flex: none; width: 56px; font-size: 11px; color: #8f9182; }
.tfc-cs-bar-track {
    flex: 1;
    display: block;
    height: 6px;
    border-radius: 999px;
    background: #ece9e1;
    overflow: hidden;
}
.tfc-cs-bar { display: block; height: 100%; border-radius: 999px; }
.tfc-cs-bar--reg { width: 100%; background: #cfd1c2; }
.tfc-cs-bar--sub { background: #6b7659; }
.tfc-cs-bar-val { flex: none; width: 56px; text-align: right; font-size: 11px; font-weight: 700; color: #3a3f22; }
.tfc-cs-intro { margin: 7px 0 0; font-size: 11.5px; color: #6a6d5a; line-height: 1.4; }
.tfc-cs-benefits {
    list-style: none;
    margin: 7px 0 0;
    padding-top: 7px;
    border-top: 1px solid #ecebe1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.tfc-cs-benefits li {
    font-size: 11.5px;
    color: #4c4f3a;
    padding-left: 16px;
    position: relative;
}
.tfc-cs-benefits li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 11px;
    height: 11px;
    border-radius: 999px;
    background: #eef0e0 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7659' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/7px no-repeat;
}
