 .nutrition-facts-container {
        max-width: 700px;
        margin: 0;
        overflow: hidden;
    }
    
    /* ===== NUTRITION TABLE ===== */
    .nutrition-table {
        width: 100%;
        border-collapse: collapse;
        background: #fff;
        border-radius: 0;
        overflow: hidden;
        border: none !important;
        margin: 0;
    }
    
    .nutrition-table tbody {
        border: none !important;
    }

  .nutrition-header {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 25px;
    }
    
    .nutrition-icon {
        font-size: 20px;
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: #f0f0f0;
    }
    
    .nutrition-header h3 {
        margin: 0;
        font-size: 20px;
        font-weight: 700;
        color: #333;
    }

     .nutrition-footer {
        color: #999;
        font-size: 13px;
        font-style: italic;
        padding: 15px 0 0;
        margin-top: 10px;
    }
    .nutrition-table {
            border: 1px solid #e5e7eb !important;
            border-radius: 20px;
            overflow: hidden;



    }
    .nutrition-table tbody tr {
        transition: all 0.2s ease;
        border: none !important;
        border-top: none !important;
        border-bottom: none !important;
    }
    
  
    .nutrition-table td {
        padding: 16px 20px;
        font-size: 15px;
        border: none !important;
        border-top: none !important;
        border-bottom: none !important;
    }
    
    .nutrition-label {
        font-weight: 600;
        color: #333;
        width: 50%;
    }
    
    .nutrition-value {
        color: #666;
        text-align: right;
    }
    
    /* ===== REMOVE DEFAULT WOOCOMMERCE STYLES ===== */
    .woocommerce-Tabs-panel--additional_information h2 {
        display: none !important;
    }
    
    .shop_attributes {
        display: none !important;
    }
    
    .woocommerce-product-attributes {
        border: none !important;
    }
    
    .woocommerce-product-attributes tr,
    .woocommerce-product-attributes td,
    .woocommerce-product-attributes th {
        border: none !important;
    }
    
    
    
    /* ===== RESPONSIVE ===== */
    @media (max-width: 768px) {
        .nutrition-table td {
            padding: 12px 15px;
            font-size: 14px;
        }
        
        .nutrition-label {
            width: 45%;
        }
    }