/* ===================================
   FREEAT.ID - CATERING DIET SEHAT
   CSS Stylesheet
   =================================== */

/* Variables */
:root {
    --primary-green: #2d6a4f;
    --secondary-green: #40916c;
    --light-green: #52b788;
    --lighter-green: #74c69d;
    --lightest-green: #b7e4c7;
    --bg-light: #f8f9fa;
    --text-dark: #1b4332;
    --text-gray: #495057;
    --white: #ffffff;
    --shadow: rgba(45, 106, 79, 0.1);
    --shadow-md: rgba(45, 106, 79, 0.15);
    --shadow-lg: rgba(45, 106, 79, 0.2);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.btn {
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-green);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--secondary-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow-md);
}

.btn-outline {
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary-green);
    color: var(--white);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto 1rem;
}

/* Header Styles */
header {
    background: var(--primary-green);
    box-shadow: 0 2px 10px var(--shadow-md);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 0.5rem 0;
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    width: 45px;
    height: 45px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--white);
}

.logo-text {
    font-size: 1.75rem;
    font-weight: 700;
}

.logo-domain {
    color: var(--lightest-green);
}

.nav-menu {
    display: flex;
    gap: 1.75rem;
    list-style: none;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: var(--white);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    display: block;
    text-decoration: none;
}

.nav-menu a:hover {
    color: var(--lightest-green);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--lightest-green);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu .btn-whatsapp {
    padding: 0.625rem 1.25rem;
    font-size: 0.9rem;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
    z-index: 1001;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--lightest-green) 0%, var(--lighter-green) 100%);
    padding: 8rem 0 6rem;
    margin-top: 60px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text .highlight {
    color: var(--primary-green);
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px var(--shadow-lg);
}

.hero-image-placeholder {
    width: 100%;
    max-width: 500px;
    height: 400px;
    background: var(--white);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px var(--shadow-lg);
    overflow: hidden;
    position: relative;
}

.hero-image-placeholder::before {
    content: '🥗';
    font-size: 8rem;
    opacity: 0.3;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 6rem 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px var(--shadow-md);
    border-color: var(--lighter-green);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--lighter-green), var(--light-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Menu Week Section */
.menu-week {
    padding: 6rem 0;
    background: var(--bg-light);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.menu-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px var(--shadow);
    transition: all 0.3s ease;
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow-md);
}

.menu-image {
    width: 100%;
    height: 250px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative;
    overflow: hidden;
}

.menu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-info {
    padding: 1.5rem;
}

.menu-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.nutrition-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.nutrition-item {
    background: var(--bg-light);
    padding: 0.75rem;
    border-radius: 8px;
    text-align: center;
}

.nutrition-item .label {
    font-size: 0.875rem;
    color: var(--text-gray);
    display: block;
}

.nutrition-item .value {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-green);
}

/* Products Section */
.products {
    padding: 6rem 0;
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.product-card {
    background: linear-gradient(135deg, var(--lightest-green), var(--white));
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid var(--lightest-green);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px var(--shadow-md);
    border-color: var(--light-green);
}

.product-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.product-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.product-card p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.product-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.product-features li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-features li::before {
    content: '✓';
    color: var(--primary-green);
    font-weight: bold;
    font-size: 1.25rem;
}

/* BMI Calculator Section */
.bmi-calculator {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--lightest-green) 0%, var(--lighter-green) 100%);
}

.bmi-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow-md);
}

.bmi-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select {
    padding: 0.875rem;
    border: 2px solid var(--bg-light);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--light-green);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

#bmiResult {
    margin-top: 2rem;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
    text-align: center;
    display: none;
}

#bmiResult.show {
    display: block;
}

#bmiValue {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-green);
    margin: 1rem 0;
}

#bmiCategory {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

#bmiMessage {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

/* BMI Range Bar */
.bmi-range-bar {
    position: relative;
    margin: 2rem 0;
    padding: 1rem 0;
}

.bmi-bar {
    display: flex;
    height: 60px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 4px 12px var(--shadow);
}

.bmi-segment {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
}

.bmi-segment.underweight {
    background: #3b82f6;
}

.bmi-segment.normal {
    background: #10b981;
}

.bmi-segment.overweight {
    background: #f59e0b;
}

.bmi-segment.obese {
    background: #ef4444;
}

.segment-label {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.segment-range {
    font-size: 0.75rem;
    opacity: 0.9;
}

.bmi-indicator {
    position: absolute;
    top: 0;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 12px solid var(--text-dark);
    transition: left 0.5s ease;
    transform: translateX(-50%);
}

/* Nutrition Needs */
.nutrition-needs {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 16px;
    margin: 2rem 0;
}

.nutrition-needs h4 {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.nutrition-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
}

.nutrition-box {
    background: var(--white);
    padding: 1.25rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.nutrition-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px var(--shadow);
    border-color: var(--lighter-green);
}

.nutrition-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.nutrition-label {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.nutrition-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 0.25rem;
}

.nutrition-unit {
    font-size: 0.75rem;
    color: var(--text-gray);
}

/* About Section */
.about {
    padding: 6rem 0;
    background: var(--white);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.about-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--lighter-green), var(--light-green));
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 0;
    margin-bottom: 1rem;
}

.about-description {
    font-size: 1.125rem;
    color: var(--text-gray);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

.vision-mission {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.vm-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.vm-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-md);
    border-color: var(--lighter-green);
}

.vm-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.vm-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.vm-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

.mission-list {
    list-style: none;
    padding: 0;
}

.mission-list li {
    padding: 0.75rem 0 0.75rem 2rem;
    color: var(--text-gray);
    position: relative;
    line-height: 1.7;
}

.mission-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
    font-size: 1.25rem;
}

/* Contact Section in About */
.contact-section {
    padding: 3rem 0;
    margin-top: 3rem;
}

.contact-title {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
}

.contact-info-list {
    display: flex;
    justify-content: center;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto 3rem;
    flex-wrap: wrap;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    min-width: 200px;
}

.contact-info-item > div {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 48px;
}

.contact-emoji {
    font-size: 2.5rem;
    flex-shrink: 0;
    line-height: 1;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-label {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-bottom: 0.25rem;
    line-height: 1.4;
}

.contact-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
}

.contact-link-item {
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.5rem;
    margin: -0.5rem;
    border-radius: 8px;
}

.contact-link-item:hover {
    transform: translateY(-3px);
    background: var(--bg-light);
}

.contact-link-item:hover .contact-value {
    color: var(--primary-green);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.contact-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px var(--shadow-md);
    border-color: var(--light-green);
}

.contact-card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: var(--text-gray);
    margin-bottom: 0;
    font-size: 1rem;
}

.contact-link {
    color: var(--primary-green);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--secondary-green);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-features {
    margin: 2rem 0;
}

.about-item {
    margin-bottom: 2rem;
}

.about-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.about-item ul {
    list-style: none;
    margin-top: 0.5rem;
}

.about-item ul li {
    padding: 0.25rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.about-item ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image-placeholder {
    width: 100%;
    max-width: 500px;
    height: 400px;
    background: var(--bg-light);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
}

.contact-info {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: var(--lighter-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.contact-text {
    flex: 1;
}

.contact-text strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.contact-text span {
    color: var(--text-gray);
}

/* Footer */
footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 2.5rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--lighter-green);
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-section a:hover {
    color: var(--lighter-green);
}

.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        max-width: 100%;
        height: calc(100vh - 60px);
        background: var(--primary-green);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transition: left 0.3s ease;
        box-shadow: 0 4px 10px var(--shadow);
        align-items: flex-start;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        width: 100%;
        padding: 0.75rem 0;
        color: var(--white);
    }

    .nav-menu .btn-whatsapp {
        width: 100%;
        justify-content: center;
        padding: 1rem;
    }

    .hero {
        padding: 6rem 0 4rem;
    }

    .hero-content,
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .vision-mission {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .contact-section {
        padding: 2rem;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1.125rem;
    }

    .hero-image {
        order: -1;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .features-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .bmi-container {
        padding: 2rem;
    }

    .nutrition-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bmi-range-bar {
        padding: 0.5rem 0;
    }

    .bmi-bar {
        height: 70px;
    }

    .bmi-segment {
        font-size: 0.7rem;
        padding: 0.5rem 0.25rem;
    }

    .segment-label {
        font-size: 0.75rem;
        margin-bottom: 0.15rem;
    }

    .segment-range {
        font-size: 0.6rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.75rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    #bmiValue {
        font-size: 2.5rem;
    }

    .nutrition-grid {
        grid-template-columns: 1fr;
    }

    .bmi-range-bar {
        padding: 0.5rem 0;
        margin: 1.5rem 0;
    }

    .bmi-bar {
        height: 80px;
        border-radius: 20px;
    }

    .bmi-segment {
        font-size: 0.65rem;
        padding: 0.5rem 0.15rem;
        gap: 0.15rem;
    }

    .segment-label {
        font-size: 0.7rem;
        white-space: nowrap;
    }

    .segment-range {
        font-size: 0.55rem;
    }

    .bmi-indicator {
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-top: 10px solid var(--text-dark);
    }
}
}