/* supplement-facts.css */

/* Header Section */
.overview-header {
    background-color: var(--dark-bg, #3B3B38);
    color: var(--dark-text, #F5F1E5);
    padding: 50px 30px;
    border-radius: 16px;
    text-align: center;
    margin-bottom: 40px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.overview-header h1 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
    color: #B2D8D8;
}

.overview-header p {
    font-size: 1.1rem;
    color: #D1D5DB;
    font-weight: 400;
    line-height: 1.5;
}

/* Section Title */
.section-headline {
    text-align: center;
    margin-bottom: 40px;
    margin-top: 50px;
}

.section-headline h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-primary, #333333);
}

/* Supplement Cards */
.supplement-card {
    background-color: var(--accent-color, #B2D8D8);
    border-radius: 16px;
    padding: 30px 20px;
    margin-bottom: 30px;
}

.supplement-card.dark {
    background-color: var(--dark-bg, #3B3B38);
    color: var(--dark-text, #F5F1E5);
}

.card-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary, #333333);
}

.supplement-card.dark .card-title {
    color: var(--dark-text, #F5F1E5);
}

.card-desc {
    font-size: 1.1rem;
    margin-bottom: 25px;
    line-height: 1.5;
    color: var(--text-secondary, #555555);
}

.supplement-card.dark .card-desc {
    color: #D1D5DB;
}

.card-desc strong {
    color: var(--text-primary, #333333);
}

.supplement-card.dark .card-desc strong {
    color: var(--dark-text, #F5F1E5);
}

/* FDA Label Container */
.label-container {
    background: #FFFFFF;
    border: 3px solid #000000;
    border-radius: 12px;
    padding: 12px;
    color: #000000;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

/* FDA Label Typography */
.label-title {
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.5px;
    border-bottom: 1px solid #000000;
    padding-bottom: 2px;
    margin-bottom: 4px;
}

.label-serving {
    font-size: 13px;
    font-weight: 800;
    border-bottom: 8px solid #000000;
    padding-bottom: 6px;
    margin-bottom: 6px;
    line-height: 1.3;
}

.label-serving span {
    font-weight: 400;
}

/* Label Table Headers */
.label-header {
    display: flex;
    font-size: 11px;
    font-weight: 800;
    border-bottom: 1px solid #000000;
    padding-bottom: 2px;
    margin-bottom: 2px;
}

/* Label Table Rows */
.label-row {
    display: flex;
    font-size: 12px;
    border-bottom: 1px solid #999999;
    padding: 4px 0;
    align-items: flex-end;
}

.label-row:last-of-type,
.label-row.thick-bottom {
    border-bottom: 4px solid #000000;
}

.label-row.no-border {
    border-bottom: none;
}

.label-row .ingredient {
    flex-grow: 1;
    padding-right: 5px;
    line-height: 1.2;
}

.label-row .ingredient.indent {
    padding-left: 15px;
}

.label-row .amount {
    width: 65px;
    text-align: right;
    flex-shrink: 0;
}

.label-row .dv {
    width: 55px;
    text-align: right;
    font-weight: 800;
    flex-shrink: 0;
}

.label-footer {
    font-size: 11px;
    padding-top: 6px;
    line-height: 1.3;
}

.label-footer strong {
    font-weight: 800;
}