.nutritional-info-1ba02652-wrapper {
    font-family: inherit;
    width: 100%;
}
.ni-1ba02652-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 15px 0;
    border-top: 1px solid #e0e0e0;
}
.ni-1ba02652-title {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #F47D60; /* Default Secondary */
}
.ni-1ba02652-icon {
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ni-1ba02652-icon svg {
    fill: #F47D60;
}
.nutritional-info-1ba02652-wrapper.is-open .ni-1ba02652-icon {
    transform: rotate(45deg);
}
.ni-1ba02652-content {
    display: none;
    padding: 20px 0;
}
.nutritional-info-1ba02652-wrapper.is-open .ni-1ba02652-content {
    display: block;
    animation: fadeInDown 0.4s ease;
}
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
.ni-1ba02652-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}
@media (max-width: 768px) {
    .ni-1ba02652-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
@media (max-width: 480px) {
    .ni-1ba02652-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
.ni-1ba02652-card {
    background-color: #65AFE1; /* Default Primary */
    color: #fff;
    border-radius: 10px;
    padding: 20px 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ni-1ba02652-card:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.ni-1ba02652-val {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 5px;
}
.ni-1ba02652-label {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.ni-1ba02652-footer {
    font-size: 14px;
    color: #F47D60;
    text-align: left;
}